Advertisement
nevarehtelixe

events

Jul 24th, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.35 KB | None | 0 0
  1. ###
  2. ### Events about the Roman Revolution
  3. ###
  4. ### EventID's
  5. ### 100000000 | Kicker Event
  6. ### 100000001-100000007 | Tuscan Revolution
  7. ### 100000011-100000012 | Foreign Response to Roman Republic
  8.  
  9. # EventID = 100000000
  10. # Assassination of Pellegrino Rossi
  11. country_event = {
  12. id = 100000000
  13. title = "EVTNAME100000000"
  14. desc = "EVTDESC100000000"
  15. picture = "News"
  16.  
  17. trigger = {
  18. tag = PAP
  19. liberal = 25
  20. militancy = 3
  21. has_country_flag = liberal_revolution_in_progress
  22. government = theocracy
  23. }
  24.  
  25. fire_only_once = yes
  26.  
  27. mean_time_to_happen = {
  28. years = 1
  29.  
  30. modifier = {
  31. factor = 0.90 #increase likelihood to happen
  32. liberal = 30
  33. }
  34.  
  35. modifier = {
  36. factor = 0.90 #increase likelihood to happen
  37. liberal = 35
  38. }
  39.  
  40. modifier = {
  41. factor = 0.85 #increase likelihood to happen
  42. militancy = 4
  43. }
  44.  
  45. modifier = {
  46. factor = 0.85 #increase likelihood to happen
  47. militancy = 5
  48. }
  49.  
  50. modifier = {
  51. factor = 0.50 #increase likelihood to happen
  52. year = 1848
  53. }
  54. }
  55.  
  56. option = {
  57. name = "EVTOPTA100000000"
  58.  
  59. any_pop = {
  60. limit = {
  61. location= {
  62. is_colonial = no
  63. }
  64. }
  65.  
  66. ideology = {
  67. value = liberal
  68. factor = 0.2
  69. }
  70. militancy = 4
  71. }
  72.  
  73. set_country_flag = rossi_dead
  74. }
  75. }
  76.  
  77. # EventID = 100000011
  78. # Pope Restored
  79. country_event = {
  80. id = 100000011
  81. title = "EVTNAME100000011"
  82. desc = "EVTDESC100000011"
  83. #news = yes
  84. #news_title = "EVTNAME100000011_NEWS_TITLE"
  85. #news_desc_long = "EVTDESC100000011_NEWS_LONG"
  86. #news_desc_medium = "EVTDESC100000011_NEWS_MEDIUM"
  87. #news_desc_short = "EVTDESC100000011_NEWS_SHORT"
  88. picture = "News"
  89.  
  90. is_triggered_only = yes
  91.  
  92. option = {
  93. name = "EVTOPTA100000011"
  94.  
  95. # Restoration of the old policies
  96. government = theocracy
  97. ruling_party_ideology = reactionary
  98. political_reform = none_voting
  99. political_reform = appointed
  100. political_reform = no_meeting
  101. political_reform = state_press
  102. political_reform = no_trade_unions
  103. political_reform = underground_parties
  104. social_reform = no_minimum_wage
  105. social_reform = no_work_hour_limit
  106. social_reform = no_safety
  107. social_reform = no_subsidies
  108. social_reform = no_pensions
  109. social_reform = no_health_care
  110. social_reform = no_schools
  111. nationalvalue = nv_order
  112.  
  113. # Mixed Reactions
  114. any_pop = {
  115. limit = {
  116. location = {
  117. is_colonial = no
  118. }
  119. }
  120.  
  121. scaled_militancy = {
  122. ideology = liberal
  123. factor = 6
  124. }
  125.  
  126. scaled_militancy = {
  127. ideology = conservative
  128. factor = -6
  129. }
  130.  
  131. scaled_militancy = {
  132. ideology = reactionary
  133. factor = -8
  134. }
  135. }
  136.  
  137. # Garibaldi will not support the Pope
  138. # kill_leader = "Guiseppe Garibaldi"
  139.  
  140. set_country_flag = pope_restored
  141. clr_country_flag = run_pope_run
  142. }
  143. }
  144.  
  145. # EventID = 100000012
  146. # Casus Belli to restore the Pope
  147. country_event = {
  148. id = 100000012
  149. title = "EVTNAME100000012"
  150. desc = "EVTDESC100000012"
  151.  
  152. is_triggered_only = yes
  153.  
  154. option = {
  155. name = "EVTOPTA100000012".
  156.  
  157. casus_belli = {
  158. target = PAP
  159. type = reinstall_papacy_cb
  160. months = 12
  161. }
  162.  
  163. ai_chance = {
  164. factor = 70
  165. }
  166. }
  167.  
  168. option = {
  169. name = "EVTOPTB100000012"
  170.  
  171. any_pop = {
  172. consciousness = -1
  173. militancy = -1
  174. }
  175.  
  176. ai_chance = {
  177. factor = 30
  178. modifier = {
  179. factor = 50
  180. militancy = 5
  181. }
  182. }
  183. }
  184. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement