• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.
Is there a way to mod base happiness/ conversion rate for pops? Im trying to increase the unrest gained from wrong culture/religion
That's probably in the defines.txt file.
Code:
NPop = {
    PROMOTE_DEMOTE_THRESHOLD = 0.025    #percentage above desired ratio before demote.
    HAPPYNESS_FOR_UNREST_THRESHOLD = 0.5
    WRONG_CULTURE_GROUP_HAPPYNESS = -0.3
    WRONG_CULTURE_HAPPYNESS = -0.1
    WRONG_RELIGION_HAPPNESS = -0.05
    WRONG_GOVERNOR_RELIGION_HAPPYNESS = -0.1
        
    UNREST_GENERATION = 0.5
    UNREST_SCALE = 20 #Basically UNREST_GENERATION * UNREST_SCALE..
    
    MIGRATE_MINIMUM = 3
    MIGRATE_MAXMIMUM = 20
    
    DEATH_BEFORE_SLAVERY = 0.33
    
    ATTRACTION_DIFFERENCE_THRESHOLD = 2
    ATTRACTION_INCOMING_MODIFIER = -0.5
    ASSIMILATE_DIFF_RELIGION_PENALTY = -0.33
    CONVERT_DIFF_CULTURE_PENALTY = -0.20
    POP_FOOD_REQUIREMENT = 0.2
    DEFAULT_FOOD_CAPACITY = 500
    
}
This section should contain basically everything you want to edit.