2022-05-01 03:11:51 +02:00
|
|
|
local stair_oxidation = {
|
2023-01-31 00:27:53 +01:00
|
|
|
{ "stair", "cut", "exposed_cut" },
|
|
|
|
{ "stair", "cut_inner", "exposed_cut_inner" },
|
|
|
|
{ "stair", "cut_outer", "exposed_cut_outer" },
|
2023-02-15 19:41:43 +01:00
|
|
|
{ "stair", "exposed_cut", "weathered_cut" },
|
|
|
|
{ "stair", "exposed_cut_inner", "weathered_cut_inner" },
|
2023-01-31 00:27:53 +01:00
|
|
|
{ "stair", "exposed_cut_outer", "weathered_cut_outer" },
|
2023-02-15 19:41:43 +01:00
|
|
|
{ "stair", "weathered_cut", "oxidized_cut" },
|
|
|
|
{ "stair", "weathered_cut_inner", "oxidized_cut_inner" },
|
2023-01-31 00:27:53 +01:00
|
|
|
{ "stair", "weathered_cut_outer", "oxidized_cut_outer" }
|
2022-05-01 03:11:51 +02:00
|
|
|
}
|
|
|
|
|
2023-02-15 19:41:43 +01:00
|
|
|
local slab_oxidization = {
|
|
|
|
{ "slab", "cut", "exposed_cut" },
|
|
|
|
{ "slab", "cut_top", "exposed_cut_top" },
|
|
|
|
{ "slab", "cut_double", "exposed_cut_double" },
|
|
|
|
{ "slab", "exposed_cut", "weathered_cut" },
|
|
|
|
{ "slab", "exposed_cut_top", "weathered_cut_top" },
|
|
|
|
{ "slab", "exposed_cut_double", "weathered_cut_double" },
|
|
|
|
{ "slab", "weathered_cut", "oxidized_cut" },
|
|
|
|
{ "slab", "weathered_cut_top", "oxidized_cut_double" },
|
|
|
|
{ "slab", "weathered_cut_double", "oxidized_cut_double" },
|
|
|
|
}
|
|
|
|
|
|
|
|
local def
|
|
|
|
local def_variant_oxidized
|
|
|
|
local def_variant_waxed
|
2023-02-15 19:59:39 +01:00
|
|
|
local def_variant_scraped
|
2023-02-15 19:41:43 +01:00
|
|
|
|
2023-02-15 19:59:39 +01:00
|
|
|
-- register abm, then set up oxidized and waxed variants.
|
2022-05-01 03:11:51 +02:00
|
|
|
for _, s in pairs(stair_oxidation) do
|
2023-02-15 19:41:43 +01:00
|
|
|
def = "mcl_stairs:" .. s[1] .. "_copper_" .. s[2]
|
|
|
|
def_variant_oxidized = "mcl_stairs:" .. s[1] .. "_copper_" .. s[3]
|
|
|
|
minetest.override_item(def, { _mcl_oxidized_variant = def_variant_oxidized })
|
|
|
|
|
|
|
|
def_variant_waxed = "mcl_stairs:" .. s[1] .. "_copper_" .. s[2] .. "_waxed"
|
|
|
|
minetest.override_item(def, { _mcl_copper_waxed_variant = def_variant_waxed })
|
|
|
|
def = "mcl_stairs:" .. s[1] .. "_copper_" .. s[2]
|
|
|
|
def_variant_oxidized = "mcl_stairs:" .. s[1] .. "_copper_" .. s[3]
|
|
|
|
minetest.override_item(def, { _mcl_oxidized_variant = def_variant_oxidized })
|
|
|
|
|
|
|
|
def_variant_waxed = "mcl_stairs:" .. s[1] .. "_copper_" .. s[2] .. "_waxed"
|
|
|
|
minetest.override_item(def, { _mcl_copper_waxed_variant = def_variant_waxed })
|
2022-05-01 03:11:51 +02:00
|
|
|
end
|
2023-02-15 19:59:39 +01:00
|
|
|
|
|
|
|
-- Set up scraped variants.
|
|
|
|
for i=1, #stair_oxidation do
|
|
|
|
if i > 3 then
|
|
|
|
def = "mcl_stairs:" .. stair_oxidation[i][1] .. "_copper_" .. stair_oxidation[i][2]
|
|
|
|
def_variant_scraped="mcl_stairs:" .. stair_oxidation[i-3][1] .. "_copper_" .. stair_oxidation[i-3][2]
|
|
|
|
minetest.override_item(def, { _mcl_stripped_variant = def_variant_scraped })
|
|
|
|
def = "mcl_stairs:" .. slab_oxidization[i][1] .. "_copper_" .. slab_oxidization[i][2]
|
|
|
|
def_variant_scraped="mcl_stairs:" .. slab_oxidization[i-3][1] .. "_copper_" .. slab_oxidization[i-3][2]
|
|
|
|
minetest.override_item(def, { _mcl_stripped_variant = def_variant_scraped })
|
|
|
|
end
|
|
|
|
if i>6 then
|
|
|
|
def = "mcl_stairs:" .. stair_oxidation[i][1] .. "_copper_" .. stair_oxidation[i][3]
|
|
|
|
def_variant_scraped="mcl_stairs:" .. stair_oxidation[i][1] .. "_copper_" .. stair_oxidation[i][2]
|
|
|
|
minetest.override_item(def, { _mcl_stripped_variant = def_variant_scraped })
|
|
|
|
def = "mcl_stairs:" .. slab_oxidization[i][1] .. "_copper_" .. slab_oxidization[i][3]
|
|
|
|
def_variant_scraped="mcl_stairs:" .. slab_oxidization[i][1] .. "_copper_" .. slab_oxidization[i][2]
|
|
|
|
minetest.override_item(def, { _mcl_stripped_variant = def_variant_scraped })
|
|
|
|
end
|
|
|
|
end
|
2022-05-04 11:07:04 +02:00
|
|
|
|