Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handling events related to the World War I #596

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 39 additions & 4 deletions mod/thegreatwar/events/WW1_AlternativeHisotry.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,29 @@ country_event = {
days = 1
id = ww1_alternativehistory.4
}
RUS = {
country_event = {
days = 1
id = ww1_alternativehistory.6
# Russia can help Serbia only if it itself is not a member of the Central Powers
if = {
limit = {
RUS = {
NOT = {
is_in_faction_with = GER
}
}
}
RUS = {
country_event = {
days = 1
id = ww1_alternativehistory.6
}
}
}
# If Russia is a member of the Central Powers, then France can help Serbia without Russia's decision.
else = {
FRA = {
country_event = {
days = 1
id = ww1_alternativehistory.8
}
}
}
set_global_flag = kis_alternativehistory_2_serbia_refuses
Expand All @@ -132,6 +151,22 @@ country_event = {
has_global_flag = kis_firstbalkanwar_victory
}
}
# Each country at war with Turkey (Serbia, Montenegro, Greece and Bulgaria), in the event of a forced end to the war
# (attack of Austria-Hungary on Serbia, ww1_alternativehistory.1)
# receives the territories of Turkey that it managed to capture
every_country = {
limit = {
has_war_with = TUR
}
every_controlled_state = {
limit = {
is_owned_by = TUR
}
transfer_state_to = PREV
#add_core_of = PREV
}
}

SER = {
white_peace = TUR
remove_from_faction = MTN
Expand Down