[GS] Ok so specific question, is there a way to specifically adjust Barbarian spawn rate and aggressiveness in a mod?

Mark388

Chieftain
Joined
Sep 26, 2023
Messages
8
So to make things a bit more understandable... I created a map mod, but I am finding the barbarians to be quite aggressive on Chieftain level of the game like they are perhaps Prince level. So I am guessing during the creation of the map, the game decided to up the barbarian spawn rate because of less land..

Is there a way to manually adjust this in the code? I find no table for it on the map mod..
 
Hey Mark388,

You can absolutely modify this, lots of mod examples such as "Nere's Better Barbarian Clans mode", "Sukritact's Barbarians--", "Revenge of the Barbarians", and "Less Advanced Barbarians". Do a Steam Workshop search for "Barbarians"!

Here are just some of the things you can play with:

GlobalParameters

Name="BARBARIAN_BOLDNESS_PER_CAMP_ATTACK" Value="-30"
Name="BARBARIAN_BOLDNESS_PER_KILL" Value="15"
Name="BARBARIAN_BOLDNESS_PER_SCOUT_LOST" Value="-5"
Name="BARBARIAN_BOLDNESS_PER_TURN" Value="2"
Name="BARBARIAN_BOLDNESS_PER_UNIT_LOST" Value="-10"
Name="BARBARIAN_CAMP_MAX_PER_MAJOR_CIV" Value="3"
Name="BARBARIAN_CAMP_MINIMUM_DISTANCE_ANOTHER_CAMP" Value="7"
Name="BARBARIAN_CAMP_ODDS_OF_NEW_CAMP_SPAWNING" Value="2"
Name="EXPERIENCE_BARB_SOFT_CAP" Value="1"
Name="BARBARIAN_TECH_PERCENT" Value="50"
Name="BARBARIAN_LOWER_THROTTLE_PER_DIFFICULTY" Value="3"
Name="BARBARIAN_MAX_THROTTLE_PER_RAID" Value="18"
Name="BARBARIAN_CAMP_MINIMUM_DISTANCE_CITY" Value="4"
Name="BARBARIAN_CAMP_COASTAL_SPAWN_ROLL" Value="6"
Name="BARBARIAN_CAMP_EXTRA_DISTANCE_PER_LOW_DIFFICULTY" Value="1"
Name="BARBARIAN_CAMP_FIRST_TURN_PERCENT_OF_TARGET_TO_ADD" Value="33"
Name="BARBARIAN_DEFENSE_ALL_UNITS" Value="4"
Name="BARBARIAN_DEFENSE_RANGED_UNITS" Value="1"
Name="BARBARIAN_NUM_RANDOM_UNIT_CHOICES" Value="3"
Name="BARBARIAN_RELEASE_VARIATION" Value="20"
Name="EXPERIENCE_MAX_BARB_LEVEL" Value="2"
Name="MAYHEM_CITY_DEATH_WITH_BARBARIANS" Value="2.0"
Name="MAYHEM_DISTRICT_DEATH_WITH_BARBARIANS" Value="0.5"
Name="MAYHEM_UNIT_COMBAT_WITH_BARBARIANS" Value="0.5"
Name="MAYHEM_UNIT_DEATH_WITH_BARBARIANS" Value="0.5"
 
Top Bottom