-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A initial version of a journal entry chain of 3 journals representing a french revolution as based on a recommendation from Jozue on the discord
- Loading branch information
Showing
23 changed files
with
346 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
# Union of the Romanian Principalities | ||
je_the_revolution = { | ||
|
||
icon = "gfx/interface/icons/event_icons/event_election.dds" | ||
|
||
group = je_group_internal_affairs | ||
|
||
is_shown_when_inactive = { | ||
root = c:HRE | ||
} | ||
|
||
possible = { | ||
root = c:HRE | ||
} | ||
|
||
immediate = { | ||
add_journal_entry = { | ||
type = je_revolution_reform | ||
} | ||
add_journal_entry = { | ||
type = je_revolution_suppress | ||
} | ||
} | ||
|
||
complete = { | ||
custom_tooltip = { | ||
text = finished_revolution_tt | ||
has_variable = revolution_complete | ||
} | ||
} | ||
|
||
on_complete = { | ||
trigger_event = { | ||
id = wallachia_events.3 | ||
popup = yes | ||
} | ||
|
||
hidden_effect = { | ||
set_variable = revolution_complete | ||
} | ||
} | ||
|
||
fail = { | ||
has_law = law_type:law_presidential_republic | ||
} | ||
|
||
on_fail = { | ||
trigger_event = red_scare.20 #temp event replace with correct one | ||
} | ||
|
||
timeout = 27375 #75 years | ||
|
||
#on_timeout the revolution happens | ||
on_timeout = { | ||
trigger_event = { id = red_scare.20 } #temp event replace with correct one | ||
} | ||
|
||
weight = 9000 | ||
|
||
should_be_pinned_by_default = yes | ||
} | ||
|
||
# reform the state | ||
je_revolution_reform = { | ||
|
||
group = je_group_internal_affairs | ||
|
||
icon = "gfx/interface/icons/event_icons/event_military.dds" | ||
|
||
complete = { | ||
NOT = { | ||
has_law = law_type:law_autocracy | ||
has_law = law_type:law_oligarchy | ||
has_law = law_type:law_landed_voting | ||
has_law = law_type:law_hereditary_bureaucrats | ||
has_law = law_type:law_serfdom | ||
has_law = law_type:law_traditionalism | ||
} | ||
} | ||
|
||
on_complete = { | ||
trigger_event = { | ||
id = wallachia_events.6 #temp event replace with correct one | ||
popup = no | ||
} | ||
add_modifier = { | ||
name = br_peoples_monarchy | ||
years = -1 | ||
} | ||
remove_modifier = br_modifier_noble_privileges | ||
} | ||
|
||
invalid = { | ||
custom_tooltip = { | ||
text = finished_revolution_tt | ||
has_variable = revolution_complete | ||
} | ||
} | ||
|
||
weight = 10000 | ||
|
||
should_be_pinned_by_default = yes | ||
} | ||
|
||
# Suppress the revolution | ||
je_revolution_suppress = { | ||
|
||
group = je_group_internal_affairs | ||
|
||
icon = "gfx/interface/icons/event_icons/event_military.dds" | ||
|
||
complete = { | ||
has_law = law_type:law_autocracy | ||
has_law = law_type:law_censorship | ||
OR = { | ||
has_law = law_type:law_national_guard | ||
has_law = law_type:law_professional_army | ||
} | ||
NOT = { | ||
has_law = law_type:law_peasant_levies | ||
} | ||
ig:ig_landowners = { | ||
is_powerful = yes | ||
is_in_government = yes | ||
} | ||
ig:ig_armed_forces = { | ||
is_powerful = yes | ||
is_in_government = yes | ||
} | ||
} | ||
|
||
on_complete = { | ||
trigger_event = { | ||
id = wallachia_events.6 #temp event replace with correct one | ||
popup = no | ||
} | ||
add_modifier = { | ||
name = br_heir_of_augustus | ||
years = -1 | ||
} | ||
remove_modifier = br_modifier_noble_privileges | ||
} | ||
|
||
invalid = { | ||
custom_tooltip = { | ||
text = finished_revolution_tt | ||
has_variable = revolution_complete | ||
} | ||
} | ||
|
||
weight = 10000 | ||
|
||
should_be_pinned_by_default = yes | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
| ||
|
||
#Romaioi State Modifiers | ||
|
||
br_peoples_monarchy = { | ||
icon = gfx/interface/icons/timed_modifier_icons/modifier_trade_positive.dds | ||
country_legitimacy_base_add = 25 | ||
interest_group_ig_petty_bourgeoisie_pol_str_mult = 0.25 | ||
state_radicals_from_sol_change_mult = -0.25 | ||
} | ||
br_heir_of_augustus = { | ||
icon = gfx/interface/icons/timed_modifier_icons/modifier_trade_positive.dds | ||
country_authority_add = 150 | ||
interest_group_ig_landowners_pol_str_mult = 0.25 | ||
country_law_enactment_success_add = -50 | ||
} | ||
br_roman_republicanism = { | ||
icon = gfx/interface/icons/timed_modifier_icons/modifier_trade_positive.dds | ||
country_authority_add = 150 | ||
interest_group_ig_intelligentsia_pop_attraction_mult = 0.15 | ||
interest_group_ig_petty_bourgeoisie_pop_attraction_mult = 0.15 | ||
interest_group_ig_rural_folk_pop_attraction_mult = 0.15 | ||
country_legitimacy_base_add = 30 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.