Better Espionage.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!--
  3. Better Espionage Screen
  4. by Almightix, EmperorFool
  5. Copyright (c) 2008 The BUG Mod.
  6. -->
  7. <mod id="BetterEspionage"
  8. module="SpyUtil"
  9. name="Better Espionage Screen"
  10. author="Almightix, Ruff_Hi, EmperorFool"
  11. version="1.1"
  12. date="07/29/2007"
  13. url="http://forums.civfanatics.com/showthread.php?t=234523">
  14. <options id="BetterEspionage" file="Better Espionage.ini">
  15. <section id="Better Espionage">
  16. <option id="Enabled" key="Enabled"
  17. type="boolean" default="True"
  18. dirtyBit="Espionage_Advisor"
  19. label="Better Espionage Screen"
  20. help="When checked, uses Almightix's Better Espionage Screen."/>
  21. <option id="ShowCalculatedInformation" key="Show Calculated Information"
  22. type="boolean" default="False"
  23. dirtyBit="Espionage_Advisor"
  24. label="Show Calculated Information"
  25. help="When checked, shows calculated espionage information."/>
  26. <option id="DefaultRatioColor" key="Default Ratio Color"
  27. type="color" default="COLOR_CYAN"
  28. dirtyBit="Espionage_Advisor"
  29. label="Ratio Color"
  30. help="Default color used for espionage ratios."/>
  31. <list id="GoodRatioCutoff" key="Good Ratio Cutoff"
  32. type="float" default="95.0" listType="float"
  33. values="100.0, 97.5, 95.0, 92.5, 90.0, 87.5, 85.0, 82.5, 80.0, 77.5, 75.0" format="%.1f%%"
  34. dirtyBit="Espionage_Advisor"
  35. label="Good Ratio Cutoff"
  36. help="Ratios less than or equal to this value are colored with the following color."/>
  37. <option id="GoodRatioColor" key="Good Ratio Color"
  38. type="color" default="COLOR_GREEN"
  39. dirtyBit="Espionage_Advisor"
  40. label="Good Color"
  41. help="Color used for good espionage ratios."/>
  42. <list id="BadRatioCutoff" key="Bad Ratio Cutoff"
  43. type="float" default="105.0" listType="float"
  44. values="100.0, 102.5, 105.0, 107.5, 110.0, 112.5, 115.0, 117.5, 120.0, 122.5, 125.0" format="%.1f%%"
  45. dirtyBit="Espionage_Advisor"
  46. label="Bad Ratio Cutoff"
  47. help="Ratios greater than or equal to this value are colored with the following color."/>
  48. <option id="BadRatioColor" key="Bad Ratio Color"
  49. type="color" default="COLOR_YELLOW"
  50. dirtyBit="Espionage_Advisor"
  51. label="Bad Color"
  52. help="Color used for bad espionage ratios."/>
  53. <option id="PossibleMissionColor" key="Possible Mission Color"
  54. type="color" default="COLOR_GREEN"
  55. dirtyBit="Espionage_Advisor"
  56. label="Possible Mission Color"
  57. help="Color used for missions that you can perform now (you have enough EPs against the target)."/>
  58. <list id="CloseMissionPercent" key="Close Mission Percent"
  59. type="float" default="5.0" listType="float"
  60. values="2.5, 5.0, 7.5, 10.0, 12.5, 15.0, 17.5, 20.0, 22.5, 25.0" format="%.1f%%"
  61. dirtyBit="Espionage_Advisor"
  62. label="Close Percent Cutoff"
  63. help="Determines how close your EPs have to be to the cost of a mission for it to be considered close to possible."/>
  64. <option id="CloseMissionColor" key="Close Mission Color"
  65. type="color" default="COLOR_CYAN"
  66. dirtyBit="Espionage_Advisor"
  67. label="Close Mission Color"
  68. help="Color used for missions that you can perform soon (you have close to enough EPs against the target)."/>
  69. </section>
  70. </options>
  71. <event type="GameStart" function="onGameStart"/>
  72. <event type="OnLoad" function="onGameLoad"/>
  73. <event type="PythonReloaded" function="onPythonReloaded"/>
  74. <event type="BeginPlayerTurn" function="onBeginPlayerTurn"/>
  75. </mod>