Create steel_bars.lua
This commit is contained in:
parent
25aedba1f8
commit
5457eeb4b0
24
steel_bars.lua
Normal file
24
steel_bars.lua
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
-- Steel bars
|
||||||
|
|
||||||
|
xpanes.register_pane("bar", {
|
||||||
|
description = "Steel bar",
|
||||||
|
tiles = {"xpanes_space.png"},
|
||||||
|
drawtype = "airlike",
|
||||||
|
paramtype = "light",
|
||||||
|
is_ground_content = false,
|
||||||
|
sunlight_propagates = true,
|
||||||
|
walkable = false,
|
||||||
|
pointable = false,
|
||||||
|
diggable = false,
|
||||||
|
buildable_to = true,
|
||||||
|
air_equivalent = true,
|
||||||
|
textures = {"xpanes_bar.png","xpanes_bar.png","xpanes_space.png"},
|
||||||
|
inventory_image = "xpanes_bar.png",
|
||||||
|
wield_image = "xpanes_bar.png",
|
||||||
|
groups = {snappy=2, cracky=3, oddly_breakable_by_hand=3, pane=1},
|
||||||
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
recipe = {
|
||||||
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
||||||
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'}
|
||||||
|
}
|
||||||
|
})
|
Loading…
x
Reference in New Issue
Block a user