forked from minetest-mods/mymillwork
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaterials-ethereal.lua
More file actions
87 lines (67 loc) · 2.51 KB
/
Copy pathmaterials-ethereal.lua
File metadata and controls
87 lines (67 loc) · 2.51 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
-- ETHEREAL --------------------------------------------------------------------------------
if minetest.get_modpath("ethereal") then
-- WOOD --------------------------------------------------------------------------------
--ethereal:bamboo
mymillwork.register("ethereal:bamboo_block",
"ethereal_bamboo_block",
"Bamboo Block",
"ethereal_bamboo_floor.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:banana_wood
mymillwork.register("ethereal:banana_wood",
"ethereal_banana_wood",
"Banana Wood",
"ethereal_banana_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:birch_wood
mymillwork.register("ethereal:birch_wood",
"ethereal_birch_wood",
"Birch Wood",
"moretrees_birch_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:frost_wood
mymillwork.register("ethereal:frost_wood",
"ethereal_frost_wood",
"Frost Wood",
"ethereal_frost_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:palm_wood
mymillwork.register("ethereal:palm_wood",
"ethereal_palm_wood",
"Palm Wood",
"moretrees_palm_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:redwood_wood
mymillwork.register("ethereal:redwood_wood",
"ethereal_redwood_wood",
"Redwood Wood",
"ethereal_redwood_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:sakura_wood
mymillwork.register("ethereal:sakura_wood",
"ethereal_sakura_wood",
"Sakura Wood",
"ethereal_sakura_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:willow_wood
mymillwork.register("ethereal:willow_wood",
"ethereal_willow_wood",
"Willow Wood",
"ethereal_willow_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
--ethereal:green_wood
mymillwork.register("ethereal:yellow_wood",
"ethereal_yellow_wood",
"Healing Tree Wood",
"ethereal_yellow_wood.png",
{tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_creative_inventory = mymillwork.nici}
)
end