2018-11-29 15:56:09 +00:00
|
|
|
-- mods/default/crafting.lua
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Crafting (tool repair)
|
|
|
|
--
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "toolrepair",
|
|
|
|
additional_wear = -0.02,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
--
|
|
|
|
-- Cooking recipes
|
|
|
|
--
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:glass",
|
|
|
|
recipe = "group:sand",
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:obsidian_glass",
|
|
|
|
recipe = "default:obsidian_shard",
|
|
|
|
})
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:stone",
|
|
|
|
recipe = "default:cobble",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:stone",
|
|
|
|
recipe = "default:mossycobble",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:desert_stone",
|
|
|
|
recipe = "default:desert_cobble",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:steel_ingot",
|
|
|
|
recipe = "default:iron_lump",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:copper_ingot",
|
|
|
|
recipe = "default:copper_lump",
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:tin_ingot",
|
|
|
|
recipe = "default:tin_lump",
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:gold_ingot",
|
|
|
|
recipe = "default:gold_lump",
|
|
|
|
})
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "default:clay_brick",
|
|
|
|
recipe = "default:clay_lump",
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = 'cooking',
|
|
|
|
output = 'default:gold_ingot',
|
|
|
|
recipe = 'default:skeleton_key',
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = 'cooking',
|
|
|
|
output = 'default:gold_ingot',
|
|
|
|
recipe = 'default:key',
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
--
|
|
|
|
-- Fuels
|
|
|
|
--
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
-- Support use of group:tree, includes default:tree which has the same burn time
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:tree",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Burn time for all woods are in order of wood density,
|
|
|
|
-- which is also the order of wood colour darkness:
|
|
|
|
-- aspen, pine, apple, acacia, jungle
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:aspen_tree",
|
|
|
|
burntime = 22,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:pine_tree",
|
|
|
|
burntime = 26,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:acacia_tree",
|
|
|
|
burntime = 34,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:jungletree",
|
|
|
|
burntime = 38,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
-- Support use of group:wood, includes default:wood which has the same burn time
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:wood",
|
|
|
|
burntime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:aspen_wood",
|
|
|
|
burntime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:pine_wood",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:acacia_wood",
|
|
|
|
burntime = 8,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:junglewood",
|
|
|
|
burntime = 9,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
-- Support use of group:sapling, includes default:sapling which has the same burn time
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:sapling",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 5,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:bush_sapling",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 3,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:acacia_bush_sapling",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 4,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2019-01-08 21:24:35 +00:00
|
|
|
recipe = "default:pine_bush_sapling",
|
|
|
|
burntime = 2,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2019-01-08 21:24:35 +00:00
|
|
|
recipe = "default:aspen_sapling",
|
|
|
|
burntime = 4,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2019-01-08 21:24:35 +00:00
|
|
|
recipe = "default:pine_sapling",
|
|
|
|
burntime = 5,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:acacia_sapling",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 6,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:junglesapling",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:emergent_jungle_sapling",
|
|
|
|
burntime = 7,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_aspen_wood",
|
|
|
|
burntime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_pine_wood",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_wood",
|
|
|
|
burntime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_acacia_wood",
|
|
|
|
burntime = 8,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_junglewood",
|
|
|
|
burntime = 9,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_rail_aspen_wood",
|
|
|
|
burntime = 3,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_rail_pine_wood",
|
|
|
|
burntime = 4,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_rail_wood",
|
|
|
|
burntime = 5,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_rail_acacia_wood",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fence_rail_junglewood",
|
|
|
|
burntime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:bush_stem",
|
|
|
|
burntime = 7,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:acacia_bush_stem",
|
|
|
|
burntime = 8,
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:pine_bush_stem",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:junglegrass",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 3,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:leaves",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 4,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:cactus",
|
|
|
|
burntime = 15,
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:large_cactus_seedling",
|
|
|
|
burntime = 5,
|
|
|
|
})
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:papyrus",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 3,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:bookshelf",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:ladder_wood",
|
2019-01-08 21:24:35 +00:00
|
|
|
burntime = 7,
|
2018-11-29 15:56:09 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:lava_source",
|
|
|
|
burntime = 60,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:torch",
|
|
|
|
burntime = 4,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:sign_wall_wood",
|
|
|
|
burntime = 10,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:chest",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:chest_locked",
|
|
|
|
burntime = 30,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:coal_lump",
|
|
|
|
burntime = 40,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:coalblock",
|
|
|
|
burntime = 370,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:grass_1",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:dry_grass_1",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
2019-01-08 21:24:35 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:fern_1",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:marram_grass_1",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:paper",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:book",
|
|
|
|
burntime = 3,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:book_written",
|
|
|
|
burntime = 3,
|
|
|
|
})
|
|
|
|
|
2018-11-29 15:56:09 +00:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:dry_shrub",
|
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "group:stick",
|
|
|
|
burntime = 1,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:pick_wood",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:shovel_wood",
|
|
|
|
burntime = 4,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:axe_wood",
|
|
|
|
burntime = 6,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
|
|
|
recipe = "default:sword_wood",
|
|
|
|
burntime = 5,
|
|
|
|
})
|