2016-04-01 20:02:19 -04:00
|
|
|
--[[
|
|
|
|
More Blocks: redefinitions of default stuff
|
|
|
|
|
updated cottages, areasprotector, bees, biome_lib, technic, facade,
farming redo, homedecor, maptools, mesecons, moreblocks, moreores,
pipeworks, quartz, travelnet, unified_inventory, unifieddyes, xban2
delete the playeranim mod, not 5.0.0 compatible.
2019-03-06 17:01:02 -05:00
|
|
|
Copyright © 2011-2019 Hugo Locurcio and contributors.
|
2016-04-01 20:02:19 -04:00
|
|
|
Licensed under the zlib license. See LICENSE.md for more information.
|
|
|
|
--]]
|
|
|
|
|
|
|
|
-- Redefinitions of some default crafting recipes:
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:sign_wall 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:wood", "default:wood", "default:wood"},
|
|
|
|
{"default:wood", "default:wood", "default:wood"},
|
|
|
|
{"", "default:stick", ""},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:ladder 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:stick", "", "default:stick"},
|
|
|
|
{"default:stick", "default:stick", "default:stick"},
|
|
|
|
{"default:stick", "", "default:stick"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
update castles, cottages, digistuff, gloopblocks, locks,
maptools, mesecons, pipeworks, technic, unified inventory,
unified dyes, and xban2
2018-08-03 09:31:05 -04:00
|
|
|
minetest.clear_craft({
|
|
|
|
recipe = {
|
|
|
|
{"default:papyrus", "default:papyrus", "default:papyrus"}
|
|
|
|
}
|
|
|
|
})
|
2016-04-01 20:02:19 -04:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:paper 4",
|
|
|
|
recipe = {
|
|
|
|
{"default:papyrus", "default:papyrus", "default:papyrus"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "default:rail 24",
|
|
|
|
recipe = {
|
|
|
|
{"default:steel_ingot", "", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "default:stick", "default:steel_ingot"},
|
|
|
|
{"default:steel_ingot", "", "default:steel_ingot"},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "toolrepair",
|
|
|
|
additional_wear = -0.10, -- Tool repair buff (10% bonus instead of 2%).
|
|
|
|
})
|