added ambrosium torch
This commit is contained in:
parent
a447ac8abd
commit
b1188f284d
1 changed files with 12 additions and 0 deletions
12
nodes.lua
12
nodes.lua
|
@ -86,3 +86,15 @@ minetest.register_node("aether2_minetest:golden_oak_planks", {
|
||||||
groups = {choppy=1, oddly_breakable_by_hand=1},
|
groups = {choppy=1, oddly_breakable_by_hand=1},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("aether2_minetest:ambrosium_torch", {
|
||||||
|
description = "Ambrosium Torch",
|
||||||
|
drawtype = "mesh",
|
||||||
|
mesh = "ambrosium_torch_floor.obj",
|
||||||
|
inventory_image = "ambrosium_torch.png",
|
||||||
|
wield_image - "ambrosium_torch.png",
|
||||||
|
tiles = {{
|
||||||
|
name = "ambrosium_torch_animated.png",
|
||||||
|
animation = {type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 3.3}
|
||||||
|
}}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in a new issue