Skip to content
Snippets Groups Projects
Commit f1b7d8f1 authored by kilbith's avatar kilbith
Browse files

Add Trampoline

parent b87bd4e6
No related branches found
No related tags found
No related merge requests found
......@@ -428,6 +428,13 @@ xdecor.register("tatami", {
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", {
description = "Television",
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({
output = "xdecor:tv",
recipe = {
......
textures/xdecor_trampoline.png

1.28 KiB

textures/xdecor_trampoline_sides.png

341 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment