Add Trampoline
This commit is contained in:
parent
b87bd4e607
commit
f1b7d8f107
@ -428,6 +428,13 @@ xdecor.register("tatami", {
|
|||||||
node_box = xdecor.nodebox.slab_y(0.0625)
|
node_box = xdecor.nodebox.slab_y(0.0625)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
xdecor.register("trampoline", {
|
||||||
|
description = "Trampoline",
|
||||||
|
tiles = {"xdecor_trampoline.png", "xdecor_trampoline_sides.png"},
|
||||||
|
groups = {snappy=3, flammable=3, fall_damage_add_percent=-80, bouncy=90},
|
||||||
|
node_box = xdecor.nodebox.slab_y(0.5)
|
||||||
|
})
|
||||||
|
|
||||||
xdecor.register("tv", {
|
xdecor.register("tv", {
|
||||||
description = "Television",
|
description = "Television",
|
||||||
light_source = 11,
|
light_source = 11,
|
||||||
|
@ -324,6 +324,15 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "xdecor:trampoline",
|
||||||
|
recipe = {
|
||||||
|
{"farming:string", "farming:string", "farming:string"},
|
||||||
|
{"default:steel_ingot", "default:steel_ingot", "default:steel_ingot"},
|
||||||
|
{"default:steel_ingot", "", "default:steel_ingot"}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "xdecor:tv",
|
output = "xdecor:tv",
|
||||||
recipe = {
|
recipe = {
|
||||||
|
BIN
textures/xdecor_trampoline.png
Normal file
BIN
textures/xdecor_trampoline.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
BIN
textures/xdecor_trampoline_sides.png
Normal file
BIN
textures/xdecor_trampoline_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 341 B |
Loading…
Reference in New Issue
Block a user