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

Xerberous

Captain
35 Badges
Jan 27, 2018
345
677
  • Cities: Skylines - Green Cities
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Battle for Bosporus
  • Stellaris: Federations
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Stellaris: Distant Stars
  • Hearts of Iron IV: Expansion Pass
  • Cities: Skylines - Parklife
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Hearts of Iron IV: Expansion Pass
  • Warlock: Master of the Arcane
  • Cities: Skylines
  • Hearts of Iron IV: Death or Dishonor
  • Cities: Skylines - Mass Transit
  • Hearts of Iron IV: Together for Victory
  • Cities: Skylines - Natural Disasters
  • Stellaris: Leviathans Story Pack
  • Cities: Skylines - After Dark
  • Cities: Skylines - Snowfall
  • Stellaris: Digital Anniversary Edition
  • Hearts of Iron IV: Colonel
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Expansion Pass
  • Cities: Skylines Deluxe Edition
  • Stellaris
  • Hearts of Iron IV: La Resistance
  • Age of Wonders III
  • Stellaris: Megacorp
  • Stellaris - Path to Destruction bundle
  • Stellaris: Synthetic Dawn
Hallo

I've read somewhere in the forum that there is decision to integrate Austria peacefully as monarchist Germany.

Are any details, perquisites, triggers etc. known yet?
 

Eaxy

Corporal
32 Badges
Apr 29, 2017
41
0
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Res Publica
  • Cities: Skylines - After Dark
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Crusader Kings II
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Rights of Man
  • Cities: Skylines - Natural Disasters
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Colonel
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Golden Century
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis 4: Emperor
  • Hearts of Iron IV: Field Marshal
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Cities: Skylines
  • Victoria 2
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Cradle of Civilization
  • Age of Wonders III
  • Cities: Skylines Deluxe Edition
  • Europa Universalis IV: Cossacks
  • Darkest Hour
I searched the file for it and found something.

Code:
# German event for Austrian referendum to join Democratic Germany
country_event = {
    id = wtt_germany.53
    title = wtt_germany.53.t
    desc = wtt_germany.53.desc
    picture = GFX_report_event_generic_parliament

    trigger = {
        original_tag = GER
        OR = {
            has_government = democratic
            has_government = neutrality
        }
        is_in_faction_with = AUS
        OR = {
            AUS = { has_government = democratic }
            AUS = { has_government = neutrality }
        }
    }

    mean_time_to_happen = { days = 60 }

    fire_only_once = yes
   
    # Yes
    option = {
        name = wtt_germany.53.a
        ai_chance = {
            factor = 90
        }
        AUS = { country_event = { id = wtt_germany.54 days = 1 random = 6 } }
    }

    # No
    option = {
        name = wtt_germany.53.b
        ai_chance = {
            factor = 10
        }
       
    }
}

# Austrian event for Austrian referendum to join Democratic Germany
country_event = {
    id = wtt_germany.54
    title = wtt_germany.54.t
    desc = wtt_germany.54.desc
    picture = GFX_report_event_generic_parliament

    is_triggered_only = yes
   
    # Yes we will join them
    option = {
        name = wtt_germany.54.a
        ai_chance = {
            factor = 100
        }
        custom_effect_tooltip = GAME_OVER_TT
        GER = { country_event = { id = wtt_germany.55 days = 1 random = 6 } }
    }

    # No we will remain independent
    option = {
        name = wtt_germany.54.b  
    }
}

# German confirmation event for Austrian referendum to join Democratic Germany
country_event = {
    id = wtt_germany.55
    title = wtt_germany.55.t
    desc = wtt_germany.55.desc
    picture = GFX_report_event_generic_peaceful_annexation

    is_triggered_only = yes
   
    # Excellent
    option = {
        name = wtt_germany.55.a
        4 = {
            if = {
                limit = { is_owned_by = AUS }
                add_core_of = GER
            }
        }
        152 = {
            if = {
                limit = { is_owned_by = AUS }
                add_core_of = GER
            }
        }
        153 = {
            if = {
                limit = { is_owned_by = AUS }
                add_core_of = GER
            }
        }
        AUS = {
            every_unit_leader = {
                set_nationality = GER
            }
        }
        annex_country = { target = AUS transfer_troops = yes }
        hidden_effect = { news_event = { id = wtt_news.18 hours = 6 } }
    }
}