add armor specs to rainbow armor, add technic armor mod, add redef mod, add technic recycle mod

This commit is contained in:
N-Nachtigal 2025-07-26 13:07:52 +02:00
parent 00106c85c6
commit c1e648877d
138 changed files with 1321 additions and 4 deletions

42
mods/redef/init.lua Normal file
View file

@ -0,0 +1,42 @@
local modpath = core.get_modpath('redef')
local path = modpath..DIR_DELIM..'redefinitions'..DIR_DELIM
local worldpath = core.get_worldpath()..DIR_DELIM
-- Get aconfiguration value or return a default
--
-- This function takes an unprefixed value, automatically prefixes it and
-- tries to get the value from the global configuration or the world-specific
-- configuration. If the option is not found in any of those the given default
-- value is returned.
--
-- @param value The unprefixed option to get
-- @param default The default value in case the option is not found
-- @return mixed The value
local g = function (value, default)
local global_value = core.settings:get('redef_'..value) or default
local world_config_path = worldpath..DIR_DELIM..'_redef.conf'
local world_config = Settings(world_config_path)
local world_value = world_config:get('redef_'..value)
return world_value or global_value
end
core.register_on_mods_loaded(function()
local redefinitions = {
['3D Ladders'] = core.is_yes(g('3d_ladders', true)),
['Aligned Textures'] = core.is_yes(g('aligned_textures', true)),
['Grass Box Height'] = tonumber(g('grass_box_height', 2)) >= 1,
['Maximum Stack Size'] = tonumber(g('stack_max', 100)) >= 1,
['Proper Rotation'] = core.is_yes(g('proper_rotation', true)),
['Show Steps'] = core.is_yes(g('show_steps', true))
}
for name,use in pairs(redefinitions) do
if use == true then
dofile(path..name:lower():gsub(' ', '_')..'.lua')
core.log('info', '[redef] Applied redefinition “'..name..'')
end
end
end)