Added New Mods and Profiles Folders

This is a complete rebuild of the modpack, with all new mods and updates for 1.5.3 of Anomaly.
This commit is contained in:
2025-01-14 05:07:53 -05:00
parent 85c665b107
commit 376b4b9689
21217 changed files with 546254 additions and 0 deletions
@@ -0,0 +1,12 @@
local common = animation_common
-- Animation: Append with '_ammoX' if weapon has X amount of ammo left
local function anm_ammo(anm_table, item)
local section = item:section()
local ammo_amount = item:get_ammo_in_magazine()
local suffix = "_ammo" .. ammo_amount
common.mutate_anim(anm_table, suffix, section)
end
common.add_anim_mutator(anm_ammo, 3.5)