home *** CD-ROM | disk | FTP | other *** search
/ Encyclopedia of Games / eog_disc2.iso / encyclop / demos / rule / greek.pet < prev    next >
Text File  |  1996-03-08  |  2KB  |  88 lines

  1. ; Political Effects File
  2. ;
  3. ; types of political events:
  4. ;
  5. ;    0=THREAT, 
  6. ;    1=PEACE, 
  7. ;    2=FRIENDLY, 
  8. ;    3=TAUNT, 
  9. ;    4=Movement
  10. ;    5=Attack,
  11. ;    6=Capture,        // military takeover of city
  12. ;    7=Takeover,        // peaceful takeover of city
  13. ;    8=Oust,            // oust a player from a territory which he had owned
  14. ;    9=TradeImbalance
  15. ;
  16. ; relation to victim flags (add together to combine)
  17. ;
  18. ;    Alliance=1,        // allies with victim
  19. ;    Trade=2,        // trade partners with victim
  20. ;    Ignorance=4,    // doesn't know victim
  21. ;    Embargo=8,        // embargo with victim
  22. ;    AtWar=16,        // at war with victim
  23. ;    Self=32,        // is victim
  24. ;
  25. ;
  26. ; territory flags (add together to combine)
  27. ;
  28. ;    Unknown=1,
  29. ;    Owns=2,
  30. ;    WantsBack=4,
  31. ;    WantsToOwn=8,
  32. ;    DoesNotWant=16, 
  33. ;    All=255
  34. ;
  35. ;
  36. ; victim type flags (add together to combine)
  37. ;
  38. ;    Civilian=1,
  39. ;    Military=2,
  40. ;    CivKilled=4,
  41. ;    MilKilled=8,
  42. ;    AllKilled=16,
  43. ;    Any=255
  44. ;
  45. ;
  46. ; type,    relation,    territory,    victim,    change
  47. ;
  48. ; THREATEN (ally, me)
  49. pet=0,    1,        255,        255,        -10
  50. pet=0,    32,        255,        255,        -25
  51.  
  52. ; PEACE (ally, me)
  53. pet=1,    1,        255,        255,        5
  54. pet=1,    32,        255,        255,        25
  55.  
  56. ; FRIENDLY (ally, me)
  57. pet=2,    1,        255,        255,        2
  58. pet=2,    32,        255,        255,        10
  59.  
  60. ; TAUNTS (ally, me)
  61. pet=3,    1,        255,        255,        -2
  62. pet=3,    32,        255,        255,        -10
  63.  
  64. ; MOVEMENT
  65.  
  66. ; ATTACKS
  67. pet=5,    1,        255,        16,        -3
  68. pet=5,    32,        255,        16,        -10
  69. pet=5,    32,        255,        8,        -2
  70. pet=5,    32,        255,        255,        -1 
  71.  
  72. ; CAPTURES  (military takeovers of cities)
  73. pet=6,    1,        255,        255,        -5
  74. pet=6,    32,        255,        255,        -15
  75.  
  76. ; TAKEOVERS (peaceful takeovers of cities)
  77. pet=7,    1,        255,        255,        -2
  78. pet=7,    32,        255,        255,        -5
  79.  
  80. ; OUSTS    (removal from one's own territory)
  81. pet=8,    1,        255,        255,        -5
  82. pet=8,    32,        255,        255,        -25
  83.  
  84. ; TRADE IMBALANCE
  85. pet=9,    32,        255,        255,        -5
  86.  
  87.  
  88.