Ajout des outils fait d'or
This commit is contained in:
parent
766a991aad
commit
c00e589983
@ -1,3 +1,46 @@
|
|||||||
|
minetest.register_craft(
|
||||||
|
{ output = 'nalc:pick_gold',
|
||||||
|
recipe = {
|
||||||
|
{'default:gold_ingot', 'default:gold_ingot', 'default:gold_ingot'},
|
||||||
|
{'', 'group:stick', ''},
|
||||||
|
{'', 'group:stick', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "nalc:shovel_gold",
|
||||||
|
recipe = {
|
||||||
|
{"default:gold_ingot"},
|
||||||
|
{"group:stick"},
|
||||||
|
{"group:stick"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "nalc:axe_gold",
|
||||||
|
recipe = {
|
||||||
|
{"default:gold_ingot", "default:gold_ingot"},
|
||||||
|
{"default:gold_ingot", "group:stick"},
|
||||||
|
{"", "group:stick"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft(
|
||||||
|
{
|
||||||
|
output = "nalc:sword_gold",
|
||||||
|
recipe = {
|
||||||
|
{"default:gold_ingot"},
|
||||||
|
{"default:gold_ingot"},
|
||||||
|
{"group:stick"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Register Tools
|
||||||
|
--
|
||||||
|
|
||||||
minetest.register_tool(
|
minetest.register_tool(
|
||||||
":nalc:pick_gold",
|
":nalc:pick_gold",
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user