Advertisement
t_a_w

decisions/dynastic_decisions.txt

Nov 4th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.85 KB | None | 0 0
  1. targetted_decisions = {
  2. switch_to_spouse_dynasty = {
  3. filter = spouse
  4. ai_target_filter = spouse
  5. from_potential = {
  6. age = 16
  7. }
  8. potential = {
  9. is_married = FROM
  10. }
  11. allow = {
  12. age = 16
  13. }
  14. effect = {
  15. FROM = {
  16. dynasty = ROOT
  17. }
  18. }
  19. revoke_allowed = {
  20. always = no
  21. }
  22. ai_will_do = {
  23. factor = 0
  24. }
  25. }
  26. make_marriage_regular = {
  27. filter = spouse
  28. ai_target_filter = spouse
  29. from_potential = {
  30. age = 16
  31. }
  32. potential = {
  33. is_married = FROM
  34. }
  35. allow = {
  36. age = 16
  37. }
  38. effect = {
  39. FROM = {
  40. add_spouse = ROOT
  41. }
  42. }
  43. revoke_allowed = {
  44. always = no
  45. }
  46. ai_will_do = {
  47. factor = 0
  48. }
  49. }
  50. make_marriage_matrilineal = {
  51. filter = spouse
  52. ai_target_filter = spouse
  53. from_potential = {
  54. age = 16
  55. }
  56. potential = {
  57. is_married = FROM
  58. }
  59. allow = {
  60. age = 16
  61. }
  62. effect = {
  63. FROM = {
  64. add_spouse_matrilineal = ROOT
  65. }
  66. }
  67. revoke_allowed = {
  68. always = no
  69. }
  70. ai_will_do = {
  71. factor = 0
  72. }
  73. }
  74. educate_kin = {
  75. filter = dynasty
  76. ai_target_filter = dynasty
  77. from_potential = {
  78. age = 16
  79. }
  80. potential = {
  81. age = 6
  82. NOT = {
  83. age = 16
  84. }
  85. }
  86. effect = {
  87. set_guardian = FROM
  88. }
  89. revoke_allowed = {
  90. always = no
  91. }
  92. ai_will_do = {
  93. factor = 0
  94. }
  95. }
  96. make_rival = {
  97. filter = all
  98. ai_target_filter = court
  99. effect = {
  100. add_rival = FROM
  101. }
  102. ai_will_do = {
  103. factor = 0
  104. }
  105. }
  106. make_friend = {
  107. filter = all
  108. ai_target_filter = court
  109. effect = {
  110. add_friend = FROM
  111. }
  112. ai_will_do = {
  113. factor = 0
  114. }
  115. }
  116. make_lover = {
  117. filter = all
  118. ai_target_filter = court
  119. effect = {
  120. add_lover = FROM
  121. }
  122. ai_will_do = {
  123. factor = 0
  124. }
  125. }
  126. trigger_revolt_peasant = {
  127. filter = all
  128. ai_target_filter = court
  129. effect = {
  130. random_realm_province = {
  131. province_event = {
  132. id = TOG.1000
  133. }
  134. }
  135. }
  136. ai_will_do = {
  137. factor = 0
  138. }
  139. }
  140. trigger_revolt_heretic = {
  141. filter = all
  142. ai_target_filter = court
  143. effect = {
  144. random_realm_province = {
  145. province_event = {
  146. id = TOG.1020
  147. }
  148. }
  149. }
  150. ai_will_do = {
  151. factor = 0
  152. }
  153. }
  154. trigger_revolt_nationalist = {
  155. filter = all
  156. ai_target_filter = court
  157. effect = {
  158. random_realm_province = {
  159. province_event = {
  160. id = TOG.1040
  161. }
  162. }
  163. }
  164. ai_will_do = {
  165. factor = 0
  166. }
  167. }
  168. trigger_revolt_religious = {
  169. filter = all
  170. ai_target_filter = court
  171. effect = {
  172. random_realm_province = {
  173. province_event = {
  174. id = TOG.1060
  175. }
  176. }
  177. }
  178. ai_will_do = {
  179. factor = 0
  180. }
  181. }
  182. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement