142 lines
3.5 KiB
Lua
142 lines
3.5 KiB
Lua
|
-- Register molten metals
|
||
|
|
||
|
fluidity.molten_metals = {}
|
||
|
|
||
|
local function firstToUpper(str)
|
||
|
return (str:gsub("^%l", string.upper))
|
||
|
end
|
||
|
|
||
|
function fluidity.get_metal_for_fluid(fluid)
|
||
|
for i,v in pairs(fluidity.molten_metals) do
|
||
|
if v == fluid then
|
||
|
return i
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function fluidity.register_molten_metal(metal)
|
||
|
local description = firstToUpper(metal)
|
||
|
fluidity.molten_metals[metal] = "fluidity:"..metal.."_source"
|
||
|
|
||
|
minetest.register_node("fluidity:"..metal.."_source", {
|
||
|
description = "Molten "..description.." Source",
|
||
|
drawtype = "liquid",
|
||
|
tiles = {
|
||
|
{
|
||
|
name = "fluidity_"..metal.."_source_animated.png",
|
||
|
animation = {
|
||
|
type = "vertical_frames",
|
||
|
aspect_w = 16,
|
||
|
aspect_h = 16,
|
||
|
length = 3.0,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
special_tiles = {
|
||
|
{
|
||
|
name = "fluidity_"..metal.."_source_animated.png",
|
||
|
animation = {
|
||
|
type = "vertical_frames",
|
||
|
aspect_w = 16,
|
||
|
aspect_h = 16,
|
||
|
length = 3.0,
|
||
|
},
|
||
|
backface_culling = false,
|
||
|
},
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
light_source = default.LIGHT_MAX - 1,
|
||
|
walkable = false,
|
||
|
pointable = false,
|
||
|
diggable = false,
|
||
|
buildable_to = true,
|
||
|
is_ground_content = false,
|
||
|
drop = "",
|
||
|
drowning = 1,
|
||
|
liquidtype = "source",
|
||
|
liquid_alternative_flowing = "fluidity:"..metal.."_flowing",
|
||
|
liquid_alternative_source = "fluidity:"..metal.."_source",
|
||
|
liquid_viscosity = 7,
|
||
|
liquid_renewable = false,
|
||
|
damage_per_second = 4 * 2,
|
||
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
||
|
groups = {molten_metal = 1, lava = 1, liquid = 2, igniter = 1},
|
||
|
})
|
||
|
|
||
|
minetest.register_node("fluidity:"..metal.."_flowing", {
|
||
|
description = "Flowing Molten "..description,
|
||
|
drawtype = "flowingliquid",
|
||
|
tiles = {"fluidity_"..metal..".png"},
|
||
|
special_tiles = {
|
||
|
{
|
||
|
name = "fluidity_"..metal.."_flowing_animated.png",
|
||
|
backface_culling = false,
|
||
|
animation = {
|
||
|
type = "vertical_frames",
|
||
|
aspect_w = 16,
|
||
|
aspect_h = 16,
|
||
|
length = 3.3,
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
name = "fluidity_"..metal.."_flowing_animated.png",
|
||
|
backface_culling = true,
|
||
|
animation = {
|
||
|
type = "vertical_frames",
|
||
|
aspect_w = 16,
|
||
|
aspect_h = 16,
|
||
|
length = 3.3,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
paramtype = "light",
|
||
|
paramtype2 = "flowingliquid",
|
||
|
light_source = default.LIGHT_MAX - 1,
|
||
|
walkable = false,
|
||
|
pointable = false,
|
||
|
diggable = false,
|
||
|
buildable_to = true,
|
||
|
is_ground_content = false,
|
||
|
drop = "",
|
||
|
drowning = 1,
|
||
|
liquidtype = "flowing",
|
||
|
liquid_alternative_flowing = "fluidity:"..metal.."_flowing",
|
||
|
liquid_alternative_source = "fluidity:"..metal.."_source",
|
||
|
liquid_viscosity = 7,
|
||
|
liquid_renewable = false,
|
||
|
damage_per_second = 4 * 2,
|
||
|
post_effect_color = {a = 191, r = 255, g = 64, b = 0},
|
||
|
groups = {molten_metal = 1, lava = 1, liquid = 2, igniter = 1,
|
||
|
not_in_creative_inventory = 1},
|
||
|
})
|
||
|
|
||
|
bucket.register_liquid(
|
||
|
"fluidity:"..metal.."_source",
|
||
|
"fluidity:"..metal.."_flowing",
|
||
|
"fluidity:bucket_"..metal,
|
||
|
"fluidity_bucket_"..metal..".png",
|
||
|
"Molten "..description.." Bucket"
|
||
|
)
|
||
|
end
|
||
|
|
||
|
-- Default metals
|
||
|
fluidity.register_molten_metal("steel")
|
||
|
fluidity.register_molten_metal("copper")
|
||
|
fluidity.register_molten_metal("tin")
|
||
|
fluidity.register_molten_metal("gold")
|
||
|
fluidity.register_molten_metal("mese")
|
||
|
fluidity.register_molten_metal("obsidian")
|
||
|
|
||
|
-- Technic metals
|
||
|
if minetest.get_modpath("technic") ~= nil then
|
||
|
fluidity.register_molten_metal("lead")
|
||
|
fluidity.register_molten_metal("chromium")
|
||
|
fluidity.register_molten_metal("zinc")
|
||
|
end
|
||
|
|
||
|
-- moreores metals
|
||
|
if minetest.get_modpath("moreores") ~= nil then
|
||
|
fluidity.register_molten_metal("silver")
|
||
|
fluidity.register_molten_metal("mithril")
|
||
|
end
|