Add Trampoline

master
kilbith 2016-04-24 12:37:02 +02:00
parent b87bd4e607
commit f1b7d8f107
4 changed files with 16 additions and 0 deletions

View File

@ -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,

View File

@ -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 = {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B