Skip to content

Commit

Permalink
Port "The Roman Question" from HPM 0.4.5
Browse files Browse the repository at this point in the history
The motivation of the original PR arkhometha/Historical-Project-Mod#3:

> Add Roman Question follow-up to Il Risorgimento.
>
> Rather than outright hand over all provinces to Italy, send a Roman
Question follow-up event to the Papal States. This gives them an
opportunity to refuse.
>
> The historical Roman Question was a long process. This change does not
reflect that: it is merely a gameplay-oriented, stopgap solution.
Without it PAP eventually faces a functional game-over if Italy hasn't
been formed by decision, as long as any Italian minor is alive no matter
how insignificant.
>
> AI weights ensure a (very) minimal amount of sense, too.

Co-Author: arkhometha <[email protected]>
  • Loading branch information
moretrim committed Dec 9, 2019
1 parent 38ca75c commit a02fbc4
Show file tree
Hide file tree
Showing 2 changed files with 100 additions and 11 deletions.
107 changes: 96 additions & 11 deletions HFM/events/ITAFlavor.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1148,17 +1148,8 @@ country_event = {
tag = PAP
NOT = { tag = THIS }
}
relation = {
who = THIS
value = -200
}
leave_alliance = THIS
any_owned = {
limit = {
NOT = { province_id = 749 }
}
secede_province = THIS
}

country_event = { id = 96174 days = 7 }
}
any_country = {
limit = {
Expand Down Expand Up @@ -1391,6 +1382,100 @@ country_event = {
}
}

country_event = {

id = 96174
title = "EVTNAME96174" #The Roman Question
desc = "EVTDESC96174"
picture = "celebration"

is_triggered_only = yes

immediate = {
relation = {
who = ITA
value = -200
}

leave_alliance = ITA
}

option = {
name = "EVTOPTA96174" #Concede and retreat back to Rome

any_owned = {
limit = {
# Rome province
NOT = { province_id = 749 }
}

secede_province = FROM
}

ai_chance = {
factor = 1

# will never concede if Italy is not even an equal
modifier = {
factor = 0
OR = {
is_greater_power = yes
AND = {
is_secondary_power = yes
FROM = {
is_greater_power = no
is_secondary_power = no
}
}
AND = {
is_vassal = no
FROM = { is_vassal = yes }
}
}
}
}
}

option = {
name = "EVTOPTB96174" #Challenge Italy

add_casus_belli = {
target = FROM
type = humiliate
months = 24
}

ai_chance = {
factor = 1

# political considerations
modifier = {
factor = 0
OR = {
vassal_of = FROM
AND = {
in_sphere = FROM
OR = {
is_vassal = no
vassal_of = FROM
}
}
}
}

# strength considerations
modifier = {
factor = 0.5
FROM = { brigades_compare = 2 }
}
modifier = {
factor = 2
FROM = { war = yes }
}
}
}
}

# The adventures of Pinocchio
country_event = {

Expand Down
4 changes: 4 additions & 0 deletions HFM/localisation/00_HPM_events.csv
Original file line number Diff line number Diff line change
Expand Up @@ -2887,6 +2887,10 @@ EVTNAME96165;Italian Unification;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTDESC96165;The Italians have managed to unify at long last, threatening $COUNTRY_ADJ$ interests in the region. We will have to decide whether it is in our best interests to object or to make friends with the new rulers. What has been done cannot now be undone, after all, and a united Italy could be a formidable enemy or a powerful $COUNTRY_ADJ$ ally.;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,
EVTNAME96170;Il Risorgimento;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTDESC96170;$COUNTRY$ has become the center of Italian nationalism, its people calling out for unification. Italian flags are flying in the streets of $CAPITAL$, and we must decide if we wish to support this call and bring all of Italy peacefully under our banner. If we refuse, our people will be upset... and it's unlikely the opportunity will arise again.;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,
EVTNAME96174;The Roman Question;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTDESC96174;$MONARCHTITLE$, the $FROMCOUNTRY_ADJ$ ambassador has presented us with news from the $UNION_ADJ$ Congress. They claim they are the one true $UNION_ADJ$ nation and that the time of the $COUNTRY$ is over. According to them we are only fit to rule over Rome.;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTOPTA96174;Long live the $UNION_ADJ$ people!;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTOPTB96174;Preposterous.;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTNAME90038;The Pact of Plombi�res;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,,,,,,
EVTDESC90038;We have been approached by a Sardinian envoy, the Count of Cavour, who has made an interesting proposal: an alliance to make war against Austria, gaining Sardinia the Austrian-held provinces of Lombardy. In exchange, Sardinia would hand over Savoy and Nice to France. It is an interesting idea, and one that allows France to take a role that would not paint us as the aggressors. Shall we agree?;;;;;;;;;;;;x,,,,,,,,,,,,,,,,,
EVTDESC90038_NEWS_LONG;According to reports, the French government has been approached by a Sardinian envoy -- the Count of Cavour -- who has made an interesting proposal: an alliance to make war against Austria, gaining Sardinia the Austrian-held provinces of Lombardy and paving the way for Italian unification. In exchange, Sardinia would hand over Savoy and Nice to France.;;;;;;;;;;;;;x,,,,,
Expand Down

0 comments on commit a02fbc4

Please sign in to comment.