forked from mtcontrib/throwing
More coherent recipes
This commit is contained in:
parent
b618c90818
commit
06afd1b8d7
16
bows.lua
16
bows.lua
@ -126,18 +126,18 @@ minetest.register_tool("throwing:bow_composite", {
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'throwing:bow_composite',
|
output = 'throwing:bow_composite',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'farming:string', 'default:steel_ingot', 'group:wood'},
|
{'farming:string', 'group:wood', ''},
|
||||||
{'farming:string', 'group:wood', 'default:bronze_ingot'},
|
{'farming:string', 'default:steel_ingot', 'default:steel_ingot'},
|
||||||
{'farming:string', 'default:steel_ingot', 'group:wood'},
|
{'farming:string', 'group:wood', ''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'throwing:bow_composite',
|
output = 'throwing:bow_composite',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'group:wood', 'default:steel_ingot', 'farming:string'},
|
{'', 'group:wood', 'farming:string'},
|
||||||
{'default:bronze_ingot', 'group:wood', 'farming:string'},
|
{'default:steel_ingot', 'default:steel_ingot', 'farming:string'},
|
||||||
{'group:wood', 'default:steel_ingot', 'farming:string'},
|
{'', 'group:wood', 'farming:string'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -162,7 +162,7 @@ minetest.register_craft({
|
|||||||
output = 'throwing:bow_gold',
|
output = 'throwing:bow_gold',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'farming:string', 'default:gold_ingot', ''},
|
{'farming:string', 'default:gold_ingot', ''},
|
||||||
{'farming:string', 'group:wood', 'default:gold_ingot'},
|
{'farming:string', '', 'default:gold_ingot'},
|
||||||
{'farming:string', 'default:gold_ingot', ''},
|
{'farming:string', 'default:gold_ingot', ''},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@ -171,7 +171,7 @@ minetest.register_craft({
|
|||||||
output = 'throwing:bow_gold',
|
output = 'throwing:bow_gold',
|
||||||
recipe = {
|
recipe = {
|
||||||
{'', 'default:gold_ingot', 'farming:string'},
|
{'', 'default:gold_ingot', 'farming:string'},
|
||||||
{'default:gold_ingot', 'group:wood', 'farming:string'},
|
{'default:gold_ingot', '', 'farming:string'},
|
||||||
{'', 'default:gold_ingot', 'farming:string'},
|
{'', 'default:gold_ingot', 'farming:string'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user