Reballance recipees: y=4x, t=x, r=3t --> 3x=r, 3y=3(4x)=4r

master
Hildigerr Vergaray 2019-10-02 23:47:58 -07:00
parent 3109d9d84c
commit c4a44d8fd1
1 changed files with 10 additions and 11 deletions

View File

@ -68,7 +68,13 @@ remove_rope = function(pos, oldnode, digger, rope_name)
end
minetest.register_craft({
output = '"ropes:rope" 2',
type = "shapeless",
output = "ropes:rope",
recipe = { "farming:string", "farming:string", "farming:string", }
})
minetest.register_craft({
output = "ropes:rope",
recipe = {
{'farming:cotton'},
{'farming:cotton'},
@ -77,7 +83,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = '"ropes:rope" 6',
output = '"ropes:rope" 4',
recipe = {
{'wool:white','',''},
{'','wool:white',''},
@ -86,7 +92,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = '"ropes:rope" 6',
output = '"ropes:rope" 4',
recipe = {
{'','','wool:white'},
{'','wool:white',''},
@ -95,7 +101,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = '"ropes:rope" 6',
output = '"ropes:rope" 4',
recipe = {
{'homedecor:curtain_white'},
{'homedecor:curtain_white'},
@ -153,10 +159,3 @@ if minetest.get_modpath("moreblocks") ~= nil then
sounds = default.node_sound_leaves_defaults(),
})
end
minetest.register_craft({
type = "shapeless",
output = "ropes:rope",
recipe = { "farming:string","farming:string", }
})