Advertisement
Guest User

Untitled

a guest
Jul 15th, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. convert_to_orthodox = {
  2. # This controls when the decision is DISPLAYED
  3. potential = {
  4. # Only shows this decision to Catholic nations
  5. religion = catholic
  6. }
  7. # This controls when the decision can be USED
  8. allow = {
  9. # Allows this decision to be used when the ROOT country (i.e. the country the decision is showing for, which can be multiple.) has their capital province within the
  10. capital_scope = {
  11. region = russia_region # Region name is found in map/region.txt
  12. }
  13. }
  14. effect = {
  15. # Changes the country's religion to Orthodox
  16. change_religion = orthodox
  17.  
  18. # Changes every Catholic province the country owns into Orthodox
  19. every_owned_province = {
  20. limit = {
  21. religion = catholic
  22. }
  23. change_religion = orthodox
  24. }
  25. }
  26. # Controls if the AI should use the decision. 1 means it will, 0 means it won
  27. ai_will_do = {
  28. factor = 1
  29.  
  30. # This multiples with the factor above, meaning the AI won't use the decision when they have 100% religious unity
  31. modifier = {
  32. factor = 0
  33. religious_unity = 1.0
  34. }
  35. }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement