Full glooptest support
To support the glooptest mod (successor of gloopores), define the gloopores lump->dust grinding recipes if either of the mods is available. (Formerly only "gloopores" was supported.) Define kalite dust item, which was previously missing. Make gloop ingots grindable to dust as the non-gloop ingots already are; incidentally refactor this to automatically make ingots grindable whenever the ingot can be made by cooking dust. Add textures for all the gloop dusts. Do the "Steel"->"Iron" renaming for glooptest-defined tools and items.
@ -41,35 +41,22 @@ end
|
||||
|
||||
-- Sorted alphebeticaly
|
||||
local recipes = {
|
||||
{"default:bronze_ingot", "technic:bronze_dust 1"},
|
||||
{"default:coal_lump", "technic:coal_dust 2"},
|
||||
{"default:cobble", "default:gravel"},
|
||||
{"default:copper_ingot", "technic:copper_dust 1"},
|
||||
{"default:copper_lump", "technic:copper_dust 2"},
|
||||
{"default:desert_stone", "default:desert_sand"},
|
||||
{"default:gold_ingot", "technic:gold_dust 1"},
|
||||
{"default:gold_lump", "technic:gold_dust 2"},
|
||||
{"default:gravel", "default:dirt"},
|
||||
{"default:iron_lump", "technic:wrought_iron_dust 2"},
|
||||
{"default:stone", "default:sand"},
|
||||
{"moreores:mithril_ingot", "technic:mithril_dust 1"},
|
||||
{"moreores:mithril_lump", "technic:mithril_dust 2"},
|
||||
{"moreores:silver_ingot", "technic:silver_dust 1"},
|
||||
{"moreores:silver_lump", "technic:silver_dust 2"},
|
||||
{"moreores:tin_ingot", "technic:tin_dust 1"},
|
||||
{"moreores:tin_lump", "technic:tin_dust 2"},
|
||||
{"technic:cast_iron_ingot", "technic:cast_iron_dust 1"},
|
||||
{"technic:chromium_ingot", "technic:chromium_dust 1"},
|
||||
{"technic:chromium_lump", "technic:chromium_dust 2"},
|
||||
{"technic:wrought_iron_ingot", "technic:wrought_iron_dust 1"},
|
||||
{"technic:carbon_steel_ingot", "technic:carbon_steel_dust 1"},
|
||||
{"technic:stainless_steel_ingot", "technic:stainless_steel_dust 1"},
|
||||
{"technic:zinc_ingot", "technic:zinc_dust 1"},
|
||||
{"technic:zinc_lump", "technic:zinc_dust 2"},
|
||||
{"technic:brass_ingot", "technic:brass_dust 1"},
|
||||
}
|
||||
|
||||
if minetest.get_modpath("gloopores") then
|
||||
if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then
|
||||
table.insert(recipes, {"gloopores:alatro_lump", "technic:alatro_dust 2"})
|
||||
table.insert(recipes, {"gloopores:kalite_lump", "technic:kalite_dust 2"})
|
||||
table.insert(recipes, {"gloopores:arol_lump", "technic:arol_dust 2"})
|
||||
@ -99,6 +86,7 @@ local function register_dust(name, ingot)
|
||||
recipe = "technic:"..lname.."_dust",
|
||||
output = ingot,
|
||||
})
|
||||
technic.register_grinder_recipe({ input = ingot, output = "technic:"..lname.."_dust 1" })
|
||||
end
|
||||
end
|
||||
|
||||
@ -117,10 +105,11 @@ register_dust("Stainless Steel", "technic:stainless_steel_ingot")
|
||||
register_dust("Tin", "moreores:tin_ingot")
|
||||
register_dust("Wrought Iron", "technic:wrought_iron_ingot")
|
||||
register_dust("Zinc", "technic:zinc_ingot")
|
||||
if minetest.get_modpath("gloopores") then
|
||||
if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then
|
||||
register_dust("Akalin", "glooptest:akalin_ingot")
|
||||
register_dust("Alatro", "glooptest:alatro_ingot")
|
||||
register_dust("Arol", "glooptest:arol_ingot")
|
||||
register_dust("Kalite", nil)
|
||||
register_dust("Talinite", "glooptest:talinite_ingot")
|
||||
end
|
||||
|
||||
|
BIN
technic/textures/technic_akalin_dust.png
Normal file
After Width: | Height: | Size: 240 B |
BIN
technic/textures/technic_alatro_dust.png
Normal file
After Width: | Height: | Size: 241 B |
BIN
technic/textures/technic_arol_dust.png
Normal file
After Width: | Height: | Size: 227 B |
BIN
technic/textures/technic_kalite_dust.png
Normal file
After Width: | Height: | Size: 191 B |
BIN
technic/textures/technic_talinite_dust.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
technic/textures/technicx32/technic_akalin_dust.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
technic/textures/technicx32/technic_alatro_dust.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
technic/textures/technicx32/technic_arol_dust.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
technic/textures/technicx32/technic_kalite_dust.png
Normal file
After Width: | Height: | Size: 809 B |
BIN
technic/textures/technicx32/technic_talinite_dust.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
@ -114,7 +114,7 @@ minetest.register_craft({
|
||||
output = "technic:wrought_iron_ingot",
|
||||
})
|
||||
|
||||
local function for_each_registered_craftitem(action)
|
||||
local function for_each_registered_item(action)
|
||||
local already_reg = {}
|
||||
for k, _ in pairs(minetest.registered_items) do
|
||||
table.insert(already_reg, k)
|
||||
@ -124,6 +124,16 @@ local function for_each_registered_craftitem(action)
|
||||
really_register_craftitem(name, def)
|
||||
action(string.gsub(name, "^:", ""))
|
||||
end
|
||||
local really_register_tool = minetest.register_tool
|
||||
minetest.register_tool = function(name, def)
|
||||
really_register_tool(name, def)
|
||||
action(string.gsub(name, "^:", ""))
|
||||
end
|
||||
local really_register_node = minetest.register_node
|
||||
minetest.register_node = function(name, def)
|
||||
really_register_node(name, def)
|
||||
action(string.gsub(name, "^:", ""))
|
||||
end
|
||||
for _, name in ipairs(already_reg) do
|
||||
action(name)
|
||||
end
|
||||
@ -137,6 +147,9 @@ for _, i in ipairs({
|
||||
"default:sword_steel",
|
||||
"doors:door_steel",
|
||||
"farming:hoe_steel",
|
||||
"glooptest:hammer_steel",
|
||||
"glooptest:handsaw_steel",
|
||||
"glooptest:reinforced_crystal_glass",
|
||||
"mesecons_doors:op_door_steel",
|
||||
"mesecons_doors:sig_door_steel",
|
||||
"vessels:steel_bottle",
|
||||
@ -144,7 +157,7 @@ for _, i in ipairs({
|
||||
steel_to_iron[i] = true
|
||||
end
|
||||
|
||||
for_each_registered_craftitem(function(item_name)
|
||||
for_each_registered_item(function(item_name)
|
||||
local item_def = minetest.registered_items[item_name]
|
||||
if steel_to_iron[item_name] and string.find(item_def.description, "Steel") then
|
||||
minetest.override_item(item_name, { description = string.gsub(item_def.description, "Steel", S("Iron")) })
|
||||
|