home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Games / PD / Freeciv / data / civ1 / governments.ruleset < prev    next >
Encoding:
Text File  |  1999-12-03  |  16.5 KB  |  529 lines

  1.  
  2. ; Modifying this file:
  3. ; You should not modify this file except to make bugfixes or
  4. ; for other "maintenance".  If you want to make custom changes
  5. ; you should create a new datadir subdirectory and copy this file
  6. ; into that directory, and then modify that copy.  Then use the
  7. ; command "set governments <mysubdir>" in the server to have freeciv
  8. ; use your new customized file.
  9.  
  10. ; Note that the freeciv AI may not cope well with anything more
  11. ; than minor changes.
  12.  
  13. ; TODO: check values really match Civ1!
  14.  
  15. [datafile]
  16. description="Civilization I governments data for Freeciv"
  17. options="1.9"
  18.  
  19. [governments]
  20. default="Despotism"
  21. when_anarchy="Anarchy"
  22. ai_goal="Republic"
  23.  
  24. ai_tech_hints = { "tech", "turns_factor", "const_factor", "get_first", "done"
  25.     "Code of Laws", 150,   0, 1, 0
  26.     "The Republic",  90,  90, 0, 1
  27.     "Monarchy",       0, 150, 0, 0
  28. }
  29.  
  30. ; Below: The individual government types, one per section.
  31. ;
  32. ; The actual tag used (the * in [government_*]) does not matter, except 
  33. ; it must be unique within this file, and it may be used in debug 
  34. ; output when reading this file.
  35. ;
  36. ; For the "official" rulesets, the order of these sections should not
  37. ; be changed because that would break backward compatability with 
  38. ; savegames.
  39. ;
  40. ; Notes on fields:
  41.  
  42. ; name        = name of this government form as seen by user 
  43. ; tech_req    = required advance, names from techs.ruleset, or special:
  44. ;               "None" => available from start
  45. ; graphic     = tag specifing preferred graphic
  46. ; graphic_alt = alternate graphics tag if preferred is not found;
  47. ;               should be a standard tag if preferred is not;
  48. ;        otherwise may be "-"
  49. ; flags       = special effects; see government.c for strings
  50. ; hints       = hints to the AI about how to use / behave with government
  51. ; subgoal     = another government name or "-"; if main gov is nation or 
  52. ;        AI goal government, aim for subgoal first.
  53.  
  54. ; martial_law_max  = maximum number of units which can enforce martial law
  55. ;             in the city
  56. ; martial_law_per  = number of unhappy citizens made content by each
  57. ;             enforcer unit
  58. ; max_single_rate  = maximum which can be allocated to single one of
  59. ;             taxation/luxuries/science
  60. ; empire_size_mod  = signed modifier added to cityfactor to determine
  61. ;             empire size when base unhappiness is increased
  62. ; civil_war_chance = percentage change of civil war when capital is captured
  63. ;             (and player has enough cities etc)
  64. ; rapture_size     = if non-zero, city can grow by celebrating, when size is
  65. ;             this value or larger
  66.  
  67. ; unit_*_factor = factor applied to individual unit upkeep for different 
  68. ;          upkeep forms
  69. ; unit_free_*   = base unit upkeep cost which the city gets "free"; only
  70. ;              upkeep above this value applies; special value: "City_Size"
  71.  
  72. ; corruption:
  73.  
  74. ; _level           = percentage factor applied to corruption; 
  75. ;             if 0, Courthouse effect changes
  76. ; _modifier        = non-zero divisor to corruption; higher value 
  77. ;             means less corruption 
  78. ;             TODO: why have both level and modifier??
  79. ; _fixed_distance  = if non-zero, used instead of actual calculation of 
  80. ;             distance from Palace; also used for distances in 
  81. ;             unit and city bribe cost calculations
  82. ; _distance_factor = multiply distance by this factor for corruption 
  83. ;             (but not bribe costs)
  84. ; _extra_distance  = add this to distance after applying distance factor
  85.  
  86. ; production_*_bonus   = added to base production for each worked tile;
  87. ;             second value is used instead when city is celebrating
  88. ; production_*_penalty = if non-zero, tile production above this amount is 
  89. ;             reduced by one; second value used when celebrating
  90.  
  91. ; ruler_titles = ruler titles by nation, "-" is default, and non-matched 
  92. ;             nations are ignored 
  93.  
  94. ; helptext = optional help text string; should escape all raw newlines 
  95. ;         so that xgettext parsing works
  96.  
  97. ;------------------------------------------------------------------------
  98. [government_anarchy]
  99.  
  100. name        = _("Anarchy")
  101. tech_req    = "None"
  102. graphic     = "gov.anarchy"
  103. graphic_alt = "-"
  104. flags       = "-"
  105. hints       = "Favors_Growth"
  106. subgoal        = "-"
  107.  
  108. martial_law_max  = 100  ; unlimited
  109. martial_law_per  = 1
  110. max_single_rate  = 100  ; rates are irrelevant under Anarchy; use 100
  111.                 ; to avoid unnecessary changes during revolution
  112. civil_war_chance = 90
  113. empire_size_mod  = -5
  114. rapture_size     = 0
  115.  
  116. unit_unhappy_factor = 0
  117. unit_shield_factor  = 1
  118. unit_food_factor    = 1
  119. unit_gold_factor    = 0   ; ??
  120.  
  121. unit_free_unhappy = 0
  122. unit_free_shield  = "City_Size"
  123. unit_free_food    = 0
  124. unit_free_gold    = 0
  125.  
  126. corruption_level           = 100
  127. corruption_modifier        = 40
  128. corruption_fixed_distance  = 0
  129. corruption_distance_factor = 1 
  130. corruption_extra_distance  = 0 
  131.  
  132. production_trade_bonus    = 0, 0
  133. production_shield_bonus   = 0, 0
  134. production_food_bonus     = 0, 0
  135.  
  136. production_trade_penalty  = 2, 0
  137. production_shield_penalty = 2, 0
  138. production_food_penalty   = 2, 0
  139.  
  140. ruler_male_title = _("Mr.")
  141. ruler_female_title = _("Ms.")
  142.  
  143. helptext = _("\
  144. Anarchy is simply the absence of any recognizable government.\
  145.  Citizens are disorganized and unproductive, and will spend all\
  146.  income as quickly as possible, rather than paying taxes or\
  147.  conducting research.\
  148. \n\n\
  149. Anarchy offers slightly less corruption than Despotism, but slightly\
  150.  more unhappiness.\
  151. \n\n\
  152. Settlers consume 1 food per turn under Anarchy.  Squares which would\
  153.  normally yield more than 2 units of food, shields or trade suffer\
  154.  a 1-unit penalty (e.g., an irrigated grassland square which would\
  155.  normally yield 3 food only yields 2 food while you are in Anarchy).\
  156.  (This penalty is removed if the city is celebrating; see Happiness.)\
  157. \n\n\
  158. Under Anarchy, each of your cities can support a number of military\
  159.  units equal to its size without paying shields for upkeep.\
  160.  (Additional units require 1 production shield each.)\
  161. \n\n\
  162. You may impose martial law under Anarchy: each military unit inside\
  163.  a city will keep one unhappy citizen content.  (Or at least, unhappy\
  164.  citizens will act content, and will not cause disorder.)\
  165. ")
  166.  
  167. ;------------------------------------------------------------------------
  168. [government_despotism]
  169.  
  170. name        = _("Despotism")
  171. tech_req    = "None"
  172. graphic     = "gov.despotism"
  173. graphic_alt = "-"
  174. flags       = "-"
  175. hints       = "Favors_Growth"
  176. subgoal        = "-"
  177.  
  178. martial_law_max  = 100  ; unlimited
  179. martial_law_per  = 1
  180. max_single_rate  = 100
  181. civil_war_chance = 80
  182. empire_size_mod  = -4
  183. rapture_size     = 0
  184.  
  185. unit_unhappy_factor = 0 
  186. unit_shield_factor  = 1
  187. unit_food_factor    = 1
  188. unit_gold_factor    = 1 
  189.  
  190. unit_free_unhappy = 0
  191. unit_free_shield  = "City_Size"
  192. unit_free_food    = 0
  193. unit_free_gold    = 0
  194.  
  195. corruption_level           = 100
  196. corruption_modifier        = 27
  197. corruption_fixed_distance  = 0
  198. corruption_distance_factor = 2 
  199. corruption_extra_distance  = 3 
  200.  
  201. production_trade_bonus    = 0, 0
  202. production_shield_bonus   = 0, 0
  203. production_food_bonus     = 0, 0
  204.  
  205. production_trade_penalty  = 2, 0
  206. production_shield_penalty = 2, 0
  207. production_food_penalty   = 2, 0
  208.  
  209. ruler_male_title = _("Emperor")
  210. ruler_female_title = _("Empress")
  211.  
  212. helptext = _("\
  213. Under Despotism, you are the absolute ruler of your people.  Your\
  214.  control over your citizens is maintained largely by martial law.\
  215. \n\n\
  216. Despotism suffers the highest level of corruption of all forms of\
  217.  government.\
  218. \n\n\
  219. Settlers consume 1 food per turn under Despotism.  Squares which\
  220.  would normally yield more than 2 units of food, shields or trade\
  221.  suffer a 1-unit penalty (e.g., an irrigated grassland square which\
  222.  would normally yield 3 food only yields 2 food while you are under\
  223.  Despotic rule).  (This penalty is removed if the city is\
  224.  celebrating; see Happiness.)\
  225. \n\n\
  226. Under Despotism, each of your cities can support a number of\
  227.  military units equal to its size without paying shields for\
  228.  upkeep.  (Additional units require 1 production shield each.)\
  229. \n\n\
  230. You may impose martial law under Despotism: each military unit\
  231.  inside a city will keep one unhappy citizen content.  (Or at least,\
  232.  unhappy citizens will act content, and will not cause disorder.)\
  233. ")
  234.  
  235. ;------------------------------------------------------------------------
  236. [government_monarchy]
  237.  
  238. name        = _("Monarchy")
  239. tech_req    = "Monarchy"
  240. graphic     = "gov.monarchy"
  241. graphic_alt = "-"
  242. flags       = "-"
  243. hints       = "Favors_Growth"
  244. subgoal        = "-"
  245.  
  246. martial_law_max  = 100  ; unlimited
  247. martial_law_per  = 1
  248. max_single_rate  = 100
  249. civil_war_chance = 70
  250. empire_size_mod  = -3
  251. rapture_size     = 0
  252.  
  253. unit_unhappy_factor = 0
  254. unit_shield_factor  = 1
  255. unit_food_factor    = 1
  256. unit_gold_factor    = 1 
  257.  
  258. unit_free_unhappy = 0
  259. unit_free_shield  = 0
  260. unit_free_food    = 0
  261. unit_free_gold    = 0
  262.  
  263. corruption_level           = 100
  264. corruption_modifier        = 67
  265. corruption_fixed_distance  = 0
  266. corruption_distance_factor = 1 
  267. corruption_extra_distance  = 0 
  268.  
  269. production_trade_bonus    = 0, 1
  270. production_shield_bonus   = 0, 0
  271. production_food_bonus     = 0, 0
  272.  
  273. production_trade_penalty  = 0, 0
  274. production_shield_penalty = 0, 0
  275. production_food_penalty   = 0, 0
  276.  
  277. ruler_male_title = _("King")
  278. ruler_female_title = _("Queen")
  279.  
  280. helptext = _("\
  281. Under Monarchy, a king or queen serves as a hereditary figurehead\
  282.  for your government.\
  283. \n\n\
  284. Monarchy suffers the same small amount of corruption that the\
  285.  Republic does.\
  286. \n\n\
  287. Settlers consume 1 food per turn under Monarchy.\
  288. \n\n\
  289. If a city governed by a Monarchy is celebrating, it will receive a\
  290.  bonus of 1 trade in each square which already produces at least 1\
  291.  trade.  See Happiness for details.\
  292. \n\n\
  293. Under Monarchy, your cities can support up to 3 military units\
  294.  without paying shields for upkeep.  (Additional units require 1\
  295.  production shield each.)\
  296. \n\n\
  297. You may impose limited martial law under Monarchy: each military\
  298.  unit in a city, up to a maximum of 3, will keep one unhappy citizen\
  299.  content.\
  300. ")
  301.  
  302. ;------------------------------------------------------------------------
  303. [government_communism]
  304.  
  305. name        = _("Communism")
  306. tech_req    = "Communism"
  307. graphic     = "gov.communism"
  308. graphic_alt = "-"
  309. flags       = "Build_Veteran_Diplomats"
  310. hints       = "Favors_Growth"
  311. subgoal        = "Monarchy"
  312.  
  313. martial_law_max  = 100  ; unlimited
  314. martial_law_per  = 1
  315. max_single_rate  = 100
  316. civil_war_chance = 50
  317. empire_size_mod  = -2
  318. rapture_size     = 0
  319.  
  320. unit_unhappy_factor = 0
  321. unit_shield_factor  = 1
  322. unit_food_factor    = 1
  323. unit_gold_factor    = 1 
  324.  
  325. unit_free_unhappy = 0
  326. unit_free_shield  = 0
  327. unit_free_food    = 0
  328. unit_free_gold    = 0
  329.  
  330. corruption_level           = 50
  331. corruption_modifier        = 80
  332. corruption_fixed_distance  = 10
  333. corruption_distance_factor = 1 
  334. corruption_extra_distance  = 0 
  335.  
  336. production_trade_bonus    = 0, 1
  337. production_shield_bonus   = 0, 0
  338. production_food_bonus     = 0, 0
  339.  
  340. production_trade_penalty  = 0, 0
  341. production_shield_penalty = 0, 0
  342. production_food_penalty   = 0, 0
  343.  
  344. ruler_male_title = _("Comrade")
  345. ruler_female_title = _("Comrade")
  346.  
  347. helptext = _("\
  348. A Communist government is based on the ideal that all people are\
  349.  equal.  All goods are owned by the state, rather than by private\
  350.  citizens.  Communism gives a balance between military and commercial\
  351.  styles of government.\
  352. \n\n\
  353. Under Communism, corruption does not vary by distance from the\
  354.  capital; all cities (including the capital) have a modest amount\
  355.  of corruption.  In addition, Communist cities more than 10 squares\
  356.  away from the capital are considered to be only 10 squares away when\
  357.  computing the cost of inciting a revolt (see Units, Diplomat).\
  358. \n\n\
  359. Settlers consume 2 food per turn under Communism.\
  360. \n\n\
  361. If a city governed by Communism is celebrating, it will receive a\
  362.  bonus of 1 trade in each square which already produces at least 1\
  363.  trade.  See Happiness for details.\
  364. \n\n\
  365. Diplomats and Spies created under Communism are always veterans.\
  366. \n\n\
  367. Under Communism, your cities can support up to 3 military units\
  368.  without paying shields for upkeep.  (Additional units require 1\
  369.  production shield each.)\
  370. \n\n\
  371. You impose limited but efficient martial law under Communism.  Each\
  372.  military unit inside a city, up to a maximum of 3, will keep 2\
  373.  unhappy citizens content.\
  374. ")
  375.  
  376. ;------------------------------------------------------------------------
  377. [government_republic]
  378.  
  379. name        = _("Republic")
  380. tech_req    = "The Republic"
  381. graphic     = "gov.republic"
  382. graphic_alt = "-"
  383. flags       = "Has_Senate"
  384. hints       = "Is_Nice"
  385. subgoal        = "Monarchy"
  386.  
  387. martial_law_max  = 0
  388. martial_law_per  = 0
  389. max_single_rate  = 100
  390. civil_war_chance = 40
  391. empire_size_mod  = -1
  392. rapture_size     = 3
  393.  
  394. unit_unhappy_factor = 1
  395. unit_shield_factor  = 1
  396. unit_food_factor    = 2
  397. unit_gold_factor    = 1 
  398.  
  399. unit_free_unhappy = 0
  400. unit_free_shield  = 0
  401. unit_free_food    = 0
  402. unit_free_gold    = 0
  403.  
  404. corruption_level           = 100
  405. corruption_modifier        = 67
  406. corruption_fixed_distance  = 0
  407. corruption_distance_factor = 1 
  408. corruption_extra_distance  = 0 
  409.  
  410. production_trade_bonus    = 1, 1
  411. production_shield_bonus   = 0, 0
  412. production_food_bonus     = 0, 0
  413.  
  414. production_trade_penalty  = 0, 0
  415. production_shield_penalty = 0, 0
  416. production_food_penalty   = 0, 0
  417.  
  418. ruler_male_title = _("Consul")
  419. ruler_female_title = _("Consul")
  420.  
  421. helptext = _("\
  422. Under a Republican government, citizens hold an election to select a\
  423.  representative who will govern them; since elected leaders must\
  424.  remain popular to remain in control, citizens are given a greater\
  425.  degree of freedom.  Citizens under the Republic become unhappy\
  426.  easily, but the self-sufficiency of your citizens allows high levels\
  427.  of trade.\
  428. \n\n\
  429. Cities under the Republic suffer a small amount of corruption.\
  430. \n\n\
  431. Settlers consume 2 food per turn under the Republic.  Squares with\
  432.  at least 1 trade resource get a trade bonus of 1 under the Republic.\
  433. \n\n\
  434. Republican cities which are celebrating grow at a rate of 1 citizen\
  435.  per turn; see Happiness for details.\
  436. \n\n\
  437. Under the Republic, military units require 1 production shield each\
  438.  for upkeep.  In addition the following units are considered\
  439.  aggressive units:\
  440. \n\n\
  441. - units with an attack strength greater than 0 which are not\
  442.  inside a city or inside a fortress within 3 squares of a friendly\
  443.  city\
  444. \n\n\
  445. - air units (including missiles and helicopters) and sea units\
  446.  with an attack strength greater than 0, regardless of their\
  447.  location\
  448. \n\n\
  449. The citizens of a city will tolerate 1 aggressive unit; subsequent\
  450.  units will generate 1 unhappy citizen each.\
  451. ")
  452.  
  453. ;------------------------------------------------------------------------
  454. [government_democracy]
  455.  
  456. name        = _("Democracy")
  457. tech_req    = "Democracy"
  458. graphic     = "gov.democracy"
  459. graphic_alt = "-"
  460. flags       = "Has_Senate", "Revolution_When_Unhappy" 
  461. hints       = "Is_Nice"
  462. subgoal        = "Republic"
  463.  
  464. martial_law_max  = 0
  465. martial_law_per  = 0
  466. max_single_rate  = 100
  467. civil_war_chance = 30
  468. empire_size_mod  = 0
  469. rapture_size     = 3
  470.  
  471. unit_unhappy_factor = 2
  472. unit_shield_factor  = 1
  473. unit_food_factor    = 2
  474. unit_gold_factor    = 1 
  475.  
  476. unit_free_unhappy = 0
  477. unit_free_shield  = 0
  478. unit_free_food    = 0
  479. unit_free_gold    = 0
  480.  
  481. corruption_level           = 0
  482. corruption_modifier        = 1
  483. corruption_fixed_distance  = 0
  484. corruption_distance_factor = 0 
  485. corruption_extra_distance  = 0 
  486.  
  487. production_trade_bonus    = 1, 1
  488. production_shield_bonus   = 0, 0
  489. production_food_bonus     = 0, 0
  490.  
  491. production_trade_penalty  = 0, 0
  492. production_shield_penalty = 0, 0
  493. production_food_penalty   = 0, 0
  494.  
  495. ruler_male_title = _("President")
  496. ruler_female_title = _("President")
  497.  
  498. helptext = _("\
  499. Under Democracy, citizens govern directly by voting on issues.\
  500.  Democracy offers the highest possible level of trade, but also\
  501.  offers the most potential for unhappiness.  There is no corruption\
  502.  during Democracy, but citizens become very upset during wars.\
  503. \n\n\
  504. Settlers consume 2 food per turn under Democracy.  Squares with\
  505.  at least 1 trade resource get a trade bonus of 1 under Democracy.\
  506. \n\n\
  507. Democratic cities which are celebrating grow at a rate of 1 citizen\
  508.  per turn; see Happiness for details.\
  509. \n\n\
  510. Under Democracy, military units require 1 production shield each for\
  511.  upkeep.  In addition the following units generate unhappiness:\
  512. \n\n\
  513. - Units with an attack strength greater than 0 which are not\
  514.  inside a city, or inside a fortress within 3 squares of a\
  515.  friendly city, generate 2 unhappy citizens.\
  516. \n\n\
  517. - Air/sea units with an attack strength greater than 0 which are\
  518.  inside a city or nearby fortress generate only 1 unhappy citizen.\
  519. \n\n\
  520. If a city remains in disorder more than 2 turns under Democratic\
  521.  rule, the citizens will spontaneously revolt and plunge your\
  522.  civilization into Anarchy.\
  523. \n\n\
  524. Because (happy) citizens of Democracy believe strongly in the\
  525.  government, their loyalty is unswerving.  Military units of\
  526.  Democratic civilizations cannot be bribed, and Democratic cities\
  527.  cannot be incited to revolt by enemy Diplomats and Spies.\
  528. ")
  529.