Advertisement
Guest User

Untitled

a guest
Oct 5th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. catholic = {
  2. color = { 204 204 0 }
  3. icon = 1
  4. allowed_conversion = {
  5. reformed
  6. protestant
  7. }
  8. country = {
  9. tolerance_own = 1
  10. tolerance_heretic = -1
  11. }
  12.  
  13. country_as_secondary = {
  14. diplomatic_reputation = 1
  15. advisor_pool = 1
  16. }
  17.  
  18. hre_religion = yes
  19.  
  20. on_convert = {
  21. change_religion = catholic
  22. add_prestige = -100
  23.  
  24. remove_country_modifier = the_test_act
  25. remove_country_modifier = superintendent_office
  26. remove_country_modifier = the_popery_act
  27.  
  28. add_country_modifier = {
  29. name = "conversion_zeal"
  30. duration = 3650
  31. }
  32.  
  33. }
  34.  
  35. heretic = { BOGOMILIST WALDENSIAN FRATICELLI HUSSITE LOLLARD SOCINIAN }
  36.  
  37. papacy = {
  38. papal_tag = PAP
  39. election_cost = 5
  40. seat_of_papacy = 118 # rome
  41.  
  42. levy_church_tax = {
  43. cost = 50
  44. potential = {
  45. NOT = { tag = PAP }
  46. }
  47. allow = {
  48. NOT = { war_with = PAP }
  49. NOT = { has_country_modifier = papal_sanction_for_church_taxes }
  50. }
  51. effect = {
  52. add_country_modifier = {
  53. name = "papal_sanction_for_church_taxes"
  54. duration = 7300
  55. }
  56. }
  57. ai_will_do = {
  58. factor = 1
  59. }
  60. }
  61. bless_monarch = {
  62. cost = 50
  63. potential = {
  64. NOT = { tag = PAP }
  65. }
  66. allow = {
  67. NOT = { war_with = PAP }
  68. NOT = { prestige = 100 }
  69. NOT = { has_country_modifier = papal_blessing }
  70. }
  71. effect = {
  72. add_country_modifier = {
  73. name = "papal_blessing"
  74. duration = 7300
  75. }
  76. }
  77. ai_will_do = {
  78. factor = 1
  79. }
  80. }
  81. indulgence_for_sins = {
  82. cost = 50
  83. potential = {
  84. government = monarchy
  85. NOT = { tag = PAP }
  86. }
  87. allow = {
  88. NOT = { war_with = PAP }
  89. NOT = { legitimacy = 100 }
  90. NOT = { has_country_modifier = papal_indulgence }
  91. }
  92. effect = {
  93. add_country_modifier = {
  94. name = "papal_indulgence"
  95. duration = 7300
  96. }
  97. }
  98. ai_will_do = {
  99. factor = 1
  100. }
  101. }
  102. local_saint = {
  103. cost = 100
  104. potential = {
  105. NOT = { tag = PAP }
  106. }
  107. allow = {
  108. NOT = { war_with = PAP }
  109. NOT = { stability = 3 }
  110. }
  111. effect = {
  112. add_stability = 1
  113. }
  114. ai_will_do = {
  115. factor = 1
  116. modifier = {
  117. factor = 2
  118. NOT = { stability = 0 }
  119. }
  120. }
  121. }
  122. forgiveness_for_usury = {
  123. cost = 50
  124. potential = {
  125. NOT = { tag = PAP }
  126. }
  127. allow = {
  128. NOT = { war_with = PAP }
  129. NOT = { has_country_modifier = usury_forgiven }
  130. }
  131. effect = {
  132. add_country_modifier = {
  133. name = "usury_forgiven"
  134. duration = 7300
  135. }
  136. }
  137. ai_will_do = {
  138. factor = 1
  139. modifier = {
  140. factor = 0
  141. NOT = { num_of_loans = 1 }
  142. }
  143. }
  144. }
  145. proclaim_holy_war = {
  146. cost = 50
  147. potential = {
  148. NOT = { tag = PAP }
  149. }
  150. allow = {
  151. is_at_war = yes
  152. NOT = { war_with = PAP }
  153. NOT = { has_country_modifier = papal_sanction_for_holy_war }
  154. }
  155. effect = {
  156. add_country_modifier = {
  157. name = "papal_sanction_for_holy_war"
  158. duration = 7300
  159. }
  160. }
  161. ai_will_do = {
  162. factor = 1
  163. modifier = {
  164. factor = 0
  165. manpower_percentage = 0.5
  166. }
  167. }
  168. }
  169. send_papal_legate = {
  170. cost = 50
  171. potential = {
  172. NOT = { tag = PAP }
  173. }
  174. allow = {
  175. NOT = { war_with = PAP }
  176. NOT = { has_country_modifier = papal_legate }
  177. }
  178. effect = {
  179. add_country_modifier = {
  180. name = "papal_legate"
  181. duration = 7300
  182. }
  183. }
  184. ai_will_do = {
  185. factor = 1
  186. }
  187. }
  188. sanction_commercial_monopoly = {
  189. cost = 50
  190. potential = {
  191. NOT = { tag = PAP }
  192. }
  193. allow = {
  194. NOT = { war_with = PAP }
  195. NOT = { mercantilism = 100 }
  196. }
  197. effect = {
  198. add_mercantilism = 1
  199. }
  200. ai_will_do = {
  201. factor = 1
  202. modifier = {
  203. factor = 0
  204. NOT = { has_idea_group = trade_ideas }
  205. }
  206. }
  207. }
  208. }
  209. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement