]> git.lizzy.rs Git - Crafter.git/blobdiff - mods/main/craft_recipes.lua
fixes to item collection
[Crafter.git] / mods / main / craft_recipes.lua
index e03e9816d4fabcb551831d5b102f68eb5258f7ae..92815686b3a9c15b64e3dbd9b7d15765ca227aad 100644 (file)
@@ -5,34 +5,44 @@ minetest.register_craft({
        type = "cooking",
        output = "main:diamond",
        recipe = "main:diamondore",
+       cooktime = 12,
 })
 minetest.register_craft({
        type = "cooking",
        output = "main:coal 4",
        recipe = "main:coalore",
+       cooktime = 3,
 })
 minetest.register_craft({
        type = "cooking",
        output = "main:gold",
        recipe = "main:goldore",
+       cooktime = 9,
 })
 minetest.register_craft({
        type = "cooking",
        output = "main:iron",
        recipe = "main:ironore",
+       cooktime = 6,
 })
 minetest.register_craft({
        type = "cooking",
        output = "main:stone",
        recipe = "main:cobble",
+       cooktime = 3,
 })
---fuel
+
+--fuel fuel fuel
 minetest.register_craft({
        type = "fuel",
        recipe = "main:stick",
-       burntime = 3,
+       burntime = 1,
+})
+minetest.register_craft({
+       type = "fuel",
+       recipe = "main:tree",
+       burntime = 24,
 })
-
 minetest.register_craft({
        type = "fuel",
        recipe = "main:wood",