Move crafting, cooking and fuel recipes into corresponding files

Tento commit je obsažen v:
An0n3m0us
2020-01-01 01:38:06 +00:00
odevzdal Paramat
rodič 1082466796
revize 6e32287a42
6 změnil soubory, kde provedl 416 přidání a 406 odebrání

Zobrazit soubor

@ -134,3 +134,17 @@ minetest.register_lbm({
end
end
})
minetest.register_craft({
output = "default:torch 4",
recipe = {
{"default:coal_lump"},
{"group:stick"},
}
})
minetest.register_craft({
type = "fuel",
recipe = "default:torch",
burntime = 4,
})