Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jethroo/0f8b4218fb1cd9e8b618baf5f7494cb7 to your computer and use it in GitHub Desktop.
Save jethroo/0f8b4218fb1cd9e8b618baf5f7494cb7 to your computer and use it in GitHub Desktop.
listing_bl_crowdfunding_projects_with_lego_id.js
//visit https://www.bricklink.com/v3/designer-program/introducing.page
//and type this in the console:
blapp.models.models.models.map(function(e) {
e = 'Model: ' + e.strModelName + ' LegoProductId: ' + e.nLegoProductId;
return e;
});
//you will get the projects infos:
Array(31) [ "Model: 1950s Diner LegoProductId: 0", "Model: Train Station: Studgate LegoProductId: 0", "Model: Kakapo LegoProductId: 910017", "Model: Seasons in Time: Calendar LegoProductId: 0", "Model: Quest Builder LegoProductId: 0", "Model: Castle in the Forest LegoProductId: 910001", "Model: Winter Chalet LegoProductId: 0", "Model: Working Waterfall LegoProductId: 0", "Model: Venetian Houses LegoProductId: 0", "Model: The Dive Shop LegoProductId: 0", … ]
0: "Model: 1950s Diner LegoProductId: 0"
1: "Model: Train Station: Studgate LegoProductId: 0"
2: "Model: Kakapo LegoProductId: 910017"
3: "Model: Seasons in Time: Calendar LegoProductId: 0"
4: "Model: Quest Builder LegoProductId: 0"
5: "Model: Castle in the Forest LegoProductId: 910001"
6: "Model: Winter Chalet LegoProductId: 0"
7: "Model: Working Waterfall LegoProductId: 0"
8: "Model: Venetian Houses LegoProductId: 0"
9: "Model: The Dive Shop LegoProductId: 0"
10: "Model: Boat Repair Shop LegoProductId: 0"
11: "Model: Boat House Diner LegoProductId: 0"
12: "Model: Great Fishing Boat LegoProductId: 910010"
13: "Model: BIONICLE® Legends LegoProductId: 910007"
14: "Model: Brickwest Studios LegoProductId: 0"
15: "Model: Space Troopers! LegoProductId: 0"
16: "Model: Pursuit of Flight LegoProductId: 910028"
17: "Model: Particle Accelerator LegoProductId: 910025"
18: "Model: Modular LEGO Store LegoProductId: 0"
19: "Model: Ruined House LegoProductId: 0"
20: "Model: Mountain View Observatory LegoProductId: 910027"
21: "Model: Japanese Old Style Architecture LegoProductId: 0"
22: "Model: Exploratorium LegoProductId: 0"
23: "Model: Retro Bowling Alley LegoProductId: 0"
24: "Model: Modular Construction Site LegoProductId: 0"
25: "Model: Science Adventures LegoProductId: 0"
26: "Model: Clockwork Aquarium LegoProductId: 0"
27: "Model: Mountain Windmill LegoProductId: 0"
28: "Model: Sheriff's Safe LegoProductId: 910016"
29: "Model: Anatomini LegoProductId: 0"
30: "Model: Temple of Hermit LegoProductId: 0"
length: 31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment