home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 15 / CDE15_B.7z / CDE15_B.mdf / Rise&rul / AI.PET < prev    next >
Text File  |  1996-02-15  |  1KB  |  61 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. pet=0,    32,        255,        255,    -25
  49. pet=1,    32,        255,        255,     25
  50. pet=2,    32,        255,        255,     10
  51. pet=3,    32,        255,        255,    -10
  52. pet=5,    32,        255,        16,        -10
  53. pet=5,    32,        255,        8,        -2
  54. pet=5,    32,        255,        255,    -1 
  55. pet=6,    32,        255,        255,    -15
  56. pet=7,    32,        255,        255,    -5
  57. pet=8,    32,        255,        255,    -25
  58. pet=9,    32,        255,        255,    -5
  59.  
  60.  
  61.