[1.3.0][5256]British Raj: Clamp Down on Corrption NF is useless now.

  • 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.

Warden2054

Second Lieutenant
80 Badges
Jul 23, 2015
186
76
  • Crusader Kings II
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Charlemagne
  • Steel Division: Normandy 44
  • Hearts of Iron IV: No Step Back
  • Shadowrun: Dragonfall
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Field Marshal
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Cadet
  • Stellaris Sign-up
  • Hearts of Iron IV Sign-up
  • Surviving Mars: Digital Deluxe Edition
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Imperator: Rome
  • Surviving Mars
  • Hearts of Iron IV: Death or Dishonor
  • Cities: Skylines - Green Cities
  • Europa Universalis IV: Cradle of Civilization
  • Imperator: Rome Deluxe Edition
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Rule Britannia
  • Shadowrun Returns
  • Europa Universalis IV: Golden Century
  • Europa Universalis IV
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome Sign Up
  • Surviving Mars: First Colony Edition
  • Hearts of Iron IV: La Resistance
  • Surviving Mars: First Colony Edition
  • Prison Architect
  • Europa Universalis IV: Dharma
  • Victoria 2
  • Crusader Kings II: Conclave
  • Cities: Skylines
  • Cities: Skylines Deluxe Edition
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Cities: Skylines - After Dark
Clamp Down on Corrption is NF to remove 'risk of famine' national spirit, and you can pick that when you are dominion or free nation.

Code:
#RAJ gets famine - Trigger/randomness event
country_event = {
    id = tfv_raj.20
    
    hidden = yes
    
    immediate = {
        country_event = { id = tfv_raj.21 days = 300 }
    }

    trigger = {
        compare_autonomy_state < autonomy_dominion
        has_capitulated = no
        NOT = { surrender_progress > 0.5 }
        original_tag = RAJ
        has_idea = RAJ_risk_of_famine
        has_war = yes       
    }

    mean_time_to_happen = { days = 150 }

}

#RAJ gets famine - Actual event
country_event = {
    id = tfv_raj.21
    title = tfv_raj.21.t
    desc = tfv_raj.21.desc    #
    picture = GFX_report_event_indian_famine
    
    is_triggered_only = yes

    fire_only_once = yes

    immediate = {
        hidden_effect = {
            remove_ideas = RAJ_risk_of_famine
            add_timed_idea = { idea = RAJ_famine days = 365 }
            news_event = { id = news.272 }
            news_event = { id = news.273 days = 365 }
        }
    }
            
    trigger = {
        compare_autonomy_state < autonomy_dominion
        has_capitulated = no
        NOT = { surrender_progress > 0.5 }
        original_tag = RAJ
        has_idea = RAJ_risk_of_famine
    }

    option = {
        name = tfv_raj.21.a
        effect_tooltip = {
            remove_ideas = RAJ_risk_of_famine
            add_timed_idea = { idea = RAJ_famine days = 365 }
        }
    }
}

But famine event can only occur when Raj is colony, puppet, or integrated puppet. If Raj is colony, Raj can't pick the NF. However if Raj is dominion or free nation, famine event don't happen whether pick the NF or not.
 
Upvote 0