-
Notifications
You must be signed in to change notification settings - Fork 0
/
bricks.lua
33 lines (33 loc) · 2.85 KB
/
bricks.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
function get_simple_nodes()
simple_nodes = {
{"bricks 1h 3v linear red","br13li_red","br13li-red_1_bricks-1h-3v-linear-red","","1"},
{"bricks 2h 1v linear grey 2964b","br21li_grey","br21li-grey_1_bricks-2h-1v-linear-grey-2964b","","1"},
{"bricks 2h 2v linear blue c3023","br22li_blue","br22li-blue_0_bricks-2h-2v-linear-blue-c3023","","0"},
{"bricks 2h 2v linear dark c3033","br22li_dark","br22li-dark_1_bricks-2h-2v-linear-dark-c3033","","1"},
{"bricks 2h 2v","br22li_grey","br22li-grey_1_bricks-2h-2v_linear-grey-c2807-sp","","1"},
{"bricks 2h 4v linear blue","br24li_blue","br24li-blue_1_bricks-2h-4v-linear-blue","","1"},
{"bricks 2h 6v linear brown black c2441","br26li_brown","br26li-brown_0_bricks-2h-6v-linear-brown-black-c2441","","0"},
{"bricks 2h 6v linear white c2348","br26li_white","br26li-white_0_bricks-2h-6v-linear-white-c2348","","0"},
{"bricks 3h 10v decorative red blue c2852b","br310de_red","br310de-red_0_bricks-3h-10v-decorative-red-blue-c2852b","","0"},
{"bricks 3h 10v linear red blue c2852a","br310li_redblue","br310li-redblue_0_bricks-3h-10v-linear-red-blue-c2852a","","0"},
{"bricks 3h 1v linear grey","br31li_grey","br31li-grey_1_bricks-3h-1v-linear-grey","","1"},
{"bricks 3h 2v grey 2964","br32li_grey","br32li-grey_1_bricks-3h-2v-grey-2964","","1"},
{"bricks 3h 3v chipped red","br33ch_red","br33ch-red_0_bricks-3h-3v-chipped-red","","0"},
{"bricks 3h 3v composite c0238","br33co_multi","br33co-multi_1_bricks-3h-3v-composite-c0238","","1"},
{"bricks 3h 3v linear red old","br33li_red","br33li-red_1_bricks-3h-3v-linear-red-old","","1"},
{"bricks 3h 3v square red blue","br33sq_redblue","br33sq-redblue_1_bricks-3h-3v-square-red-blue","","1"},
{"bricks 3h 4v linear red c2377","br34li_red","br34li-red_1_bricks-3h-4v-linear-red-c2377","","1"},
{"bricks 3h 4v linear red blue c2399","br34li_redblue","br34li-redblue_0_bricks-3h-4v-linear-red-blue-c2399","","0"},
{"bricks 3h 7v linear red c2663","br37li_red","br37li-red_0_bricks-3h-7v-linear-red-c2663","","0"},
{"bricks 4h 4v chipped red","br44ch_red","br44ch-red_1_bricks-4h-4v-chipped-red","","1"},
{"bricks 4h 4v square blue","br44sq_blue","br44sq-blue_1_bricks-4h-4v-square-blue","","1"},
{"bricks 4h 4v square red c3028b","br44sq_red","br44sq-red_1_bricks-4h-4v-square-red-c3028b","","1"},
{"bricks 4h 8v linear blue c2710","br48li_blue","br48li-blue_1_bricks-4h-8v-linear-blue-c2710","","1"},
{"bricks 4h 8v linear red c0207","br48li_red","br48li-red_0_bricks-4h-8v-linear-red-c0207","","0"},
{"bricks 4h 8v linear red blue c2371","br48li_redblue","br48li-redblue_0_bricks-4h-8v-linear-red-blue-c2371","","0"},
{"bricks 5h 2v linear red","br52li_red","br52li-red_1_bricks-5h-2v-linear-red","","1"},
{"bricks 5v 5h chipped dark green","br55ch_green","br55ch-green_0_bricks-5v-5h-chipped-dark-green","","0"},
{"bricks 7h7v square red c3028","br77sq_red","br77sq-red_1_bricks-7h7v-square-red-c3028","","1"},
}
return simple_nodes
end