Use cooktime of 10 everywhere

This commit is contained in:
Wuzzy 2017-01-04 11:49:05 +01:00
parent 621273fc45
commit e29eb64398
6 changed files with 25 additions and 3 deletions

View File

@ -200,21 +200,25 @@ for k, v in pairs(craft_ingreds) do
type = "cooking", type = "cooking",
output = c, output = c,
recipe = "3d_armor:helmet_"..k, recipe = "3d_armor:helmet_"..k,
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = c, output = c,
recipe = "3d_armor:chestplate_"..k, recipe = "3d_armor:chestplate_"..k,
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = c, output = c,
recipe = "3d_armor:leggings_"..k, recipe = "3d_armor:leggings_"..k,
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = c, output = c,
recipe = "3d_armor:boots_"..k, recipe = "3d_armor:boots_"..k,
cooktime = 10,
}) })
end end
end end

View File

@ -411,48 +411,56 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_nugget", output = "default:gold_nugget",
recipe = "default:sword_gold", recipe = "default:sword_gold",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_nugget", output = "default:gold_nugget",
recipe = "default:axe_gold", recipe = "default:axe_gold",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_nugget", output = "default:gold_nugget",
recipe = "default:shovel_gold", recipe = "default:shovel_gold",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_nugget", output = "default:gold_nugget",
recipe = "default:pick_gold", recipe = "default:pick_gold",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:iron_nugget", output = "default:iron_nugget",
recipe = "default:sword_steel", recipe = "default:sword_steel",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:iron_nugget", output = "default:iron_nugget",
recipe = "default:axe_steel", recipe = "default:axe_steel",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:iron_nugget", output = "default:iron_nugget",
recipe = "default:shovel_steel", recipe = "default:shovel_steel",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:iron_nugget", output = "default:iron_nugget",
recipe = "default:pick_steel", recipe = "default:pick_steel",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
@ -663,49 +671,56 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:glass", output = "default:glass",
recipe = "group:sand", recipe = "group:sand",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:stone", output = "default:stone",
recipe = "default:cobble", recipe = "default:cobble",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:steel_ingot", output = "default:steel_ingot",
recipe = "default:stone_with_iron", recipe = "default:stone_with_iron",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_ingot", output = "default:gold_ingot",
recipe = "default:stone_with_gold", recipe = "default:stone_with_gold",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:clay_brick", output = "default:clay_brick",
recipe = "default:clay_lump", recipe = "default:clay_lump",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:fish", output = "default:fish",
recipe = "default:fish_raw", recipe = "default:fish_raw",
cooktime = 2, cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:charcoal_lump", output = "default:charcoal_lump",
recipe = "group:tree", recipe = "group:tree",
cooktime = 10,
}) })
minetest.register_craft({ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:sponge", output = "default:sponge",
recipe = "default:sponge_wet", recipe = "default:sponge_wet",
cooktime = 10,
}) })
-- --

View File

@ -85,6 +85,7 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:iron_nugget", output = "default:iron_nugget",
recipe = "farming:hoe_steel", recipe = "farming:hoe_steel",
cooktime = 10,
}) })
minetest.register_tool("farming:hoe_gold", { minetest.register_tool("farming:hoe_gold", {
@ -113,6 +114,7 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "default:gold_nugget", output = "default:gold_nugget",
recipe = "farming:hoe_gold", recipe = "farming:hoe_gold",
cooktime = 10,
}) })
minetest.register_tool("farming:hoe_diamond", { minetest.register_tool("farming:hoe_diamond", {

View File

@ -32,6 +32,7 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "hardened_clay:hardened_clay", output = "hardened_clay:hardened_clay",
recipe = "default:clay", recipe = "default:clay",
cooktime = 10,
}) })

View File

@ -130,6 +130,6 @@ minetest.register_craft({
type = "cooking", type = "cooking",
output = "mobs:meat_cooked_sheep", output = "mobs:meat_cooked_sheep",
recipe = "mobs:meat_raw_sheep", recipe = "mobs:meat_raw_sheep",
cooktime = 25, cooktime = 10,
}) })

View File

@ -9,6 +9,6 @@ minetest.register_craft({
output = '"mesecons_materials:glue" 2', output = '"mesecons_materials:glue" 2',
type = "cooking", type = "cooking",
recipe = "default:sapling", recipe = "default:sapling",
cooktime = 2 cooktime = 10,
}) })