Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. option = { #Give to Russia
  2. name = annex.168.b
  3. ai_chance = {
  4. factor = 10
  5. modifier = {
  6. factor = 100
  7. OR = {
  8. is_in_faction_with = RUS
  9. RUS = {
  10. is_subject_of = ROOT
  11. }
  12. }
  13. }
  14. }
  15.  
  16. DKB = {
  17. add_state_core = 245
  18. add_state_core = 218
  19. add_state_core = 234
  20. add_state_core = 235
  21. add_state_core = 232
  22. add_state_core = 787
  23. add_state_core = 238
  24. add_state_core = 237
  25. add_state_core = 233
  26. }
  27.  
  28. # If SOV exists give it to them instead (may be wonky if this happens during the civil war)
  29. if = {
  30. limit = {
  31. country_exists = SOV
  32. }
  33. every_state = {
  34. limit = {
  35. is_core_of = DKB
  36. is_owned_by = ROOT
  37. NOT = {
  38. is_core_of = ROOT
  39. }
  40. }
  41. SOV = {
  42. transfer_state = PREV
  43. }
  44. }
  45. }
  46. # If SOV doesn't exist, give to RUS
  47. if = {
  48. limit = {
  49. NOT = {
  50. country_exists = SOV
  51. }
  52. }
  53. every_state = {
  54. limit = {
  55. is_core_of = DKB
  56. is_owned_by = ROOT
  57. NOT = {
  58. is_core_of = ROOT
  59. }
  60. }
  61. RUS = {
  62. transfer_state = PREV
  63. }
  64. }
  65. }
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement