forked from VoxeLibre/VoxeLibre
Use cooktime of 10 everywhere
This commit is contained in:
parent
621273fc45
commit
e29eb64398
|
@ -200,21 +200,25 @@ for k, v in pairs(craft_ingreds) do
|
|||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:helmet_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:chestplate_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:leggings_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:boots_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
|
@ -411,48 +411,56 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:sword_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:axe_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:shovel_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "default:pick_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:sword_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:axe_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:shovel_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "default:pick_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -663,49 +671,56 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "default:glass",
|
||||
recipe = "group:sand",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:stone",
|
||||
recipe = "default:cobble",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:steel_ingot",
|
||||
recipe = "default:stone_with_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_ingot",
|
||||
recipe = "default:stone_with_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:clay_brick",
|
||||
recipe = "default:clay_lump",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:fish",
|
||||
recipe = "default:fish_raw",
|
||||
cooktime = 2,
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:charcoal_lump",
|
||||
recipe = "group:tree",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:sponge",
|
||||
recipe = "default:sponge_wet",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
--
|
||||
|
|
|
@ -85,6 +85,7 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "farming:hoe_steel",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_gold", {
|
||||
|
@ -113,6 +114,7 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "farming:hoe_gold",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_diamond", {
|
||||
|
|
|
@ -32,6 +32,7 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "hardened_clay:hardened_clay",
|
||||
recipe = "default:clay",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
|
||||
|
|
|
@ -130,6 +130,6 @@ minetest.register_craft({
|
|||
type = "cooking",
|
||||
output = "mobs:meat_cooked_sheep",
|
||||
recipe = "mobs:meat_raw_sheep",
|
||||
cooktime = 25,
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
|
|
|
@ -9,6 +9,6 @@ minetest.register_craft({
|
|||
output = '"mesecons_materials:glue" 2',
|
||||
type = "cooking",
|
||||
recipe = "default:sapling",
|
||||
cooktime = 2
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue