mirror of
https://github.com/minetest-mods/jumping.git
synced 2024-11-22 07:03:48 +01:00
beter recipes - use the jumping cushion to build the trampoline
recipes have soft-dependency in recipe to farming and wool
This commit is contained in:
parent
dd985c9a80
commit
fdd5bbd1e1
11
init.lua
11
init.lua
@ -79,17 +79,16 @@ minetest.register_node("jumping:cushion", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "jumping:trampoline1",
|
output = "jumping:trampoline1",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:wood", "default:wood", "default:wood"},
|
{"jumping:cushion", "jumping:cushion", "jumping:cushion"},
|
||||||
{"default:leaves", "default:leaves", "default:leaves"},
|
{"default:steel_ingot", "", "default:steel_ingot"}
|
||||||
{"default:stick", "default:stick", "default:stick"}
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "jumping:cushion",
|
output = "jumping:cushion",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"default:leaves", "default:leaves", "default:leaves"},
|
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||||
{"default:leaves", "default:leaves", "default:leaves"},
|
{"farming:cotton", "group:wool", "farming:cotton"},
|
||||||
{"default:stick", "default:stick", "default:stick"}
|
{"farming:cotton", "farming:cotton", "farming:cotton"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user