mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-24 09:50:31 +01:00
commit
1b0669d5eb
@ -191,3 +191,14 @@ minetest.register_craft({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "default:dirt 2",
|
||||||
|
type = "shapeless",
|
||||||
|
replacements = {{"bucket:bucket_water","bucket:bucket_empty"}},
|
||||||
|
recipe = {
|
||||||
|
"technic:stone_dust",
|
||||||
|
"group:leaves",
|
||||||
|
"bucket:bucket_water",
|
||||||
|
"group:sand",
|
||||||
|
},
|
||||||
|
})
|
||||||
|
@ -14,6 +14,7 @@ local recipes = {
|
|||||||
{ "technic:bronze_dust 4", "technic:copper_dust 3", "technic:tin_dust" },
|
{ "technic:bronze_dust 4", "technic:copper_dust 3", "technic:tin_dust" },
|
||||||
{ "technic:stainless_steel_dust 4", "technic:wrought_iron_dust 3", "technic:chromium_dust" },
|
{ "technic:stainless_steel_dust 4", "technic:wrought_iron_dust 3", "technic:chromium_dust" },
|
||||||
{ "technic:brass_dust 3", "technic:copper_dust 2", "technic:zinc_dust" },
|
{ "technic:brass_dust 3", "technic:copper_dust 2", "technic:zinc_dust" },
|
||||||
|
{ "default:dirt 4", "default:sand", "default:gravel", "default:clay_lump 2" },
|
||||||
}
|
}
|
||||||
|
|
||||||
local function uranium_dust(p)
|
local function uranium_dust(p)
|
||||||
@ -34,5 +35,5 @@ if minetest.get_modpath("farming") then
|
|||||||
end
|
end
|
||||||
|
|
||||||
for _, data in pairs(recipes) do
|
for _, data in pairs(recipes) do
|
||||||
technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3] } })
|
technic.register_separating_recipe({ input = { data[1] }, output = { data[2], data[3], data[4] } })
|
||||||
end
|
end
|
||||||
|
@ -20,11 +20,12 @@ local recipes = {
|
|||||||
{"technic:zinc_lump", "technic:zinc_dust 2"},
|
{"technic:zinc_lump", "technic:zinc_dust 2"},
|
||||||
{"technic:lead_lump", "technic:lead_dust 2"},
|
{"technic:lead_lump", "technic:lead_dust 2"},
|
||||||
{"technic:sulfur_lump", "technic:sulfur_dust 2"},
|
{"technic:sulfur_lump", "technic:sulfur_dust 2"},
|
||||||
|
{"default:stone", "technic:stone_dust"},
|
||||||
|
{"default:sand", "technic:stone_dust"},
|
||||||
|
|
||||||
-- Other
|
-- Other
|
||||||
{"default:cobble", "default:gravel"},
|
{"default:cobble", "default:gravel"},
|
||||||
{"default:gravel", "default:dirt"},
|
{"default:gravel", "default:sand"},
|
||||||
{"default:stone", "default:sand"},
|
|
||||||
{"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
|
{"default:sandstone", "default:sand 2"}, -- reverse recipe can be found in the compressor
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,6 +104,7 @@ register_dust("Sulfur", nil)
|
|||||||
register_dust("Tin", "moreores:tin_ingot")
|
register_dust("Tin", "moreores:tin_ingot")
|
||||||
register_dust("Wrought Iron", "technic:wrought_iron_ingot")
|
register_dust("Wrought Iron", "technic:wrought_iron_ingot")
|
||||||
register_dust("Zinc", "technic:zinc_ingot")
|
register_dust("Zinc", "technic:zinc_ingot")
|
||||||
|
register_dust("Stone", "default:stone")
|
||||||
if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then
|
if minetest.get_modpath("gloopores") or minetest.get_modpath("glooptest") then
|
||||||
register_dust("Akalin", "glooptest:akalin_ingot")
|
register_dust("Akalin", "glooptest:akalin_ingot")
|
||||||
register_dust("Alatro", "glooptest:alatro_ingot")
|
register_dust("Alatro", "glooptest:alatro_ingot")
|
||||||
|
BIN
technic/textures/technic_stone_dust.png
Normal file
BIN
technic/textures/technic_stone_dust.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 417 B |
BIN
technic/textures/technicx32/technic_stone_dust.png
Normal file
BIN
technic/textures/technicx32/technic_stone_dust.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in New Issue
Block a user