From 5c24251fdc83f0df5491ec2d1d835a7e1947486b Mon Sep 17 00:00:00 2001 From: oleh5230 Date: Sat, 16 May 2026 01:05:57 +0300 Subject: [PATCH 01/14] aol_anim_transitions.blacklist_table crash fix --- .../gamedata/scripts/aol_anim_transitions.script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Weapon Pack/gamedata/scripts/aol_anim_transitions.script b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Weapon Pack/gamedata/scripts/aol_anim_transitions.script index 0dc2a890b..bc0bab3f7 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Weapon Pack/gamedata/scripts/aol_anim_transitions.script +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Weapon Pack/gamedata/scripts/aol_anim_transitions.script @@ -101,7 +101,7 @@ function set_strict_transition(anm_table, hud_section) -- Ignore sprint transitions if weapon is lower-sprint valid -- hud section names are arbitrary, but this should cover all affected weapons in gamma local section = string.gsub(hud_section, "_hud", "") - if lower_weapon_sprint and not lower_weapon_sprint.blacklist_table[section] + if lower_weapon_sprint and lower_weapon_sprint.blacklist_table and not lower_weapon_sprint.blacklist_table[section] and (string.find(start_anm, "sprint") or string.find(end_anm, "sprint")) then --printf("[aol_anim_transitions] lower sprint valid, omitting transition animation") return false @@ -142,7 +142,7 @@ function set_pattern_transition(anm_table, hud_section) -- Ignore sprint transitions if weapon is lower-sprint valid -- hud section names are arbitrary, but this should cover all affected weapons in gamma local section = string.gsub(hud_section, "_hud", "") - if lower_weapon_sprint and not lower_weapon_sprint.blacklist_table[section] + if lower_weapon_sprint and lower_weapon_sprint.blacklist_table and not lower_weapon_sprint.blacklist_table[section] and (string.find(start_anm, "sprint") or string.find(end_anm, "sprint")) then --printf("[aol_anim_transitions] lower sprint valid, omitting transition animation") return false From 767e7e15622147231997c855b56049bb91d86843 Mon Sep 17 00:00:00 2001 From: oleh5230 Date: Sun, 17 May 2026 22:32:50 +0300 Subject: [PATCH 02/14] Remove exo NPCs from Agroprom --- .../gamedata/scripts/grok_nes.script | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/156- No Exos in the South - Grokitach/gamedata/scripts/grok_nes.script b/G.A.M.M.A/modpack_addons/156- No Exos in the South - Grokitach/gamedata/scripts/grok_nes.script index d6b9d251f..e0607a5da 100644 --- a/G.A.M.M.A/modpack_addons/156- No Exos in the South - Grokitach/gamedata/scripts/grok_nes.script +++ b/G.A.M.M.A/modpack_addons/156- No Exos in the South - Grokitach/gamedata/scripts/grok_nes.script @@ -189,12 +189,12 @@ local whitelisted_maps = { ["l04_darkvalley"] = 1, ["k02_trucks_cemetery"] = 0, ["l09_deadcity"] = 0, - ["l03_agroprom"] = 0, + ["l03_agroprom"] = 1, ["l06_rostok"] = 1, ["l07_military"] = 0, ["l08_yantar"] = 0, ["jupiter"] = 0, - ["l03u_agr_underground"] = 0, + ["l03u_agr_underground"] = 1, ["l10_limansk"] = 0, ["l08u_brainlab"] = 0, ["l10_red_forest"] = 0, @@ -213,7 +213,7 @@ local whitelisted_maps = { ["l13_generators"] = 0, ["l13u_warlab"] = 0, ["pripyat"] = 0, - ["y04_pole"] = 0, + ["y04_pole"] = 1, } local north_factions = { From 35ebfb80deaaf3ee1f07c1ea56d57919e2449d3a Mon Sep 17 00:00:00 2001 From: oleh5230 Date: Tue, 19 May 2026 06:41:17 +0300 Subject: [PATCH 03/14] Fix Trapper weapon fetch task --- .../gamedata/scripts/tasks_fetch.script | 16 +++++++++++++--- .../gamedata/scripts/tasks_fetch.script | 16 +++++++++++++--- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/463- Tasks QoL Pack - Serious/gamedata/scripts/tasks_fetch.script b/G.A.M.M.A/modpack_addons/463- Tasks QoL Pack - Serious/gamedata/scripts/tasks_fetch.script index d74a59093..240f61df1 100644 --- a/G.A.M.M.A/modpack_addons/463- Tasks QoL Pack - Serious/gamedata/scripts/tasks_fetch.script +++ b/G.A.M.M.A/modpack_addons/463- Tasks QoL Pack - Serious/gamedata/scripts/tasks_fetch.script @@ -648,6 +648,16 @@ task_functor.general_warfare_fetch_task = function(task_id,field,p,tsk) -- xQd, end end +function has_bad_part(v, obj) + local parts_condition = item_parts.get_parts_con(obj) + for _, value in pairs(parts_condition) do + if value < v then + return true + else + return false + end + end +end ---------------------------< Status functor >--------------------------- task_status_functor.actor_has_fetch_item = function(tsk,task_id) @@ -666,10 +676,10 @@ task_status_functor.actor_has_fetch_item = function(tsk,task_id) if (item ~= nil) then if (task_id == "esc_2_12_stalker_nimble_task_1" or task_id == "jup_b220_trapper_task_3") then - if (item:condition() >= 0.9) then - tsk.stage = 1 - else + if has_bad_part(0.8, item) or item:condition() <= 0.8 then tsk.stage = 0 + else + tsk.stage = 1 end else local count = load_var(actor,task_id.."_fetch_count") diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. ZCP 1.4 Balanced Spawns/gamedata/scripts/tasks_fetch.script b/G.A.M.M.A/modpack_addons/G.A.M.M.A. ZCP 1.4 Balanced Spawns/gamedata/scripts/tasks_fetch.script index 34d543318..ffb36e88d 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. ZCP 1.4 Balanced Spawns/gamedata/scripts/tasks_fetch.script +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. ZCP 1.4 Balanced Spawns/gamedata/scripts/tasks_fetch.script @@ -641,6 +641,16 @@ task_functor.general_warfare_fetch_task = function(task_id,field,p,tsk) -- xQd, end end +function has_bad_part(v, obj) + local parts_condition = item_parts.get_parts_con(obj) + for _, value in pairs(parts_condition) do + if value < v then + return true + else + return false + end + end +end ---------------------------< Status functor >--------------------------- task_status_functor.actor_has_fetch_item = function(tsk,task_id) @@ -653,10 +663,10 @@ task_status_functor.actor_has_fetch_item = function(tsk,task_id) local item = section and actor:object(section) if (item ~= nil) then if (task_id == "esc_2_12_stalker_nimble_task_1" or task_id == "jup_b220_trapper_task_3") then - if (item:condition() >= 0.9) then - tsk.stage = 1 - else + if has_bad_part(0.8, item) or item:condition() <= 0.8 then tsk.stage = 0 + else + tsk.stage = 1 end else local count = load_var(actor,task_id.."_fetch_count") From 21ab3567aabdadf9b450e18fa8d1278acab09d89 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Tue, 19 May 2026 20:57:07 +0200 Subject: [PATCH 04/14] alife plus new defaults for v1.6 --- .../gamedata/configs/axr_options.ltx | 86 +++++++++++++------ 1 file changed, 62 insertions(+), 24 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. MCM values - Rename to keep your personal changes/gamedata/configs/axr_options.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. MCM values - Rename to keep your personal changes/gamedata/configs/axr_options.ltx index 1bcfd89bf..b1555b0cf 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. MCM values - Rename to keep your personal changes/gamedata/configs/axr_options.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. MCM values - Rename to keep your personal changes/gamedata/configs/axr_options.ltx @@ -298,15 +298,16 @@ ap/causes/needs/cause_hunger_threshold = 8 ap/causes/needs/cause_job_enabled = true ap/causes/needs/cause_job_explore_enabled = true + ap/causes/needs/cause_job_explore_offmap_enabled = false ap/causes/needs/cause_job_outpost_enabled = true - ap/causes/needs/cause_job_research_enabled = false + ap/causes/needs/cause_job_research_enabled = true ap/causes/needs/cause_job_threshold = 18 ap/causes/needs/cause_money_enabled = true - ap/causes/needs/cause_money_harvest_enabled = false - ap/causes/needs/cause_money_hunt_enabled = false + ap/causes/needs/cause_money_harvest_enabled = true + ap/causes/needs/cause_money_hunt_enabled = true ap/causes/needs/cause_money_threshold = 24 ap/causes/needs/cause_needs_enabled = false - ap/causes/needs/cause_rest_campfire_enabled = true + ap/causes/needs/cause_rest_campfire_enabled = false ap/causes/needs/cause_rest_enabled = true ap/causes/needs/cause_rest_threshold = 4 ap/causes/needs/cause_shelter_enabled = true @@ -317,15 +318,17 @@ ap/causes/needs/cause_sleep_enabled = true ap/causes/needs/cause_sleep_threshold = 16 ap/causes/needs/cause_social_base_enabled = false - ap/causes/needs/cause_social_campfire_enabled = true + ap/causes/needs/cause_social_campfire_enabled = false ap/causes/needs/cause_social_enabled = true + ap/causes/needs/cause_social_offbase_enabled = false ap/causes/needs/cause_social_threshold = 36 ap/causes/needs/cause_supply_enabled = true ap/causes/needs/cause_supply_threshold = 48 - ap/causes/needs/cause_supply_trader_enabled = true + ap/causes/needs/cause_supply_trader_enabled = false + ap/causes/needs/cause_supply_trader_offmap_enabled = false ap/causes/opportunities/cause_area_conquer_enabled = false ap/causes/opportunities/cause_area_conquer_threshold = 24 - ap/causes/opportunities/cause_area_infest_enabled = false + ap/causes/opportunities/cause_area_infest_enabled = true ap/causes/opportunities/cause_area_infest_threshold = 24 ap/causes/opportunities/cause_area_swarm_enabled = false ap/causes/opportunities/cause_area_swarm_threshold = 24 @@ -338,11 +341,12 @@ ap/causes/opportunities/cause_stash_loot_threshold = 6 ap/causes/reactions/alpha_kills_per_level = 3 ap/causes/reactions/cause_alpha_enabled = false + ap/causes/reactions/cause_alpha_kills_per_level = 3 ap/causes/reactions/cause_alphakill_enabled = false ap/causes/reactions/cause_basekill_decay_time = 300 ap/causes/reactions/cause_basekill_enabled = true - ap/causes/reactions/cause_basekill_threshold = 2 - ap/causes/reactions/cause_harvest_enabled = false + ap/causes/reactions/cause_basekill_threshold = 5 + ap/causes/reactions/cause_harvest_enabled = true ap/causes/reactions/cause_massacre_decay_time = 300 ap/causes/reactions/cause_massacre_enabled = true ap/causes/reactions/cause_massacre_threshold = 3 @@ -354,8 +358,10 @@ ap/causes/wounded/cause_wounded_enabled = true ap/consequences/alpha_promote/alpha_loot_enabled = false ap/consequences/alpha_promote/consequence_alpha_promote_enabled = false + ap/consequences/alpha_promote/consequence_alpha_promote_max_alphas = 40 ap/consequences/alpha_promote/consequence_alpha_promote_pda_chance = 20 ap/consequences/alpha_promote/max_alphas = 40 + ap/consequences/alpha_promote/mutator_alpha_loot_enabled = true ap/consequences/alphakill_targeted/consequence_alphakill_targeted_enabled = false ap/consequences/alphakill_targeted/consequence_alphakill_targeted_max_chases = 5 ap/consequences/alphakill_targeted/consequence_alphakill_targeted_max_squads = 3 @@ -374,8 +380,8 @@ ap/consequences/area_conquer/consequence_area_conquer_personality_max = 0.7 ap/consequences/area_conquer/consequence_area_conquer_personality_min = 0.2 ap/consequences/area_conquer/consequence_area_conquer_rush = false - ap/consequences/area_infest/consequence_area_infest_enabled = false - ap/consequences/area_infest/consequence_area_infest_rush = false + ap/consequences/area_infest/consequence_area_infest_enabled = true + ap/consequences/area_infest/consequence_area_infest_rush = true ap/consequences/area_swarm/consequence_area_swarm_enabled = false ap/consequences/area_swarm/consequence_area_swarm_rush = false ap/consequences/basekill_flee/consequence_basekill_flee_chance = 10 @@ -386,12 +392,12 @@ ap/consequences/basekill_flee/consequence_basekill_flee_personality_min = 0.2 ap/consequences/basekill_flee/consequence_basekill_flee_rush = false ap/consequences/basekill_support/consequence_basekill_support_chance = 10 - ap/consequences/basekill_support/consequence_basekill_support_enabled = false - ap/consequences/basekill_support/consequence_basekill_support_max_squads = 2 + ap/consequences/basekill_support/consequence_basekill_support_enabled = true + ap/consequences/basekill_support/consequence_basekill_support_max_squads = 1 ap/consequences/basekill_support/consequence_basekill_support_pda_chance = 20 ap/consequences/basekill_support/consequence_basekill_support_personality_max = 0.7 ap/consequences/basekill_support/consequence_basekill_support_personality_min = 0.2 - ap/consequences/basekill_support/consequence_basekill_support_rush = false + ap/consequences/basekill_support/consequence_basekill_support_rush = true ap/consequences/elite_promote/consequence_elite_promote_chance = 10 ap/consequences/elite_promote/consequence_elite_promote_enabled = false ap/consequences/elite_promote/consequence_elite_promote_pda_chance = 20 @@ -430,12 +436,12 @@ ap/consequences/harvest_hunt/consequence_harvest_hunt_max_squads = 2 ap/consequences/harvest_hunt/consequence_harvest_hunt_pda_chance = 20 ap/consequences/harvest_hunt/consequence_harvest_hunt_rush = false - ap/consequences/harvest_rob/consequence_harvest_rob_enabled = false + ap/consequences/harvest_rob/consequence_harvest_rob_enabled = true ap/consequences/harvest_rob/consequence_harvest_rob_max_chases = 5 ap/consequences/harvest_rob/consequence_harvest_rob_max_squads = 2 ap/consequences/harvest_rob/consequence_harvest_rob_personality_max = 0.7 ap/consequences/harvest_rob/consequence_harvest_rob_personality_min = 0.2 - ap/consequences/harvest_rob/consequence_harvest_rob_rush = true + ap/consequences/harvest_rob/consequence_harvest_rob_rush = false ap/consequences/heal_base/consequence_heal_base_arrive_action_enabled = false ap/consequences/heal_base/consequence_heal_base_chance = 22 ap/consequences/heal_base/consequence_heal_base_enabled = true @@ -493,6 +499,8 @@ ap/consequences/job_explore/consequence_job_explore_personality_max = 0.7 ap/consequences/job_explore/consequence_job_explore_personality_min = 0.2 ap/consequences/job_explore/consequence_job_explore_rush = false + ap/consequences/job_explore_offmap/consequence_job_explore_offmap_enabled = false + ap/consequences/job_explore_offmap/consequence_job_explore_offmap_rush = false ap/consequences/job_guard/consequence_job_guard_arrive_action_enabled = false ap/consequences/job_guard/consequence_job_guard_chance = 22 ap/consequences/job_guard/consequence_job_guard_enabled = true @@ -551,15 +559,15 @@ ap/consequences/massacre_scavenge/consequence_massacre_scavenge_pda_chance = 20 ap/consequences/massacre_scavenge/consequence_massacre_scavenge_personality_max = 0.7 ap/consequences/massacre_scavenge/consequence_massacre_scavenge_personality_min = 0.2 - ap/consequences/massacre_scavenge/consequence_massacre_scavenge_rush = false + ap/consequences/massacre_scavenge/consequence_massacre_scavenge_rush = true ap/consequences/money_harvest/consequence_money_harvest_chance = 20 - ap/consequences/money_harvest/consequence_money_harvest_enabled = false + ap/consequences/money_harvest/consequence_money_harvest_enabled = true ap/consequences/money_harvest/consequence_money_harvest_pda_chance = 5 ap/consequences/money_harvest/consequence_money_harvest_personality_max = 0.7 ap/consequences/money_harvest/consequence_money_harvest_personality_min = 0.2 ap/consequences/money_harvest/consequence_money_harvest_rush = false ap/consequences/money_hunt/consequence_money_hunt_chance = 22 - ap/consequences/money_hunt/consequence_money_hunt_enabled = false + ap/consequences/money_hunt/consequence_money_hunt_enabled = true ap/consequences/money_hunt/consequence_money_hunt_pda_chance = 15 ap/consequences/money_hunt/consequence_money_hunt_personality_max = 0.7 ap/consequences/money_hunt/consequence_money_hunt_personality_min = 0.2 @@ -618,6 +626,9 @@ ap/consequences/social_campfire/consequence_social_campfire_personality_max = 0.7 ap/consequences/social_campfire/consequence_social_campfire_personality_min = 0.2 ap/consequences/social_campfire/consequence_social_campfire_rush = false + ap/consequences/social_offbase/consequence_social_offbase_arrive_action_enabled = false + ap/consequences/social_offbase/consequence_social_offbase_enabled = false + ap/consequences/social_offbase/consequence_social_offbase_rush = false ap/consequences/squadkill_flee/consequence_squadkill_flee_chance = 10 ap/consequences/squadkill_flee/consequence_squadkill_flee_enabled = false ap/consequences/squadkill_flee/consequence_squadkill_flee_max_squads = 2 @@ -632,7 +643,7 @@ ap/consequences/squadkill_revenge/consequence_squadkill_revenge_pda_chance = 20 ap/consequences/squadkill_revenge/consequence_squadkill_revenge_personality_max = 0.7 ap/consequences/squadkill_revenge/consequence_squadkill_revenge_personality_min = 0.2 - ap/consequences/squadkill_revenge/consequence_squadkill_revenge_rush = false + ap/consequences/squadkill_revenge/consequence_squadkill_revenge_rush = true ap/consequences/stash_ambush/consequence_stash_ambush_chance = 10 ap/consequences/stash_ambush/consequence_stash_ambush_enabled = false ap/consequences/stash_ambush/consequence_stash_ambush_pda_chance = 0 @@ -656,11 +667,14 @@ ap/consequences/stash_loot/consequence_stash_loot_rush = false ap/consequences/supply_trader/consequence_supply_trader_arrive_action_enabled = false ap/consequences/supply_trader/consequence_supply_trader_chance = 22 - ap/consequences/supply_trader/consequence_supply_trader_enabled = true + ap/consequences/supply_trader/consequence_supply_trader_enabled = false ap/consequences/supply_trader/consequence_supply_trader_pda_chance = 5 ap/consequences/supply_trader/consequence_supply_trader_personality_max = 0.7 ap/consequences/supply_trader/consequence_supply_trader_personality_min = 0.2 ap/consequences/supply_trader/consequence_supply_trader_rush = false + ap/consequences/supply_trader_offmap/consequence_supply_trader_offmap_arrive_action_enabled = false + ap/consequences/supply_trader_offmap/consequence_supply_trader_offmap_enabled = false + ap/consequences/supply_trader_offmap/consequence_supply_trader_offmap_rush = false ap/consequences/territory_conquer/consequence_territory_conquer_chance = 10 ap/consequences/territory_conquer/consequence_territory_conquer_enabled = true ap/consequences/territory_conquer/consequence_territory_conquer_pda_chance = 20 @@ -673,18 +687,18 @@ ap/consequences/wounded_faction_help/consequence_wounded_faction_help_pda_chance = 20 ap/consequences/wounded_help/consequence_wounded_help_chance = 22 ap/consequences/wounded_help/consequence_wounded_help_enabled = true - ap/consequences/wounded_help/consequence_wounded_help_max_squads = 2 + ap/consequences/wounded_help/consequence_wounded_help_max_squads = 1 ap/consequences/wounded_help/consequence_wounded_help_pda_chance = 20 ap/consequences/wounded_help/consequence_wounded_help_personality_max = 0.7 ap/consequences/wounded_help/consequence_wounded_help_personality_min = 0.2 - ap/consequences/wounded_help/consequence_wounded_help_rush = false + ap/consequences/wounded_help/consequence_wounded_help_rush = true ap/consequences/wounded_hunt/consequence_wounded_hunt_chance = 10 ap/consequences/wounded_hunt/consequence_wounded_hunt_enabled = true ap/consequences/wounded_hunt/consequence_wounded_hunt_max_squads = 2 ap/consequences/wounded_hunt/consequence_wounded_hunt_pda_chance = 20 ap/consequences/wounded_hunt/consequence_wounded_hunt_personality_max = 0.7 ap/consequences/wounded_hunt/consequence_wounded_hunt_personality_min = 0.2 - ap/consequences/wounded_hunt/consequence_wounded_hunt_rush = false + ap/consequences/wounded_hunt/consequence_wounded_hunt_rush = true ap/development/log_level = ERROR ap/development/map_markers = false ap/development/statistics_position = off @@ -720,14 +734,31 @@ ap/mutators/alpha/alpha_hit_power_taken_enabled = false ap/mutators/alpha/alpha_hit_power_taken_per_level = 0.05 ap/mutators/alpha/alpha_panic_immunity_enabled = false + ap/mutators/alpha/mutator_alpha_hit_power_dealt_enabled = false + ap/mutators/alpha/mutator_alpha_hit_power_dealt_per_level = 0.05 + ap/mutators/alpha/mutator_alpha_hit_power_taken_enabled = false + ap/mutators/alpha/mutator_alpha_hit_power_taken_per_level = 0.05 + ap/mutators/alpha/mutator_alpha_panic_immunity_enabled = false ap/mutators/conquest/area_conquest_decay_hours = 72 ap/mutators/conquest/area_conquest_max_smarts = 50 ap/mutators/conquest/area_conquest_mutate_smart = false ap/mutators/conquest/area_conquest_spawn_num = 2 + ap/mutators/conquest/mutator_area_conquest_decay_hours = 72 + ap/mutators/conquest/mutator_area_conquest_max_smarts = 50 + ap/mutators/conquest/mutator_area_conquest_mutate_smart = false + ap/mutators/conquest/mutator_area_conquest_spawn_num = 2 ap/mutators/infest/area_infest_decay_hours = 0 ap/mutators/infest/area_infest_max_per_level = 1 ap/mutators/infest/area_infest_mutate_smart = false ap/mutators/infest/area_infest_spawn_num = 3 + ap/mutators/infest/mutator_area_infest_decay_hours = 8 + ap/mutators/infest/mutator_area_infest_max_per_level = 1 + ap/mutators/infest/mutator_area_infest_mutate_smart = true + ap/mutators/infest/mutator_area_infest_spawn_num = 2 + ap/mutators/rank/mutator_rank_hit_power_dealt_enabled = false + ap/mutators/rank/mutator_rank_hit_power_dealt_mult = 0.15 + ap/mutators/rank/mutator_rank_hit_power_taken_enabled = false + ap/mutators/rank/mutator_rank_hit_power_taken_mult = 0.15 ap/mutators/rank/rank_damage_increase_enabled = false ap/mutators/rank/rank_damage_increase_mult = 0.15 ap/mutators/rank/rank_damage_reduction_enabled = false @@ -742,6 +773,13 @@ ap/news/news_interval_min_sec = 30 ap/news/news_max_age_game_hours = 12 ap/news/news_scope = allies + ap/world/offmap/cause_max_offmap = 1 + ap/world/offmap/offmap_base_hops = 0 + ap/world/offmap/offmap_despawn_hours = 168 + ap/world/offmap/offmap_extra_map_radar = 0 + ap/world/offmap/offmap_extra_map_rank = 0 + ap/world/offmap/offmap_extra_map_x16 = 0 + ap/world/offmap/offmap_return_home_hours = 72 auto_looter/delete_armor = false auto_looter/delete_body = false auto_looter/delete_misc = false From d8e7bf1e7a3cc55c298a563f7fd17c6068d95678 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Tue, 19 May 2026 21:05:41 +0200 Subject: [PATCH 05/14] Static version of alife plus and xlibs controlled through github --- G.A.M.M.A/modpack_data/modpack_maker_list.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/G.A.M.M.A/modpack_data/modpack_maker_list.txt b/G.A.M.M.A/modpack_data/modpack_maker_list.txt index d9e593b86..505b425f7 100644 --- a/G.A.M.M.A/modpack_data/modpack_maker_list.txt +++ b/G.A.M.M.A/modpack_data/modpack_maker_list.txt @@ -479,8 +479,8 @@ https://www.moddb.com/addons/start/298760 0 - lizzardman Custom iTheon's PDA T https://github.com/SaloEater/varefined/releases/download/gamma/varefined-gamma.7z 0 - SaloEater Voiced Actor Refined https://github.com/SaloEater/varefined f1d7938b1079e0ece12e53d6e12a4a89 https://www.moddb.com/addons/start/251694 0 - xcvb Squad Filler https://www.moddb.com/mods/stalker-anomaly/addons/squads-filler https://github.com/Verdatim25/Non-linear-ADS/archive/refs/heads/main.zip Non-linear-ADS-main - Verdatim Non-Linear ADS https://github.com/Verdatim25/Non-linear-ADS/tree/main -https://www.moddb.com/addons/start/305739 0 - damian_sirbu Xlib https://www.moddb.com/mods/stalker-anomaly/addons/xlibs-1001 -https://www.moddb.com/addons/start/305743 0 - damian_sirbu Alife Plus https://www.moddb.com/mods/stalker-anomaly/addons/alifeplus-v1-0-01 +https://github.com/damiansirbu-stalker/xlibs/releases/download/1.5.1/xlibs-1.5.1.zip 0 - damian_sirbu Xlib https://github.com/damiansirbu-stalker/xlibs +https://github.com/damiansirbu-stalker/AlifePlus/releases/download/1.6.0/AlifePlus-1.6.0.zip 0 - damian_sirbu Alife Plus https://github.com/damiansirbu-stalker/AlifePlus https://github.com/Verdatim25/Fast-Pistol-Swap/archive/refs/heads/main.zip Fast-Pistol-Swap-main - Verdatim Fast Pistol Swap https://github.com/Verdatim25/Fast-Pistol-Swap https://www.moddb.com/addons/start/290100 Escape From Tarkov MTS-255 Shotgun Revolver\Escape From Tarkov MTS-255 Setup:Escape From Tarkov MTS-255 Shotgun Revolver\GAMMA Clean Scope Icons Patch - frostychun Escape From Tarkov MTS-255 Shotgun Revolver https://www.moddb.com/mods/stalker-anomaly/addons/escape-from-tarkov-mts-255-revolver-shotgun https://www.moddb.com/addons/start/306165 02 SMG\MAC-10\00 Main files:05 Heavy\HK21E\00 Main files - SeDzhiMol & Billwa Billwa's Weapon Collection https://www.moddb.com/mods/stalker-anomaly/addons/billwas-weapon-collection From adbc1ae3fac431c88dba1c5f1d5396506e4ada82 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Tue, 19 May 2026 21:07:12 +0200 Subject: [PATCH 06/14] Alife plus and xlibs reactivated by default --- G.A.M.M.A/modpack_data/modlist.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/G.A.M.M.A/modpack_data/modlist.txt b/G.A.M.M.A/modpack_data/modlist.txt index 8f3017ade..e566dbce9 100644 --- a/G.A.M.M.A/modpack_data/modlist.txt +++ b/G.A.M.M.A/modpack_data/modlist.txt @@ -357,8 +357,8 @@ +486- Billwa's Weapon Collection - SeDzhiMol & Billwa +485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun +484- Fast Pistol Swap - Verdatim --483- Alife Plus - damian_sirbu --482- Xlib - damian_sirbu ++483- Alife Plus - damian_sirbu ++482- Xlib - damian_sirbu +481- Non-Linear ADS - Verdatim +480- Squad Filler - xcvb +477- Tasks Guide Spot - SaloEater From 74885b8dc73528eaeeaa28e67e45dffe64b08467 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Tue, 19 May 2026 21:10:35 +0200 Subject: [PATCH 07/14] Alife Guard added (needs testing) --- G.A.M.M.A/modpack_data/modlist.txt | 1 + G.A.M.M.A/modpack_data/modpack_maker_list.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/G.A.M.M.A/modpack_data/modlist.txt b/G.A.M.M.A/modpack_data/modlist.txt index e566dbce9..313dd6033 100644 --- a/G.A.M.M.A/modpack_data/modlist.txt +++ b/G.A.M.M.A/modpack_data/modlist.txt @@ -357,6 +357,7 @@ +486- Billwa's Weapon Collection - SeDzhiMol & Billwa +485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun +484- Fast Pistol Swap - Verdatim ++493- Alife Guard - damian_sirbu +483- Alife Plus - damian_sirbu +482- Xlib - damian_sirbu +481- Non-Linear ADS - Verdatim diff --git a/G.A.M.M.A/modpack_data/modpack_maker_list.txt b/G.A.M.M.A/modpack_data/modpack_maker_list.txt index 505b425f7..d1c30dd9b 100644 --- a/G.A.M.M.A/modpack_data/modpack_maker_list.txt +++ b/G.A.M.M.A/modpack_data/modpack_maker_list.txt @@ -490,3 +490,4 @@ https://www.moddb.com/addons/start/303984 0:addons\Kennedith's Enhanced Shaders https://www.moddb.com/addons/start/298130 Main:Patches\ES:Patches\3DSS:Patches\Mags Redux:Patches\Sprint Transitions - Bert MSBS Grot https://www.moddb.com/mods/stalker-anomaly/addons/msbs-grot https://www.moddb.com/addons/start/299225 [SoulCrystal] The Uzi Family:[SoulCrystal] The Uzi Family\patches\thap:[SoulCrystal] The Uzi Family\patches\phonkmetal - SoulCrystal Uzi Family https://www.moddb.com/mods/stalker-anomaly/addons/the-uzi-family https://www.moddb.com/addons/start/301838 Data - Priler Fair Autocomplete Tasks Enhanced https://www.moddb.com/mods/stalker-anomaly/addons/fair-autocomplete-tasks +https://github.com/damiansirbu-stalker/AlifeGuard/releases/download/1.2.0/AlifeGuard-1.2.0.zip 0 - damian_sirbu Alife Guard https://github.com/damiansirbu-stalker/AlifeGuard From c3703d77742e197ed55de27ed90e66df598c0323 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Tue, 19 May 2026 21:11:51 +0200 Subject: [PATCH 08/14] Slightly increased MTS255 dispersion to avoid accuracy above 100% when upgraded --- .../gamedata/configs/mod_system_zzzzz_gamma_mts_255.ltx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/G.A.M.M.A/modpack_addons/485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun/gamedata/configs/mod_system_zzzzz_gamma_mts_255.ltx b/G.A.M.M.A/modpack_addons/485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun/gamedata/configs/mod_system_zzzzz_gamma_mts_255.ltx index 4ce028a0a..14a07df66 100644 --- a/G.A.M.M.A/modpack_addons/485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun/gamedata/configs/mod_system_zzzzz_gamma_mts_255.ltx +++ b/G.A.M.M.A/modpack_addons/485- Escape From Tarkov MTS-255 Shotgun Revolver - frostychun/gamedata/configs/mod_system_zzzzz_gamma_mts_255.ltx @@ -5,7 +5,7 @@ ammo_class = ammo_20x70_buck hit_impulse = 40 hit_power = 0.8, 0.8, 0.8, 0.8 -fire_dispersion_base = 0.06 +fire_dispersion_base = 0.10 fire_dispersion_condition_factor = 0.0001 visual = dynamics\weapons\wpn_eft_mts_255\wpn_eft_mts_255_world.ogf From c8f00e1f46a6f2d2361e082ffa00afaa3c32a8d3 Mon Sep 17 00:00:00 2001 From: Blerbfish Date: Wed, 20 May 2026 13:22:26 +0200 Subject: [PATCH 09/14] Mechanized warfare fix for spleen fixes spleen not giving mechanized warfare achievement after giving expert tools --- .../gamedata/scripts/game_achievements.script | 1 + 1 file changed, 1 insertion(+) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Achievements Balance/gamedata/scripts/game_achievements.script b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Achievements Balance/gamedata/scripts/game_achievements.script index 1a922abdc..9cb54a800 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Achievements Balance/gamedata/scripts/game_achievements.script +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Achievements Balance/gamedata/scripts/game_achievements.script @@ -550,6 +550,7 @@ function mechanized_warfare_requirements() return ( (has_alife_info("agr_smart_terrain_1_6_army_mechanic_stalker_upgrade_tier_3")) or (has_alife_info("army_south_mechan_mlr_upgrade_tier_3")) + or (has_alife_info("zat_tech_mlr_upgrade_tier_3")) or (has_alife_info("bar_visitors_stalker_mechanic_upgrade_tier_3")) or (has_alife_info("cit_killers_merc_mechanic_stalker_upgrade_tier_3")) or (has_alife_info("dasc_tech_mlr_upgrade_tier_3")) From 07f4208c62b6e74a1e160300f44563b100e04017 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Fri, 22 May 2026 11:22:18 +0200 Subject: [PATCH 10/14] Disabled artefact_despawner.script --- .../scripts/grok_artefact_despawner.script | 132 +----------------- 1 file changed, 1 insertion(+), 131 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/scripts/grok_artefact_despawner.script b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/scripts/grok_artefact_despawner.script index 17a432967..7a4e58054 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/scripts/grok_artefact_despawner.script +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/scripts/grok_artefact_despawner.script @@ -1,131 +1 @@ -af_spawn_duration_limit = 432000 -- time in game time seconds after which artefacts are released if not looted -ah_af_sections = { - ["af_ah_o1"] = true, - ["af_ah_o1"] = true, - ["af_ah_o2"] = true, - ["af_ah_e1"] = true, - ["af_ah_g1"] = true, - ["af_ah_g2"] = true, - ["af_ah_h1"] = true, - ["af_ah_h2"] = true, - ["af_ah_e1"] = true, - ["af_ah_e2"] = true, - ["af_ah_g1"] = true, - ["af_ah_o2"] = true, - ["af_ah_h1"] = true, - ["af_ah_g1"] = true, - ["af_ah_o1"] = true, - ["af_ah_s1"] = true, - ["af_ah_r1"] = true, - ["af_ah_r2"] = true, - ["af_ah_r3"] = true, - ["af_ah_h1"] = true, - ["af_ah_h2"] = true, - ["af_ah_e1"] = true, - ["af_ah_e2"] = true, - ["af_ah_g2"] = true, - ["af_ah_f1"] = true, - ["af_oasis_heart"] = true, -} - -function t2c(t) - if not t then return nil end - local ct = game.CTime() - ct:set(t.Y, t.M, t.D, t.h, t.m, t.s, t.ms) - return ct -end - -function c2t(ct) - if not ct then return nil end - local Y, M, D, h, m, s, ms = 0, 0, 0, 0, 0, 0, 0 - Y, M, D, h, m, s, ms = ct:get(Y, M, D, h, m, s, ms) - return { - Y = Y, - M = M, - D = D, - h = h, - m = m, - s = s, - ms = ms - } -end - -function clear_old_artefacts() - --printf("\\\\ Checking IDs for artefacts") - local actor_id = db.actor:id() - for i = 1, 65534 do - se_obj = alife_object(i) - if se_obj and IsArtefact(se_obj) then - parent_id = se_obj.parent_id - if parent_id then - local se_parent = se_obj.parent_id and se_obj.parent_id < 65535 and alife_object(se_obj.parent_id) - if parent_id == actor_id then - goto skip - end - - if IsStalker(se_parent) then - goto skip - end - - if IsInvbox(se_parent) then - goto skip - end - - if IsMonster(se_parent) then - goto skip - end - - delete_artefacts(se_obj) - - ::skip:: - else - delete_artefacts(se_obj) - end - end - end -end - -function delete_artefacts(artefact) - curr_time = game.get_game_time() - if artefact then - local af_sec = artefact:section_name() - local kind = SYS_GetParam(0, af_sec, "kind") - --printf("// scanning IDs for artefacts") - local af_id = artefact.id - if kind == "i_arty_junk" or kind == "i_arty" then - if not artefacts_spawned_time then - artefacts_spawned_time = {} - end - if artefacts_spawned_time[af_id] then -- artefact has spawn time defined > compare and potentially release - --printf(artefacts_spawned_time[af_id]) - local spawn_time_diff = curr_time:diffSec(t2c(artefacts_spawned_time[af_id])) - --printf(spawn_time_diff) - if spawn_time_diff >= af_spawn_duration_limit then - --printf("/// old artefact found, releasing it") - if not ah_af_sections[af_sec] then -- respawn artefact hunter artefacts > Implement it later / avoid for the moment - alife_release(artefact) - artefacts_spawned_time[af_id] = nil - end - end - else -- attribute current game time as spawn time for the given artefact - --printf("/// new artefact found, registering the time of spawn") - artefacts_spawned_time[af_id] = c2t(curr_time) - end - end - end -end - -function save_state(m_data) - --printf("/// saving artefacts spawn time") - m_data.artefacts_spawned_time = artefacts_spawned_time -end - -function load_state(m_data) - artefacts_spawned_time = m_data.artefacts_spawned_time or {} -end - -function on_game_start() - RegisterScriptCallback("actor_on_first_update", clear_old_artefacts) - RegisterScriptCallback("save_state", save_state) - RegisterScriptCallback("load_state", load_state) -end \ No newline at end of file +printf("artefact despawner disabled for test") \ No newline at end of file From 9068a0cef20ba5cf6667f78b37385936904345f3 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Wed, 27 May 2026 15:39:23 +0200 Subject: [PATCH 11/14] More gravity related artefacts in grav fields --- .../gamedata/configs/items/settings/artefacts.ltx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx index a621a27d8..5665a3c47 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx @@ -103,6 +103,7 @@ af_electra_sparkler af_cristall af_ring af_electra_moonlight +af_sponge [af_elec_t3] af_electra_flash @@ -112,19 +113,15 @@ af_ice af_medusa af_mincer_meat af_night_star -af_soul [af_grav_t2] af_vyvert af_empty af_gravi -af_sponge -af_fuzz_kolobok [af_grav_t3] af_full_empty af_gold_fish -af_glass [af_psi_t1] af_cristall_flower From 6e0cf0b63fcc4c19b3c98f838fbd864a8435f954 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Sat, 30 May 2026 18:40:55 +0200 Subject: [PATCH 12/14] Artefacts all spawn according to their field type, including perktifacts --- .../configs/items/settings/artefacts.ltx | 42 +++++++++++++++++++ .../anomaly/agr_2c_01_hg_anomal_zone.ltx | 2 +- .../agr_smart_terrain_1_2_anomal_zone.ltx | 2 +- .../agr_smart_terrain_1_3_anomal_zone.ltx | 2 +- ...r_smart_terrain_4_4_near_3_anomal_zone.ltx | 2 +- .../agr_smart_terrain_5_2_anomal_zone.ltx | 2 +- .../agr_smart_terrain_5_7_anomal_zone.ltx | 2 +- .../anomaly/bar_2c_01_grant_anomal_zone.ltx | 2 +- .../bun/anomaly/bun_2c_01_f_anomal_zone.ltx | 2 +- .../bun/anomaly/bun_2c_02_gp_anomal_zone.ltx | 2 +- .../anomaly/ds_anomal_zone_2c_01.ltx | 2 +- .../anomaly/ds_anomal_zone_2c_02.ltx | 2 +- .../anomaly/ds_anomal_zone_2c_03.ltx | 2 +- .../anomaly/ds_anomal_zone_2c_04.ltx | 2 +- .../val_smart_terrain_6_4_anomal_zone.ltx | 2 +- .../val_smart_terrain_8_6_anomal_zone.ltx | 2 +- .../val_smart_terrain_8_9_anomal_zone.ltx | 2 +- .../val_smart_terrain_9_4_anomal_zone.ltx | 2 +- .../anomaly/cit_2c_01_ch_anomal_zone.ltx | 2 +- .../esc_2c_01_high_hopes_anomal_zone.ltx | 2 +- .../esc_smart_terrain_1_11_anomal_zone.ltx | 2 +- .../esc_smart_terrain_5_4_anomal_zone.ltx | 2 +- .../esc_smart_terrain_8_9_anomal_zone.ltx | 2 +- .../anomaly/esc_tunnel_electr_anomal_zone.ltx | 2 +- .../anomaly/gar_2c_01_nwi_anomal_zone.ltx | 2 +- .../anomaly/gar_2c_02_toaster_anomal_zone.ltx | 4 +- .../gar_smart_terrain_1_7_anomal_zone.ltx | 4 +- .../gar_smart_terrain_2_4_anomal_zone.ltx | 2 +- .../gar_smart_terrain_3_7_anomal_zone.ltx | 2 +- .../gar_smart_terrain_3_7_anomal_zone_2.ltx | 2 +- .../gar_smart_terrain_5_6_anomal_zone.ltx | 2 +- .../gar_smart_terrain_6_7_anomal_zone.ltx | 2 +- .../anomaly/gen_2c_01_ss_anomal_zone.ltx | 2 +- .../anomaly/unknown_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b10_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b1_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b200_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b201_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b206_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b209_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b211_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b214_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b25_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_b32_anomal_zone.ltx | 2 +- .../jupiter/anomaly/jup_wa_anomal_zone.ltx | 2 +- .../anomaly/lim_2c_01_ls_anomal_zone.ltx | 2 +- .../mar_smart_terrain_10_10_anomal_zone.ltx | 2 +- .../mar_smart_terrain_11_3_anomal_zone.ltx | 2 +- .../mar_smart_terrain_12_2_anomal_zone.ltx | 2 +- .../mar_smart_terrain_2c_01_anomal_zone.ltx | 2 +- .../mar_smart_terrain_2c_02_anomal_zone.ltx | 2 +- .../mar_smart_terrain_3_3_anomal_zone.ltx | 2 +- .../mar_smart_terrain_3_7_anomal_zone.ltx | 2 +- .../mar_smart_terrain_8_8_anomal_zone.ltx | 2 +- .../mar_smart_terrain_base_anomal_zone.ltx | 2 +- .../marsh/anomaly/marsh_wa_anomal_zone.ltx | 2 +- .../anomaly/mil_2c_01_hw_anomal_zone.ltx | 2 +- .../mil_smart_terrain_2_1_anomal_zone.ltx | 2 +- .../mil_smart_terrain_2_6_anomal_zone.ltx | 2 +- .../mil_smart_terrain_4_7_anomal_zone.ltx | 2 +- .../mil_smart_terrain_7_4_anomal_zone.ltx | 2 +- .../mil_smart_terrain_8_3_anomal_zone.ltx | 2 +- .../pol_smart_terrain_1_2_anomal_zone.ltx | 2 +- .../pol_smart_terrain_1_3_anomal_zone.ltx | 2 +- .../anomaly/pri_2c_01_pp_anomal_zone.ltx | 2 +- .../anomaly/pri_2c_02_gt_anomal_zone.ltx | 2 +- .../anomaly/pri_2c_03_wr_anomal_zone.ltx | 2 +- .../anomaly/pri_2c_04_o_anomal_zone.ltx | 2 +- .../anomaly/rad_2c_01_bl_anomal_zone.ltx | 2 +- .../anomaly/rad_2c_02_pp_anomal_zone.ltx | 2 +- .../red_smart_terrain_6_3_anomal_zone.ltx | 2 +- .../red_smart_terrain_6_6_anomal_zone.ltx | 2 +- ...red_smart_terrain_monsters_anomal_zone.ltx | 2 +- .../anomaly/ros_2c_01_tunnel_anomal_zone.ltx | 2 +- .../anomaly/ros_2c_02_ct_anomal_zone.ltx | 2 +- .../anomaly/ros_2c_03_yc_anomal_zone.ltx | 2 +- .../anomaly/trc_2c_01_anomal_zone.ltx | 2 +- .../anomaly/trc_2c_02_chem_anomal_zone.ltx | 2 +- .../trc_2c_03_desolation_anomal_zone.ltx | 4 +- .../anomaly/trc_sim_13_anomal_zone.ltx | 2 +- .../anomaly/yan_2c_01_cd_anomal_zone.ltx | 2 +- .../yan_smart_terrain_2_5_anomal_zone.ltx | 2 +- .../yan_smart_terrain_4_2_anomal_zone.ltx | 2 +- .../yan_smart_terrain_5_3_anomal_zone.ltx | 2 +- ..._smart_terrain_zombi_spawn_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b100_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b101_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b14_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b20_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b39_anomal_zone.ltx | 2 +- .../anomaly/zat_b44_anomal_zone_acid.ltx | 2 +- .../anomaly/zat_b44_anomal_zone_gravi.ltx | 2 +- .../zaton/anomaly/zat_b53_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b54_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b55_anomal_zone.ltx | 2 +- .../zaton/anomaly/zat_b56_anomal_zone.ltx | 2 +- 96 files changed, 140 insertions(+), 98 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx index 5665a3c47..b1e596b72 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/items/settings/artefacts.ltx @@ -65,6 +65,13 @@ af_death ;-------------------------- +[af_fire_t0] +af_atom +af_dragon_eye +af_peas +af_sandstone +af_sun + [af_fire_t1] af_itcher af_dummy_glassbeads @@ -79,6 +86,13 @@ af_fireball af_fire af_baloon +[af_chem_t0] +af_black_angel +af_fountain +af_grapes +af_kislushka +af_skull_miser + [af_chem_t1] af_cristall_flower af_blood @@ -95,6 +109,14 @@ af_fuzz_kolobok af_baloon af_glass +[af_elec_t0] +af_elektron +af_fonar +af_generator +af_kogot +af_moh +af_tapeworm + [af_elec_t1] af_dummy_battery af_electra_sparkler @@ -109,6 +131,14 @@ af_sponge af_electra_flash af_ice +[af_grav_t0] +af_ball +af_cell +af_chelust +af_cocoon +af_repei +af_spaika + [af_grav_t1] af_medusa af_mincer_meat @@ -123,6 +153,13 @@ af_gravi af_full_empty af_gold_fish +[af_psi_t0] +af_ear +af_lighthouse +af_medallion +af_signet +af_zhelch + [af_psi_t1] af_cristall_flower af_soul @@ -144,6 +181,11 @@ af_black_spray [af_death] af_death_lamp +[af_special] +af_bat +af_serofim +af_star_phantom + [af_class_weak_low] af_skull_miser af_ear diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_2c_01_hg_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_2c_01_hg_anomal_zone.ltx index fead8e76b..84993adcb 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_2c_01_hg_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_2c_01_hg_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 300 applying_force_y = 500 artefact_ways = agr_2c_01_hg_af_way - artefacts = af_class_weak_low, af_class_phyto_chem_south, af_class_junk + artefacts = af_grav_t1, af_grav_t0 coeff = field_name = agr_2c_01_hg_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_2_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_2_anomal_zone.ltx index d9c5fd9a0..bf00d14b7 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_2_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_2_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_xz = 250 artefact_ways = agr_art_way_7 - artefacts = af_class_weak_low, af_chem_t1 + artefacts = af_chem_t0, af_chem_t1, af_psi_t0, af_psi_t1 coeff = field_name = agr_zone_field_acidic_average max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_3_anomal_zone.ltx index 247449763..a2cc7ac16 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_1_3_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 300 artefact_ways = agr_art_way_1 - artefacts = af_class_weak_low, af_grav_t1, af_class_junk + artefacts = af_grav_t0, af_grav_t1, af_class_junk coeff = field_name = agr_zone_field_radioactive_average max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_4_4_near_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_4_4_near_3_anomal_zone.ltx index 37576eb92..79b1f0dab 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_4_4_near_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_4_4_near_3_anomal_zone.ltx @@ -3,7 +3,7 @@ applying_force_y = 200 artefact_count = 2 artefact_ways = agr_art_way_2, agr_art_way_3 - artefacts = af_psi_t1, af_psi_t1, af_elec_t1, af_elec_t1, af_class_weak_low + artefacts = af_psi_t1, af_psi_t1, af_psi_t0, af_elec_t1, af_elec_t1, af_elec_t0 coeff = field_name = agr_zone_field_psychic_average max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_2_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_2_anomal_zone.ltx index 7338ffde0..9bd287974 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_2_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_2_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 500 artefact_ways = agr_art_way_5 - artefacts = af_grav_t1, af_psi_t1, af_class_weak_low + artefacts = af_grav_t1, af_psi_t1, af_grav_t0, af_psi_t0 coeff = field_name = agr_zone_field_radioactive_weak_0000 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_7_anomal_zone.ltx index 340b140e6..8ddd3b6db 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/agroprom/anomaly/agr_smart_terrain_5_7_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 600 artefact_ways = agr_art_way_6 - artefacts = af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t1 coeff = field_name = agr_zone_field_radioactive_average_0002 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bar/anomaly/bar_2c_01_grant_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bar/anomaly/bar_2c_01_grant_anomal_zone.ltx index 99742b39d..3b8fd969a 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bar/anomaly/bar_2c_01_grant_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bar/anomaly/bar_2c_01_grant_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 100 applying_force_y = 10 artefact_ways = bar_2c_01_grant_af_way - artefacts = af_class_weak_low, af_class_weak_low, af_class_junk + artefacts = af_grav_t0, af_psi_t0 coeff = field_name = bar_2c_01_grant_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_01_f_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_01_f_anomal_zone.ltx index 9644336c3..dbc0d8162 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_01_f_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_01_f_anomal_zone.ltx @@ -8,7 +8,7 @@ max_artefacts = 1 start_artefact = -artefacts = af_class_weak_high, af_class_psio_gravi_north, af_class_psio-gravi_mid +artefacts = af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2 coeff = 2, 2, 2, 1, 1, 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_02_gp_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_02_gp_anomal_zone.ltx index 0e6b26957..08c28debb 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_02_gp_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/bun/anomaly/bun_2c_02_gp_anomal_zone.ltx @@ -6,7 +6,7 @@ field_name = bun_2c_02_gp_anomaly_spot respawn_tries = 2 max_artefacts = 1 -artefacts = af_class_weak_high, af_class_elemental_north, af_class_mix_fire +artefacts = af_fire_t0, af_fire_t1, af_fire_t2, af_fire_t2 start_artefact = coeff = 2, 2, 2, 1, 1, 1, 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_01.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_01.ltx index 4a87929c9..776c01d15 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_01.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_01.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = ds_2c_01_af_way - artefacts = af_class_weak_low, af_grav_t1, af_class_junk + artefacts = af_grav_t0, af_grav_t1, af_grav_t1 coeff = field_name = ds_2c_01_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_02.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_02.ltx index 7071151eb..d963264d4 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_02.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_02.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = ds_2c_02_af_way - artefacts = af_class_weak_low, af_elec_t1 + artefacts = af_elec_t0, af_elec_t1, af_elec_t1 coeff = field_name = ds_2c_02_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_03.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_03.ltx index 4c421c341..5b7abc23d 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_03.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_03.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = ds_2c_03_af_way - artefacts = af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t1, af_psi_t1 coeff = field_name = ds_2c_03_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_04.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_04.ltx index 006160198..5956122bf 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_04.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkscape/anomaly/ds_anomal_zone_2c_04.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = ds_2c_04_af_way - artefacts = af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t1, af_psi_t1 coeff = field_name = ds_2c_04_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_6_4_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_6_4_anomal_zone.ltx index 7b1737bf8..4fabf4b01 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_6_4_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_6_4_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = val_art_zone_1 - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t0, af_psi_t0, af_grav_t1, af_psi_t1 coeff = field_name = val_zone_field_radioactive_average max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_6_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_6_anomal_zone.ltx index f0c07db8e..d4f274624 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_6_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_6_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 400 artefact_ways = val_art_zone_2 - artefacts = af_class_weak_low, af_elec_t1, af_grav_t1 + artefacts = af_elec_t0, af_elec_t1, af_elec_t1, af_grav_t0, af_grav_t1, af_grav_t1 coeff = field_name = val_zone_field_radioactive_weak_baza_freedom, val_zone_field_radioactive_weak_baza_freedom_0004 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_9_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_9_anomal_zone.ltx index 7b9076111..d7a43c5f2 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_9_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_8_9_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 400 applying_force_y = 500 artefact_ways = val_art_zone_4 - artefacts = af_class_weak_low, af_grav_t1, af_chem_t1 + artefacts = af_grav_t0, af_grav_t1, af_chem_t1, af_chem_t0 coeff = field_name = val_zone_field_radioactive_weak_0001 layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_9_4_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_9_4_anomal_zone.ltx index 629d07f94..a91a9faf2 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_9_4_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/darkvalley/anomaly/val_smart_terrain_9_4_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 200 artefact_ways = val_art_zone_3 - artefacts = af_class_weak_low, af_chem_t1 + artefacts = af_chem_t0, af_chem_t1, af_chem_t1 coeff = field_name = val_zone_field_radioactive_average_0000 layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/dead_city/anomaly/cit_2c_01_ch_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/dead_city/anomaly/cit_2c_01_ch_anomal_zone.ltx index c604c2139..be4f9c670 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/dead_city/anomaly/cit_2c_01_ch_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/dead_city/anomaly/cit_2c_01_ch_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 10 artefact_ways = cit_2c_01_ch_af_way - artefacts = af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t1, af_psi_t1 coeff = field_name = cit_2c_01_ch_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_2c_01_high_hopes_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_2c_01_high_hopes_anomal_zone.ltx index ec0046c4a..485dd34e5 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_2c_01_high_hopes_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_2c_01_high_hopes_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 10 applying_force_y = 10 artefact_ways = esc_2c_01_high_hopes_af_way - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t0, af_grav_t1 coeff = field_name = esc_2c_01_high_hopes_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_1_11_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_1_11_anomal_zone.ltx index 41affeec9..77d8f7096 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_1_11_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_1_11_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = esc_anomal_way_1 - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t1 coeff = field_name = esc_zone_field_radioactive_weak_0000 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_5_4_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_5_4_anomal_zone.ltx index 7a4db29d2..b17e010cd 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_5_4_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_5_4_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = esc_anomal_way_3 - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t0, af_psi_t0, af_grav_t1, af_psi_t1 coeff = field_name = esc_zone_field_radioactive_weak_0004 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_8_9_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_8_9_anomal_zone.ltx index 8f537d809..1a93eb2a2 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_8_9_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_smart_terrain_8_9_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = esc_anomal_way_2 - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t0, af_grav_t1 coeff = field_name = esc_zone_field_radioactive_weak_0002 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_tunnel_electr_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_tunnel_electr_anomal_zone.ltx index a24018df7..702e1e807 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_tunnel_electr_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/escape/anomaly/esc_tunnel_electr_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = esc_tunnel_electr_af_way, esc_tunnel_electr_af_way2 -artefacts = af_class_weak_low, af_elec_t1 +artefacts = af_psi_t0, af_psi_t1, af_elec_t0, af_elec_t1 coeff = field_name = esc_smart_terrain_tunnel_electr_spot max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_01_nwi_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_01_nwi_anomal_zone.ltx index e4100bf00..91b591378 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_01_nwi_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_01_nwi_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 400 applying_force_y = 10 artefact_ways = gar_2c_01_nwi_af_way - artefacts = af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t1, af_grav_t1 coeff = field_name = gar_2c_01_nwi_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_02_toaster_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_02_toaster_anomal_zone.ltx index c35ef144f..9947ffd13 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_02_toaster_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_2c_02_toaster_anomal_zone.ltx @@ -2,11 +2,11 @@ applying_force_xz = 20 applying_force_y = 50 artefact_ways = gar_2c_02_toaster_af_way - artefacts = af_class_weak_low, af_fire_t1, af_fire_t1 + artefacts = af_fire_t0, af_fire_t1, af_fire_t1 coeff = field_name = gar_2c_02_toaster_anomaly_spot layers_count = 1 - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_1_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_1_7_anomal_zone.ltx index 3cbb8bbb7..79daa0bc2 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_1_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_1_7_anomal_zone.ltx @@ -1,9 +1,9 @@ [anomal_zone] artefact_ways = gar_anomal_zone_west_of_conc_camp_way_1 - artefacts = af_class_weak_low, af_grav_t1, af_psi_t1 + artefacts = af_grav_t1, af_psi_t1 coeff = field_name = gar_zone_field_radioactive_weak_0003 - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_2_4_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_2_4_anomal_zone.ltx index 6898d16c3..583bf19a9 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_2_4_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_2_4_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = gar_anomal_zone_reward_way_1 - artefacts = af_class_weak_low, af_elec_t1, af_psi_t1, af_class_junk + artefacts = af_elec_t0, af_elec_t1, af_psi_t1, af_psi_t1, af_psi_t0 coeff = field_name = gar_zone_field_psychic_average max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone.ltx index 740a059f7..dd68a6559 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = gar_anomal_zone_conc_camp_1_way_1 - artefacts = af_class_weak_low, af_class_junk, af_fire_t1 + artefacts = af_fire_t0, af_fire_t1, af_fire_t1 coeff = field_name = gar_zone_field_radioactive_conc_camp_2 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone_2.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone_2.ltx index ad520caa6..ba52f3734 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone_2.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_3_7_anomal_zone_2.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = gar_anomal_zone_conc_camp_2_way_1 - artefacts = af_class_weak_low, af_class_weak_low, af_fire_t1 + artefacts = af_fire_t0, af_fire_t1, af_fire_t1 coeff = field_name = gar_zone_field_radioactive_conc_camp_2 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_5_6_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_5_6_anomal_zone.ltx index 83f155140..a325b89cf 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_5_6_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_5_6_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = gar_art_way_1, gar_art_way_2 - artefacts = af_chem_t1 + artefacts = af_chem_t0, af_chem_t1, af_chem_t1, af_chem_t1 coeff = field_name = gar_zone_field_acidic_average_0004, gar_zone_field_acidic_average_0001, gar_zone_field_acidic_average, gar_zone_field_acidic_average_0000, gar_zone_field_acidic_average_0002 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_6_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_6_7_anomal_zone.ltx index abcc9ee6f..1bb9a9ff8 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_6_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/garbage/anomaly/gar_smart_terrain_6_7_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = gar_art_way_3 - artefacts = af_class_weak_low, af_class_weak_low, af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t1 coeff = field_name = gar_zone_field_radioactive_weak_0000 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/gen_2c_01_ss_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/gen_2c_01_ss_anomal_zone.ltx index cc39727f5..f20f47fb6 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/gen_2c_01_ss_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/gen_2c_01_ss_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 60 artefact_ways = gen_2c_01_ss_af_way - artefacts = af_grav_t2, af_grav_t2, af_grav_t3, af_psi_t2, af_psi_t2, af_psi_t3 + artefacts = af_grav_t2, af_grav_t3, af_psi_t2, af_psi_t3, af_special coeff = 1, 1, 1, 1, 1 field_name = gen_2c_01_ss_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/unknown_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/unknown_anomal_zone.ltx index 4cd6c5001..8edb08523 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/unknown_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/generators/anomaly/unknown_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 300 applying_force_y = 400 artefact_ways = gen_smart_terrain_urod_af_way, gen_smart_terrain_urod_af_way_2, gen_smart_terrain_urod_af_way_3, gen_smart_terrain_urod_af_way_4 - artefacts = af_chem_t2, af_chem_t3, af_grav_t2, af_grav_t3, af_elec_t2, af_elec_t3, af_fire_t2, af_fire_t3 + artefacts = af_chem_t2, af_chem_t3, af_grav_t2, af_grav_t3, af_elec_t2, af_elec_t3, af_fire_t2, af_fire_t3, af_special coeff = field_name = gen_smart_terrain_urod_anomaly_spot layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b10_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b10_anomal_zone.ltx index c7c63e623..c0f89c116 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b10_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b10_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b10_af_way_1, jup_b10_af_way_2, jup_b10_af_way_3 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_low, af_class_weak_high + artefacts = af_fire_t0, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t2, af_special coeff = layers_count = 2 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b1_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b1_anomal_zone.ltx index 86e0ec6b3..cd2dd3beb 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b1_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b1_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b211_af_way_1 - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_class_weak_low, af_class_weak_high + artefacts = af_psi_t0, af_psi_t1, af_psi_t2, af_psi_t2 coeff = field_name = jup_b1_zone_field_psychic_average layers_count = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b200_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b200_anomal_zone.ltx index a86502802..1acfd4f76 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b200_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b200_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_y = 10 artefact_ways = jup_b200_art_way - artefacts = af_class_weak_high, af_class_weak_high, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2 + artefacts = af_grav_t0, af_grav_t1, af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t2, af_psi_t2, af_psi_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b201_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b201_anomal_zone.ltx index ec5f151ed..fad959523 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b201_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b201_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b201_art_walk - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2 + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2 coeff = layers_count = 3 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b206_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b206_anomal_zone.ltx index 426bd16dc..6fac1e386 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b206_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b206_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b206_af_way, jup_b206_af_way_2, jup_b206_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2 + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2 coeff = layers_count = 2 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b209_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b209_anomal_zone.ltx index 99e45847f..1c1781216 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b209_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b209_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b209_art_way, jup_b209_af_way_2, jup_b209_af_way_3 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2 + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t2 coeff = layers_count = 2 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b211_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b211_anomal_zone.ltx index 347b17d65..78705a9f3 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b211_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b211_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b211_af_way_1, jup_b211_af_way_2, jup_b211_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2 + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2 coeff = layers_count = 2 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b214_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b214_anomal_zone.ltx index 027f0194e..343e351dc 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b214_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b214_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b214_af_way - artefacts = af_class_junk, af_class_weak_high, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2 + artefacts = af_special, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b25_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b25_anomal_zone.ltx index ae15de342..adad4b4ff 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b25_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b25_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b25_af_way_1, jup_b25_af_way_2, jup_b25_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_high + artefacts = af_chem_t0, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2, af_special coeff = layers_count = 3 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b32_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b32_anomal_zone.ltx index 41b9af99b..be10e44e0 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b32_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_b32_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_b32_af_way, jup_b32_af_way_2 - artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2, af_class_weak_high + artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2, af_elec_t2, af_elec_t0 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_wa_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_wa_anomal_zone.ltx index b692867ba..8f6904abc 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_wa_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/jupiter/anomaly/jup_wa_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = jup_wa_way_1, jup_wa_way_2, jup_wa_way_3, jup_wa_way_4, jup_wa_way_6, jup_wa_way_7, jup_wa_way_8, jup_wa_way_9 - artefacts = af_class_weak_high, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2 + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/limansk/anomaly/lim_2c_01_ls_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/limansk/anomaly/lim_2c_01_ls_anomal_zone.ltx index 405c8f622..6f74815f8 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/limansk/anomaly/lim_2c_01_ls_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/limansk/anomaly/lim_2c_01_ls_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = lim_2c_01_ls_af_way - artefacts = af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t2, af_class_weak_high + artefacts = af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t2 coeff = field_name = lim_2c_01_ls_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_10_10_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_10_10_anomal_zone.ltx index 290ef7cc7..92f2091c5 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_10_10_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_10_10_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_smart_terrain_10_10_af_way, mar_smart_terrain_10_10_af_way_2, mar_smart_terrain_10_10_af_way_3 - artefacts = af_class_weak_low, af_class_weak_low, af_elec_t1 + artefacts = af_elec_t0, af_elec_t1 coeff = field_name = mar_smart_terrain_10_10_field_radioactive_weak layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_11_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_11_3_anomal_zone.ltx index 20ed8180a..e5571b747 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_11_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_11_3_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_smart_terrain_11_3_af_way, mar_smart_terrain_11_3_af_way_2, mar_smart_terrain_11_3_af_way_3 - artefacts = af_class_weak_low, af_fire_t1, af_fire_t1 + artefacts = af_fire_t0, af_fire_t1, af_fire_t1, af_fire_t1 coeff = field_name = mar_smart_terrain_11_3_zone_field_thermal_weak layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_12_2_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_12_2_anomal_zone.ltx index 1ce7437bb..d2f5e3e25 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_12_2_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_12_2_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_smart_terrain_12_2_af_way, mar_smart_terrain_12_2_af_way_2, mar_smart_terrain_12_2_af_way_3 - artefacts = af_class_weak_low, af_class_weak_low, af_elec_t1 + artefacts = af_elec_t0, af_elec_t1 coeff = field_name = mar_smart_terrain_12_2_field_radioactive_weak layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_01_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_01_anomal_zone.ltx index a7f43d4ba..3468e0145 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_01_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_01_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_2c_01_af_way - artefacts = af_class_weak_low, af_chem_t1 + artefacts = af_chem_t0, af_chem_t1 coeff = field_name = mar_2c_01_anomaly_spot layers_count = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_02_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_02_anomal_zone.ltx index 583abbaaa..a1b89cd91 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_02_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_2c_02_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_2c_02_af_way - artefacts = af_class_weak_low, af_class_weak_low, af_psi_t1 + artefacts = af_psi_t0, af_psi_t1 coeff = field_name = mar_2c_02_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_3_anomal_zone.ltx index f55776938..52d195876 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_3_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_art_7 - artefacts = af_class_weak_low, af_chem_t1 + artefacts = af_chem_t0, af_chem_t1 coeff = field_name = mar_zone_field_radioactive_weak_0004 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_7_anomal_zone.ltx index e1ccd6887..55bd89e31 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_3_7_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_art_6 - artefacts = af_class_weak_low, af_class_weak_low, af_grav_t1 + artefacts = af_grav_t0, af_grav_t1 coeff = max_artefacts = 1 respawn_tries = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_8_8_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_8_8_anomal_zone.ltx index 0963f3062..3052205ba 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_8_8_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_8_8_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_y = 10 artefact_ways = mar_smart_terrain_8_8_af_way - artefacts = af_class_weak_low, af_fire_t1 + artefacts = af_fire_t0, af_fire_t1 coeff = field_name = mar_smart_terrain_8_8_field_radioactive_weak layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_base_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_base_anomal_zone.ltx index d0798c04a..1e1f55885 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_base_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/mar_smart_terrain_base_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mar_smart_terrain_base_af_way, mar_smart_terrain_base_af_way_2 - artefacts = af_class_weak_low, af_class_weak_low, af_class_weak_low, af_chem_t1, af_psi_t1 + artefacts = af_chem_t0, af_psi_t0, af_chem_t1, af_psi_t1 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/marsh_wa_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/marsh_wa_anomal_zone.ltx index dd1f7a413..75508f536 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/marsh_wa_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/marsh/anomaly/marsh_wa_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = marsh_wa_way_1, marsh_wa_way_2, marsh_wa_way_3, marsh_wa_way_4, marsh_wa_way_5, marsh_wa_way_6, marsh_wa_way_7 - artefacts = af_class_weak_low, af_class_weak_low, af_class_weak_low, af_chem_t1, af_psi_t1 + artefacts = af_psi_t0, af_chem_t0, af_chem_t1, af_psi_t1 coeff = 1, 1, 1, 1, 1, 1, 1, 1, 1 layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_2c_01_hw_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_2c_01_hw_anomal_zone.ltx index fd480f2a9..98e8a447b 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_2c_01_hw_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_2c_01_hw_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 200 applying_force_y = 100 artefact_ways = mil_2c_01_hw_af_way - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2 + artefacts = af_fire_t1, af_fire_t2 coeff = field_name = mil_2c_01_hw_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_1_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_1_anomal_zone.ltx index f4123b99f..742defa50 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_1_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_1_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mil_zone_field_psychic_strong_1_walk - artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 coeff = field_name = mil_zone_field_psychic_strong_0004 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_6_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_6_anomal_zone.ltx index 9f6dcbeaa..6bc9dc392 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_6_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_2_6_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mil_zone_field_radioactive_strong_1_walk - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_low + artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2 coeff = field_name = mil_zone_field_radioactive_strong_1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_4_7_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_4_7_anomal_zone.ltx index f88848e70..ddb281e72 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_4_7_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_4_7_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mil_zone_field_acid_strong_1_walk - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_low, af_class_junk + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_special coeff = field_name = mil_zone_field_acidic_strong_0001, mil_zone_field_acidic_strong_0000 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_7_4_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_7_4_anomal_zone.ltx index 75309f46e..885ff22c4 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_7_4_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_7_4_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mil_zone_field_radioactive_strong_2_walk - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_low + artefacts = af_grav_t0, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2 coeff = field_name = mil_zone_field_radioactive_strong_3 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_8_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_8_3_anomal_zone.ltx index a62c4a69b..e0ef915e7 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_8_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/military/anomaly/mil_smart_terrain_8_3_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = mil_zone_field_thermal_strong_1_walk - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_low, af_class_junk + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2 coeff = field_name = mil_zone_field_thermal_strong_1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_2_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_2_anomal_zone.ltx index c3a58dd58..c61ad8852 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_2_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_2_anomal_zone.ltx @@ -2,6 +2,6 @@ field_name = pol_zone_field_radioactive_strong_0001 despawn_mean_time = 5 -artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_class_weak_low +artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t0 artefact_ways = pol_anomal_way_1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_3_anomal_zone.ltx index 1eb934c1a..596c0ff48 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pole/anomaly/pol_smart_terrain_1_3_anomal_zone.ltx @@ -2,6 +2,6 @@ field_name = pol_zone_field_radioactive_strong_0001 despawn_mean_time = 5 -artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_class_weak_low +artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_grav_t0, af_psi_t0 artefact_ways = pol_anomal_way_1, pol_anomal_way_2, pol_anomal_way_3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_01_pp_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_01_pp_anomal_zone.ltx index bc3ff5de6..ace3691f4 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_01_pp_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_01_pp_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 20 applying_force_y = 20 artefact_ways = pri_2c_01_pp_af_way - artefacts = af_elec_t1, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t3, af_class_weak_high + artefacts = af_elec_t1, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t2, af_elec_t3 coeff = field_name = pri_2c_01_pp_anomaly_spot max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_02_gt_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_02_gt_anomal_zone.ltx index a990cb7e3..5b399dd4e 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_02_gt_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_02_gt_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 50 applying_force_y = 50 artefact_ways = pri_2c_02_gt_af_way - artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3, af_class_weak_high + artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3 coeff = field_name = pri_2c_02_gt_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_03_wr_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_03_wr_anomal_zone.ltx index 7a81632c1..ceb19b5de 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_03_wr_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_03_wr_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 400 applying_force_y = 10 artefact_ways = pri_2c_03_wr_af_way - artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3 af_psi_t1, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t3, af_class_weak_high + artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3 af_psi_t1, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t3 coeff = field_name = pri_2c_03_wr_anomaly_spot max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_04_o_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_04_o_anomal_zone.ltx index 240b6f64b..b5a360102 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_04_o_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/pripyat/anomaly/pri_2c_04_o_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 250 applying_force_y = 10 artefact_ways = pri_2c_04_o_af_way - artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3 af_psi_t1, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t3, af_class_weak_high + artefacts = af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t2, af_grav_t3 af_psi_t1, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t2, af_psi_t3 coeff = field_name = pri_2c_04_o_anomaly_spot max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_01_bl_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_01_bl_anomal_zone.ltx index 23a0b2154..dbf3a49a1 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_01_bl_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_01_bl_anomal_zone.ltx @@ -3,7 +3,7 @@ artefacts = af_grav_t1, af_grav_t2 coeff = field_name = rad_2c_01_bl_anomaly_spot - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_02_pp_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_02_pp_anomal_zone.ltx index e1c3ca7e0..63210ff3c 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_02_pp_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/radar/anomaly/rad_2c_02_pp_anomal_zone.ltx @@ -4,7 +4,7 @@ artefacts = af_elec_t1, af_elec_t2 coeff = field_name = rad_2c_02_pp_anomaly_spot - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_3_anomal_zone.ltx index d0fba89bc..c8afe5c75 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_3_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_y = 10 artefact_ways = red_anomal_zone_1_artefact_way_1 - artefacts = af_fire_t1, af_fire_t1, af_fire_t2 + artefacts = af_fire_t1, af_fire_t2, af_special coeff = max_artefacts = 1 respawn_tries = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_6_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_6_anomal_zone.ltx index 3f630dc0c..5a748a27f 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_6_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_6_6_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = red_art_way_5, red_art_way_6 - artefacts = af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_class_weak_high + artefacts = af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_special coeff = max_artefacts = 1 respawn_tries = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_monsters_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_monsters_anomal_zone.ltx index e80c64039..c1ea5beff 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_monsters_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/red_forest/anomaly/red_smart_terrain_monsters_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = red_art_way_2 - artefacts = af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_class_weak_high + artefacts = af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t2, af_special coeff = max_artefacts = 1 respawn_tries = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_01_tunnel_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_01_tunnel_anomal_zone.ltx index 154da06f7..b0988ade7 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_01_tunnel_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_01_tunnel_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 50 applying_force_y = 20 artefact_ways = ros_2c_01_tunnel_af_way - artefacts = af_class_weak_low, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 + artefacts = af_elec_t0, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 coeff = field_name = ros_2c_01_tunnel_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_02_ct_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_02_ct_anomal_zone.ltx index a771554dd..6fcc5747c 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_02_ct_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_02_ct_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 50 applying_force_y = 200 artefact_ways = ros_2c_02_crispy_train_af_way - artefacts = af_class_weak_low, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 + artefacts = af_elec_t0, af_elec_t0, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 coeff = field_name = ros_2c_02_crispy_train_anomaly_spot layers_count = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_03_yc_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_03_yc_anomal_zone.ltx index ee2f19009..9058e9b07 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_03_yc_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/rostok/anomaly/ros_2c_03_yc_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 20 applying_force_y = 10 artefact_ways = ros_2c_03_yc_af_way - artefacts = af_class_weak_low, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2 + artefacts = af_fire_t0, af_fire_t0, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_01_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_01_anomal_zone.ltx index fa64ffe61..785e44247 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_01_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_01_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 20 applying_force_y = 20 artefact_ways = trc_2c_01_rift_af_way - artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_class_weak_low + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t0, af_psi_t0 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_02_chem_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_02_chem_anomal_zone.ltx index 919a1401f..687cf1607 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_02_chem_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_02_chem_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_xz = 20 artefact_ways = trc_2c_02_chem_af_way - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_low + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t0 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_03_desolation_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_03_desolation_anomal_zone.ltx index edc7e4354..a2972d66c 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_03_desolation_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_2c_03_desolation_anomal_zone.ltx @@ -2,10 +2,10 @@ applying_force_xz = 20 applying_force_y = 20 artefact_ways = trc_2c_03_desolation_af_way - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_low + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t0 coeff = layers_count = 1 - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_sim_13_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_sim_13_anomal_zone.ltx index dcc2d9c5d..e3b15df8b 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_sim_13_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/trucks_cemetery/anomaly/trc_sim_13_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = trc_sim_13_af_way, trc_sim_13_af_way_2 - artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_class_weak_low + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t0, af_psi_t0 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_2c_01_cd_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_2c_01_cd_anomal_zone.ltx index 4ad0adc2c..0bd58bb7d 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_2c_01_cd_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_2c_01_cd_anomal_zone.ltx @@ -2,7 +2,7 @@ applying_force_xz = 20 applying_force_y = 50 artefact_ways = yan_2c_01_cd_af_way - artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_class_weak_low + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t0 coeff = field_name = yan_2c_01_cd_anomaly_spot max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_2_5_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_2_5_anomal_zone.ltx index 1d5152dcd..90d8d68f8 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_2_5_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_2_5_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = yan_art_way_2 - artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_class_weak_low, af_class_junk + artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t0, af_elec_t0 coeff = field_name = yan_zone_field_radioactive_weak_0000 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_4_2_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_4_2_anomal_zone.ltx index 6e895be6c..8f1c2d314 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_4_2_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_4_2_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = yan_art_way_4 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_class_weak_low + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t0, af_fire_t0 coeff = 1 field_name = yan_zone_field_thermal_average max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_5_3_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_5_3_anomal_zone.ltx index 3d44207ad..0abe1c887 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_5_3_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_5_3_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = yan_art_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_class_weak_low + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t0, af_chem_t0 coeff = field_name = yan_zone_field_acidic_strong, yan_zone_field_acidic_weak_0000 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_zombi_spawn_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_zombi_spawn_anomal_zone.ltx index a40f3f362..f39a375c0 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_zombi_spawn_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/yantar/anomaly/yan_smart_terrain_zombi_spawn_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = yan_art_way_1 - artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_class_weak_low + artefacts = af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t0, af_elec_t0 coeff = field_name = yan_zone_field_radioactive_weak_0002 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b100_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b100_anomal_zone.ltx index 29f7d3595..a48165f11 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b100_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b100_anomal_zone.ltx @@ -3,7 +3,7 @@ artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t1, af_elec_t2 coeff = layers_count = 1 - max_artefacts = 1 + max_artefacts = 2 respawn_tries = 1 start_artefact = diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b101_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b101_anomal_zone.ltx index dad9e16d4..d88a2ffd4 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b101_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b101_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b101_af_way, zat_b101_af_way_2, zat_b101_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_high + artefacts = af_chem_t0, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2 coeff = field_name = zat_b101_zone_field_acidic_weak layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b14_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b14_anomal_zone.ltx index b75e2a99d..a016bd158 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b14_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b14_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b14_af_way, zat_b14_af_way_2, zat_b14_af_way_3 - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_high + artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2 coeff = field_name = zat_b14_zone_field_radioactive_weak layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b20_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b20_anomal_zone.ltx index 5e7a26ac2..1e8a0224b 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b20_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b20_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b20_af_way_1, zat_b20_af_way_2, zat_b20_af_way_3 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_high + artefacts = af_fire_t0, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t2 coeff = layers_count = 3 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b39_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b39_anomal_zone.ltx index 1037c4a51..4de16cec5 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b39_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b39_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b39_af_way, zat_b39_af_way_2, zat_b39_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_high + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2, af_chem_t0 coeff = field_name = zat_b39_zone_field_acidic_weak, zat_b39_zone_field_acidic_average, zat_b39_zone_field_acidic_strong, zat_b39_zone_field_psychic_average layers_count = 3 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_acid.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_acid.ltx index ab43baac6..4827f2dc8 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_acid.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_acid.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b44_af_way_2, zat_b44_af_way_3 - artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_class_weak_high + artefacts = af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t1, af_chem_t2, af_chem_t2, af_chem_t0 coeff = layers_count = 2 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_gravi.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_gravi.ltx index aa4f55392..41cac65f1 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_gravi.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b44_anomal_zone_gravi.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b44_af_way_1, zat_b44_af_way_4 - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_high + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_grav_t2, af_grav_t0 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b53_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b53_anomal_zone.ltx index 45c5db710..6fab2e8a3 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b53_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b53_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b53_af_way, zat_b53_af_way_2, zat_b53_af_way_3 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_high + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t2, af_fire_t0 coeff = layers_count = 3 max_artefacts = 2 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b54_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b54_anomal_zone.ltx index 90c3b1c00..2618cd3f0 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b54_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b54_anomal_zone.ltx @@ -1,7 +1,7 @@ [anomal_zone] applying_force_y = 200 artefact_ways = zat_b54_af_way - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_high + artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b55_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b55_anomal_zone.ltx index f50ca93e0..71ebdfac6 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b55_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b55_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b55_af_way, zat_b55_af_way_2 - artefacts = af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t1, af_psi_t2, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2, af_class_weak_high + artefacts = af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t1, af_grav_t2 coeff = layers_count = 1 max_artefacts = 1 diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b56_anomal_zone.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b56_anomal_zone.ltx index 511c08b1b..9c53a3ad1 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b56_anomal_zone.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/scripts/zaton/anomaly/zat_b56_anomal_zone.ltx @@ -1,6 +1,6 @@ [anomal_zone] artefact_ways = zat_b56_af_way, zat_b56_af_way_2, zat_b56_af_way_3 - artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_class_weak_high + artefacts = af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t1, af_fire_t2, af_fire_t2, af_fire_t0 coeff = layers_count = 3 max_artefacts = 1 From f4a7cb0fd621939d0299bc89264760f9aa13c4c7 Mon Sep 17 00:00:00 2001 From: Grokitach Date: Sat, 30 May 2026 18:43:27 +0200 Subject: [PATCH 13/14] Restored artefacts reduced weight (I don't know why it was disabled) --- ...ystem_zzzzzzzzzzzzzzzzz_grok_artifacts.ltx | 140 +++++++++--------- 1 file changed, 70 insertions(+), 70 deletions(-) diff --git a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/mod_system_zzzzzzzzzzzzzzzzz_grok_artifacts.ltx b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/mod_system_zzzzzzzzzzzzzzzzz_grok_artifacts.ltx index c9a659d49..212cb9339 100644 --- a/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/mod_system_zzzzzzzzzzzzzzzzz_grok_artifacts.ltx +++ b/G.A.M.M.A/modpack_addons/G.A.M.M.A. Artefacts Reinvention/gamedata/configs/mod_system_zzzzzzzzzzzzzzzzz_grok_artifacts.ltx @@ -1,6 +1,6 @@ ![af_itcher]:af_base cost = 36800 -;--inv_weight = 0.2 +inv_weight = 0.2 radiation_restore_speed = 0.00 burn_cap = 0.05 ![af_itcher_absorbation]:af_base_absorbation @@ -12,7 +12,7 @@ radiation_immunity = 0.0 ![af_pin]:af_base cost = 42200 -;--inv_weight = 0.25 +inv_weight = 0.25 radiation_restore_speed = 0.00 burn_cap = 0.10 telepatic_cap = 0.05 @@ -25,7 +25,7 @@ radiation_immunity = -0.000475 ![af_cristall]:af_base -;--inv_weight = 0.68 +inv_weight = 0.68 cost = 63600 radiation_restore_speed = 0.00 power_restore_speed = 0 @@ -41,7 +41,7 @@ radiation_immunity = 0.0 ![af_fireball]:af_base cost = 93600 -;--inv_weight = 0.92 +inv_weight = 0.92 af_rank = 2 radiation_restore_speed = 0.00 burn_cap = 0.20 @@ -59,7 +59,7 @@ radiation_immunity = 0 ![af_blood]:af_base cost = 44400 -;--inv_weight = 0.305 +inv_weight = 0.305 bleeding_restore_speed = 0.004082 radiation_restore_speed = 0.00 chemical_burn_cap = 0.05 @@ -72,7 +72,7 @@ radiation_immunity = 0.0 ![af_mincer_meat]:af_base cost = 62600 -;--inv_weight = 0.31 +inv_weight = 0.31 radiation_restore_speed = 0.00 bleeding_restore_speed = -0.002045 chemical_burn_cap = 0.05 @@ -88,7 +88,7 @@ radiation_immunity = 0.0 ![af_bracelet]:af_base cost = 75880 -;--inv_weight = 0.25 +inv_weight = 0.25 radiation_restore_speed = 0.00 chemical_burn_cap = 0.15 telepatic_cap = 0.05 @@ -103,7 +103,7 @@ radiation_immunity = 0.0 ![af_baloon]:af_base cost = 94800 -;--inv_weight = 0.72 +inv_weight = 0.72 af_rank = 2 radiation_restore_speed = 0.00 power_restore_speed = 0 @@ -120,7 +120,7 @@ radiation_immunity = 0.00129 ![af_electra_sparkler]:af_base cost = 43200 -;--inv_weight = 0.04 +inv_weight = 0.04 radiation_restore_speed = 0.00 shock_cap = 0.05 ![af_electra_sparkler_absorbation]:af_base_absorbation @@ -132,7 +132,7 @@ radiation_immunity = 0 ![af_sponge]:af_base cost = 60640 -;--inv_weight = 0.56 +inv_weight = 0.56 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00019 ;-- 10 explosion_cap = 0.10 @@ -147,7 +147,7 @@ radiation_immunity = -0.00095 ![af_ring]:af_base cost = 84440 -;--inv_weight = 0.275 +inv_weight = 0.275 radiation_restore_speed = 0.00 power_restore_speed = 0.00100 shock_cap = 0.10 @@ -160,7 +160,7 @@ radiation_immunity = 0.0 ![af_electra_flash]:af_base cost = 97800 -;--inv_weight = 0.04 +inv_weight = 0.04 af_rank = 2 radiation_restore_speed = 0.00 telepatic_cap = 0.10 @@ -178,7 +178,7 @@ radiation_immunity = 0.0013 ![af_cristall_flower]:af_base cost = 45600 -;--inv_weight = 1.27 +inv_weight = 1.27 radiation_restore_speed = 0.00 chemical_burn_cap = 0.05 ![af_cristall_flower_absorbation]:af_base_absorbation @@ -190,7 +190,7 @@ radiation_immunity = 0.0 ![af_lobster_eyes]:af_base cost = 71280 -;--inv_weight = 0.93 +inv_weight = 0.93 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.0175 telepatic_cap = 0.15 @@ -205,7 +205,7 @@ radiation_immunity = -0.000475 ![af_electra_moonlight]:af_base cost = 87200 -;--inv_weight = 0.09 +inv_weight = 0.09 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00019 telepatic_cap = 0.10 @@ -219,7 +219,7 @@ radiation_immunity = -0.00095 ![af_black_spray]:af_base cost = 110640 -;--inv_weight = 0.22 +inv_weight = 0.22 af_rank = 2 radiation_restore_speed = 0.00 bleeding_restore_speed = -0.004082 @@ -237,7 +237,7 @@ radiation_immunity = 0.00043 ![af_medusa]:af_base cost = 49800 -;--inv_weight = 0.78 +inv_weight = 0.78 radiation_restore_speed = 0.00 ![af_medusa_absorbation]:af_base_absorbation burn_immunity = 0 @@ -251,7 +251,7 @@ radiation_immunity = 0.0 ![af_vyvert]:af_base cost = 71000 -;--inv_weight = 1.01 +inv_weight = 1.01 radiation_restore_speed = 0.00 bleeding_restore_speed = -0.004082 wound_cap = 0.05 @@ -268,7 +268,7 @@ radiation_immunity = -0.000475 ![af_empty]:af_base cost = 85520 -;--inv_weight = 0.19 +inv_weight = 0.19 radiation_restore_speed = 0.00 satiety_restore_speed = 0 power_restore_speed = -0.00070 @@ -287,7 +287,7 @@ radiation_immunity = -0.000475 ![af_full_empty]:af_base cost = 143300 -;--inv_weight = 1.80 +inv_weight = 1.80 af_rank = 2 radiation_restore_speed = 0.00 satiety_restore_speed = 0 @@ -312,7 +312,7 @@ radiation_immunity = -0.001425 ![af_night_star]:af_base cost = 66400 -;--inv_weight = 0.2075 +inv_weight = 0.2075 radiation_restore_speed = 0.00 additional_inventory_weight = 6.0 additional_inventory_weight2 = 6.0 @@ -325,7 +325,7 @@ radiation_immunity = 0.00043 ![af_gravi]:af_base cost = 95000 -;--inv_weight = 0.285 +inv_weight = 0.285 radiation_restore_speed = 0.00 ;-- radiation_protection = 0.00019 explosion_cap = 0.10 @@ -342,7 +342,7 @@ fire_wound_immunity = -0.125 ![af_gold_fish]:af_base cost = 132400 -;--inv_weight = 0.745 +inv_weight = 0.745 af_rank = 2 radiation_restore_speed = 0.00 ;-- radiation_protection = 0 @@ -362,7 +362,7 @@ fire_wound_immunity = 0.097431 ![af_dummy_glassbeads]:af_base cost = 49600 -;--inv_weight = 0.86 +inv_weight = 0.86 bleeding_restore_speed = 0.004082 radiation_restore_speed = 0.00 burn_cap = 0.05 @@ -374,7 +374,7 @@ radiation_immunity = 0.0 ![af_eye]:af_base cost = 73800 -;--inv_weight = 0.78 +inv_weight = 0.78 radiation_restore_speed = 0.00 bleeding_restore_speed = 0.00612 telepatic_cap = 0.10 @@ -387,7 +387,7 @@ radiation_immunity = 0.0 ![af_fire]:af_base cost = 93850 -;--inv_weight = 0.8 +inv_weight = 0.8 af_rank = 2 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00028 ;-- 15 @@ -404,7 +404,7 @@ radiation_immunity = -0.001425 ![af_dummy_battery]:af_base -;--inv_weight = 0.09 +inv_weight = 0.09 cost = 54400 radiation_restore_speed = 0.00 power_restore_speed = 0.00066 @@ -418,7 +418,7 @@ radiation_immunity = 0.0 ![af_dummy_dummy]:af_base cost = 74400 -;--inv_weight = 0.09 +inv_weight = 0.09 radiation_restore_speed = 0.00 power_restore_speed = 0 health_restore_speed = -0.0006 @@ -432,7 +432,7 @@ radiation_immunity = 0.00086 ![af_ice]:af_base cost = 102800 -;--inv_weight = 0.135 +inv_weight = 0.135 af_rank = 2 radiation_restore_speed = 0.00 ;-- radiation_protection = 0.00028 ;-- 15 @@ -448,7 +448,7 @@ radiation_immunity = 0.00178125 ![af_soul]:af_base cost = 52400 -;--inv_weight = 0.33 +inv_weight = 0.33 radiation_restore_speed = 0.00 health_restore_speed = 0.0003 power_restore_speed = -0.00035 @@ -460,7 +460,7 @@ radiation_immunity = 0.00043 ![af_fuzz_kolobok]:af_base cost = 81200 -;--inv_weight = 0.35 +inv_weight = 0.35 radiation_restore_speed = 0.00 health_restore_speed = 0.0006 power_restore_speed = -0.0007 @@ -473,7 +473,7 @@ radiation_immunity = 0.00086 ![af_glass]:af_base cost = 108800 -;--inv_weight = 0.32 +inv_weight = 0.32 af_rank = 2 radiation_restore_speed = 0.00 ;-- radiation_protection = 0.00028 ;-- 15 @@ -489,7 +489,7 @@ radiation_immunity = 0.0013 ![af_compass]:af_base cost = 149000 -;--inv_weight = 1.89 +inv_weight = 1.89 radiation_restore_speed = 0.00 power_restore_speed = -0.00070 bleeding_restore_speed = -0.004082 @@ -511,7 +511,7 @@ radiation_immunity = -0.00185 ![af_oasis_heart]:af_base cost = 149000 -;--inv_weight = 0.69 +inv_weight = 0.69 radiation_restore_speed = 0.00 ;-- radiation_protection = 0.07 ;-- 20 health_restore_speed = 0.0012 @@ -528,7 +528,7 @@ radiation_immunity = 0.00173 ![af_monolith]:af_base cost = 149000 -;--inv_weight = 0.2375 +inv_weight = 0.2375 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00028 ;-- 15 burn_cap = 0.20 @@ -549,7 +549,7 @@ radiation_immunity = -0.0023 ![af_ah_f1]:af_base cost = 149000 -;--inv_weight = 0.2375 +inv_weight = 0.2375 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00028 ;-- 15 telepatic_cap = 0.10 @@ -569,7 +569,7 @@ radiation_immunity = 0 ![af_tlf_prometheus]:af_base cost = 149000 -;--inv_weight = 0.2375 +inv_weight = 0.2375 radiation_restore_speed = 0.00 ;-- radiation_protection = -0.00028 ;-- 15 bleeding_restore_speed = 0.00612 @@ -591,7 +591,7 @@ radiation_immunity = -0.001425 ![af_death_lamp]:af_base cost = 150000 -;--inv_weight = 6.66 +inv_weight = 6.66 af_rank = 2 @@ -599,132 +599,132 @@ af_rank = 2 ![af_black] -;--inv_weight = 0.45 +inv_weight = 0.45 cost = 5400 ![af_dragon_eye] -;--inv_weight = 0.38 +inv_weight = 0.38 cost = 3900 ![af_fire_loop] -;--inv_weight = 0.56 +inv_weight = 0.56 cost = 5080 ![af_ball] -;--inv_weight = 0.19 +inv_weight = 0.19 cost = 2800 ![af_fonar] -;--inv_weight = 0.31 +inv_weight = 0.31 cost = 5080 ![af_tapeworm] -;--inv_weight = 0.28 +inv_weight = 0.28 cost = 3600 ![af_moh] -;--inv_weight = 0.14 +inv_weight = 0.14 cost = 1800 ![af_serofim] -;--inv_weight = 0.2 +inv_weight = 0.2 cost = 2800 ![af_elektron] -;--inv_weight = 2.0 +inv_weight = 2.0 cost = 5900 ![af_kogot] -;--inv_weight = 0.21 +inv_weight = 0.21 cost = 2110 ![af_generator] -;--inv_weight = 1.36 +inv_weight = 1.36 cost = 6520 ![af_black_angel] -;--inv_weight = 1.28 +inv_weight = 1.28 cost = 6700 ![af_grapes] -;--inv_weight = 1.59 +inv_weight = 1.59 cost = 5300 ![af_skull_miser] -;--inv_weight = 0.320 +inv_weight = 0.320 cost = 2200 ![af_star_phantom] cost = 5400 -;--inv_weight = 1.36 +inv_weight = 1.36 ![af_medallion] cost = 6800 -;--inv_weight = 0.98 +inv_weight = 0.98 ![af_peas] cost = 2485 -;--inv_weight = 0.27 +inv_weight = 0.27 ![af_kislushka] -;--inv_weight = 0.39 +inv_weight = 0.39 cost = 2200 ![af_zhelch] -;--inv_weight = 0.4 +inv_weight = 0.4 cost = 4000 ![af_sandstone] cost = 4950 -;--inv_weight = 0.74 +inv_weight = 0.74 ![af_fountain] -;--inv_weight = 0.44 +inv_weight = 0.44 cost = 4700 ![af_spaika] cost = 5000 -;--inv_weight = 0.5 +inv_weight = 0.5 ![af_signet] cost = 3300 -;--inv_weight = 0.2 +inv_weight = 0.2 ![af_repei] -;--inv_weight = 0.3 +inv_weight = 0.3 cost = 3000 ![af_bat] cost = 8600 -;--inv_weight = 0.6 +inv_weight = 0.6 ![af_sun] cost = 6200 -;--inv_weight = 1.16 +inv_weight = 1.16 ![af_ear] cost = 1900 -;--inv_weight = 0.16 +inv_weight = 0.16 ![af_chelust] cost = 6400 -;--inv_weight = 1.9 +inv_weight = 1.9 ![af_atom] cost = 2800 -;--inv_weight = 0.22 +inv_weight = 0.22 ![af_lighthouse] cost = 6500 -;--inv_weight = 0.49 +inv_weight = 0.49 ![af_cell] cost = 6000 -;--inv_weight = 0.6 +inv_weight = 0.6 ![af_cocoon] cost = 4900 -;--inv_weight = 0.34 +inv_weight = 0.34 From 469d2c3d5d6e9eb343798e5073c0e70dcf40a012 Mon Sep 17 00:00:00 2001 From: Chingis Date: Wed, 17 Jun 2026 05:58:15 +0200 Subject: [PATCH 14/14] docs: fix README typos --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 30a94344f..e2b8ff664 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Description -G.A.M.M.A. stands for Grok's Automated Modular Modpack for Anomaly. This modpack for the 100% free and standalone STALKER Anomaly changes *every* aspect of the game, from the entire economy to the minute detail statistic of every gun and artefact. +G.A.M.M.A. stands for Grok's Automated Modular Modpack for Anomaly. This modpack for the 100% free and standalone STALKER Anomaly changes *every* aspect of the game, from the entire economy to the minute detail statistics of every gun and artefact. From a technical point of view, the main motivation behind this project is to provide an easy to install, automatically updated and modular modding platform for Stalker Anomaly. From a gameplay point of view, the default parameters and mods activated with G.A.M.M.A. aim at providing a balanced survival, scavenging, cooking, crafting and repairing focused experience with a streamlined gameplay. GAMMA aims at creating a meaningful and enjoyable sense of progression in the sandbox Chernobyl Exclusion Zone of STALKER Anomaly. @@ -44,7 +44,7 @@ Steam: https://store.steampowered.com/franchise/stalker GOG: https://www.gog.com/en/game/stalker_shadow_of_chernobyl | https://www.gog.com/en/game/stalker_clear_sky | https://www.gog.com/en/game/stalker_call_of_pripyat -GAMMA is a large project using the work of many talented modders, and each and everyone one of them are contributing to making Stalker Anomaly a better experience. You can check the entire modlist, modder names and mod pages link used by GAMMA here: +GAMMA is a large project using the work of many talented modders, and each and every one of them are contributing to making Stalker Anomaly a better experience. You can check the entire modlist, modder names and mod pages link used by GAMMA here: https://stalker-gamma.com/api/list I would like to thank all the modders involved in this project by making all the GAMMA addons free to use, edit and repost with modifications as long as the source is indicated (original addon author, from Stalker GAMMA). For numbered addons (105-), original authors must be contacted before repost and modifications. Repost of unmodified individual parts of this project are not recommended and may harm the community in the long run because updates happen quite often in this repository and it is thus better to directly post links to the relevant files stored here. @@ -52,4 +52,4 @@ I would like to thank all the modders involved in this project by making all the ## Other Projects -A similar logic was applied to a modpack built for Dragon's Dogma 2 called "Dragon's Dogamma", for whic the entire gear looting system as been remade to put more emphasis on exploration and boss hunting instead of buying gear from shops: https://github.com/Grokitach/Dragons-Dogamma +A similar logic was applied to a modpack built for Dragon's Dogma 2 called "Dragon's Dogamma", for which the entire gear looting system has been remade to put more emphasis on exploration and boss hunting instead of buying gear from shops: https://github.com/Grokitach/Dragons-Dogamma