Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.58 KB | None | 0 0
  1. ##########################################
  2. # COUNCILLOR TITLES
  3. ##########################################
  4.  
  5. # attribute: This attribute is added to the ruler's for governance purposes
  6. # viceroy: This is the Viceroy title for de jure Kingdoms
  7. # allow: conditions for the character to hold the title
  8. # gain_effect: fires when the title is granted
  9. # lose_effect: fires when a title is lost if dismissal_trigger evaluates to false
  10. # The other fields are all character modifiers.
  11.  
  12. job_chancellor = {
  13. is_chancellor = yes
  14. attribute = diplomacy
  15. dignity = 0.33
  16. opinion_effect = 15
  17.  
  18. monthly_salary = 0.1
  19. monthly_prestige = 0.015
  20.  
  21. allow = {
  22. OR = {
  23. AND = {
  24. OR = {
  25. is_female = no
  26. AND = {
  27. religion = cathar
  28. liege = { religion = cathar }
  29. }
  30. }
  31. is_adult = yes
  32. }
  33. has_character_flag = special_chancellor
  34. }
  35.  
  36. prisoner = no
  37. NOT = { trait = incapable }
  38. NOT = { trait = in_hiding }
  39. }
  40. gain_effect = {
  41. }
  42. lose_effect = {
  43. opinion = { who = FROM modifier = opinion_fired_from_council }
  44. }
  45.  
  46. action = action_improve_relations
  47. action = action_fabricate_claims
  48. action = action_sow_dissent
  49.  
  50. lift_fow = yes
  51. }
  52.  
  53. # NOTE: The allow trigger for this job also determines who can command armies!
  54. job_marshal = {
  55. is_marshal = yes
  56. attribute = martial
  57. dignity = 0.33
  58. opinion_effect = 15
  59.  
  60. monthly_salary = 0.1
  61. monthly_prestige = 0.015
  62.  
  63. allow = {
  64. OR = {
  65. AND = {
  66. OR = {
  67. is_female = no
  68. AND = {
  69. religion = cathar
  70. liege = { religion = cathar }
  71. }
  72. }
  73. OR = {
  74. NOT = { religion = hindu }
  75. trait = kshatriya
  76. }
  77. is_adult = yes
  78. }
  79. has_character_flag = special_marshal
  80. }
  81.  
  82. prisoner = no
  83. NOT = { trait = incapable }
  84. NOT = { trait = in_hiding }
  85. NOT = { has_character_flag = guru }
  86. }
  87.  
  88. gain_effect = {
  89. }
  90. lose_effect = {
  91. opinion = { who = FROM modifier = opinion_fired_from_council }
  92. }
  93.  
  94. action = action_assist_arrest
  95. action = action_train_troops
  96. action = action_advance_mil_tech
  97. action = action_organize_raid # Replaces action_advance_mil_tech for Tribes
  98.  
  99. lift_fow = yes
  100. }
  101.  
  102. job_treasurer = {
  103. is_treasurer = yes
  104. attribute = stewardship
  105. dignity = 0.2
  106. opinion_effect = 15
  107.  
  108. monthly_salary = 0.1
  109. monthly_prestige = 0.015
  110.  
  111. allow = {
  112. OR = {
  113. AND = {
  114. OR = {
  115. is_female = no
  116. AND = {
  117. religion = cathar
  118. liege = { religion = cathar }
  119. }
  120. }
  121. is_adult = yes
  122. }
  123. has_character_flag = special_treasurer
  124. }
  125. prisoner = no
  126. NOT = { trait = incapable }
  127. NOT = { trait = in_hiding }
  128. NOT = { has_character_flag = guru }
  129. }
  130. gain_effect = {
  131. }
  132. lose_effect = {
  133. opinion = { who = FROM modifier = opinion_fired_from_council }
  134. }
  135.  
  136. action = action_squeeze_peasants
  137. action = action_settle_tribe # Replaces action_squeeze_peasants for Tribes
  138. action = action_oversee_construction
  139. action = action_advance_eco_tech
  140. action = action_build_legend # Replaces action_advance_eco_tech for Tribes
  141.  
  142. lift_fow = yes
  143. }
  144.  
  145. job_spymaster = {
  146. is_spymaster = yes
  147. attribute = intrigue
  148. dignity = 0.1
  149. opinion_effect = 15
  150.  
  151. monthly_salary = 0.1
  152.  
  153. allow = {
  154. OR = {
  155. AND = {
  156. OR = {
  157. is_female = no
  158. liege = {
  159. OR = {
  160. mother = { character = ROOT }
  161. spouse = { character = ROOT }
  162. }
  163. }
  164. AND = {
  165. religion_group = pagan_group
  166. liege = {
  167. religion_group = pagan_group
  168. }
  169. }
  170. AND = {
  171. religion = cathar
  172. liege = { religion = cathar }
  173. }
  174. }
  175. is_adult = yes
  176. }
  177. has_character_flag = special_spymaster
  178. }
  179.  
  180. prisoner = no
  181. NOT = { trait = incapable }
  182. NOT = { trait = in_hiding }
  183. NOT = { has_character_flag = guru }
  184. }
  185. gain_effect = {
  186. }
  187. lose_effect = {
  188. opinion = { who = FROM modifier = opinion_fired_from_council }
  189. }
  190.  
  191. action = action_uncover_plots
  192. action = action_organize_spies
  193. action = action_study_technology
  194.  
  195. lift_neighbor_fow = yes
  196. }
  197.  
  198. job_spiritual = {
  199. is_spiritual = yes
  200. attribute = learning
  201. dignity = 0.15
  202. opinion_effect = 15
  203.  
  204. monthly_salary = 0.1
  205. monthly_piety = 0.015
  206.  
  207. allow = {
  208. prisoner = no
  209. NOT = { trait = incapable }
  210. NOT = { trait = in_hiding }
  211. liege = {
  212. religion = ROOT
  213. }
  214. OR = {
  215. AND = {
  216. is_adult = yes
  217. OR = {
  218. is_female = no
  219. AND = {
  220. religion_group = pagan_group
  221. NOT = { religion = aztec }
  222. NOT = { religion = aztec_reformed}
  223. NOT = { religion = tengri_pagan }
  224. NOT = { religion = tengri_pagan_reformed}
  225. }
  226. religion = cathar
  227. religion = bogomilist
  228. }
  229. OR = {
  230. NOT = { religion = hindu }
  231. trait = brahmin
  232. }
  233. }
  234. has_character_flag = special_spiritual
  235. }
  236.  
  237. OR = {
  238. is_theocracy = yes
  239. AND = {
  240. liege = { is_tribal = yes }
  241. is_ruler = no
  242. }
  243. liege = { religion_group = muslim }
  244. AND = {
  245. is_ruler = no
  246. has_autocephaly = no
  247. }
  248. }
  249.  
  250. OR = {
  251. NOT = { religion_group = muslim }
  252. NOT = { liege = { religion_group = muslim } }
  253. trait = detached_priest
  254. trait = martial_cleric
  255. trait = scholarly_theologian
  256. trait = mastermind_theologian
  257. }
  258. }
  259. gain_effect = {
  260. }
  261. lose_effect = {
  262. opinion = { who = FROM modifier = opinion_fired_from_council }
  263. }
  264. dismiss_trigger = {
  265. NOT = { FROM = { religion_group = muslim } }
  266. }
  267.  
  268. action = action_inquisition
  269. action = action_advance_cul_tech
  270. action = action_improve_rel_relations
  271. action = action_charity
  272. action = action_build_zeal # Tribal replacement for 'action_advance_cul_tech'
  273.  
  274. lift_fow = yes
  275. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement