Make enum type conversion explicit.
[freeciv.git] / data / classic / governments.ruleset
blob8c38cdcdbebf7c48a96b1da9bd9e28f7e7ea9681
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 "rulesetdir <mysubdir>" in the server to have freeciv
8 ; use your new customized file.
10 ; Note that the freeciv AI may not cope well with anything more
11 ; than minor changes.
13 [datafile]
14 description="Classic governments data for Freeciv (as Civ2, minus fundamentalism)"
15 options="+Freeciv-ruleset-Devel-2017.Jan.02 web-compatible"
16 format_version=20
18 [governments]
19 during_revolution="Anarchy"
21 ; /* <-- avoid gettext warnings
23 ; Below: The individual government types, one per section.
25 ; The actual tag used (the * in [government_*]) does not matter, except
26 ; it must be unique within this file, and it may be used in debug
27 ; output when reading this file.
29 ; For the "official" rulesets, the order of these sections should not
30 ; be changed because that would break backward compatability with
31 ; savegames.  (In particular, if Fundamentalism is added to default
32 ; ruleset, should be added at end.)
34 ; Notes on fields:
36 ; name         = translatable name as seen by user
37 ; rule_name    = (optional) name for savegames, rulesets etc; if not
38 ;                present, 'name' is used. Since the name used in savegames
39 ;                must not change, use this when renaming a government after a
40 ;                ruleset has been released.
41 ; reqs         = requirements for this government (see README.effects)
42 ; graphic      = tag specifing preferred graphic
43 ; graphic_alt  = alternate graphics tag if preferred is not found;
44 ;                should be a standard tag if preferred is not;
45 ;                otherwise may be "-"
46 ; ai_better    = AI will not consider this government for use if the
47 ;                government listed here is available
48 ; ruler_titles = ruler titles by nation, "-" is default, and non-matched
49 ;                nations are ignored
50 ; helptext     = optional help text string; should escape all raw newlines
51 ;                so that xgettext parsing works
53 ; */ <-- avoid gettext warnings
55 ;------------------------------------------------------------------------
56 [government_anarchy]
58 name        = _("Anarchy")
59 ; No reqs
60 graphic     = "gov.anarchy"
61 graphic_alt = "-"
63 ruler_male_title = _("Warlord %s")
64 ruler_female_title = _("Warlady %s")
66 helptext = _("\
67 Anarchy is simply the absence of any recognizable government.\
68  Citizens are disorganized and unproductive, and will spend all\
69  income as quickly as possible, rather than paying taxes or\
70  conducting research.\
71 "), _("\
72 Anarchy offers slightly less corruption than Despotism,\
73  but slightly more unhappiness.\
76 ;------------------------------------------------------------------------
77 [government_despotism]
79 name        = _("Despotism")
80 ; No reqs
81 graphic     = "gov.despotism"
82 graphic_alt = "-"
83 ai_better   = "Monarchy"
85 ruler_male_title = _("Chief %s")
86 ruler_female_title = _("?female:Chief %s")
88 helptext = _("\
89 Under Despotism, you are the absolute ruler of your people.  Your\
90  control over your citizens is maintained largely by martial law.\
91 "), _("\
92 Despotism suffers the highest level of corruption of all\
93  forms of government.\
96 ;------------------------------------------------------------------------
97 [government_monarchy]
99 name        = _("Monarchy")
100 reqs = { "type", "name", "range"
101          "tech", "Monarchy", "Player"
102        }
103 graphic     = "gov.monarchy"
104 graphic_alt = "-"
105 ai_better   = "Communism"
107 ruler_male_title = _("King %s")
108 ruler_female_title = _("Queen %s")
110 helptext = _("\
111 Under Monarchy, a king or queen serves as a hereditary figurehead\
112  for your government.\
113 "), _("\
114 Monarchy suffers the same small amount of corruption that\
115  the Republic does.\
118 ;------------------------------------------------------------------------
119 [government_communism]
121 name        = _("Communism")
122 reqs = { "type", "name", "range"
123          "tech", "Communism", "Player"
124        }
125 graphic     = "gov.communism"
126 graphic_alt = "-"
128 ruler_male_title = _("Comrade %s")
129 ruler_female_title = _("?female:Comrade %s")
131 helptext = _("\
132 A Communist government is based on the ideal that all people are\
133  equal.  All goods are owned by the state, rather than by private\
134  citizens.  Communism gives a balance between military and commercial\
135  styles of government.\
136 "), _("\
137 Under Communism, corruption does not vary by distance from\
138  the capital; all cities (including the capital) have a modest amount\
139  of corruption.\
142 ;------------------------------------------------------------------------
143 [government_republic]
145 name        = _("Republic")
146 reqs = { "type", "name", "range"
147          "tech", "The Republic", "Player"
148        }
149 graphic     = "gov.republic"
150 graphic_alt = "-"
152 ruler_male_title = _("President %s")
153 ruler_female_title = _("?female:President %s")
155 helptext = _("\
156 Under a Republican government, citizens hold an election to select a\
157  representative who will govern them; since elected leaders must\
158  remain popular to remain in control, citizens are given a greater\
159  degree of freedom.  Citizens under the Republic become unhappy\
160  easily, but the self-sufficiency of your citizens allows high levels\
161  of trade.\
164 ;------------------------------------------------------------------------
165 [government_democracy]
167 name        = _("Democracy")
168 reqs = { "type", "name", "range"
169          "tech", "Democracy", "Player"
170        }
171 graphic     = "gov.democracy"
172 graphic_alt = "-"
174 ruler_male_title = _("Prime Minister %s")
175 ruler_female_title = _("?female:Prime Minister %s")
177 helptext = _("\
178 Under Democracy, citizens govern directly by voting on issues.\
179  Democracy offers the highest possible level of trade, but also\
180  offers the most potential for unhappiness.  There is no corruption\
181  during Democracy, but citizens become very upset during\
182  wars.\
185 ; /* <-- avoid gettext warnings
187 ; Multipliers (aka policies)
189 ; name                    = translatable name as seen by user
190 ; rule_name               = (optional) name for savegames, rulesets etc; if not
191 ;                           present, 'name' is used. Since the name used in
192 ;                           savegames must not change, use this when renaming
193 ;                           a multiplier after a ruleset has been released.
194 ; default                 = default value (as presented in UI)
195 ; start                   = minimum value (as presented in UI)
196 ; stop                    = maximum value (as presented in UI)
197 ; step                    = minimum increase/decrease (as presented in UI)
198 ; offset                  = offset/factor control how UI values are turned
199 ; factor                  = into effect values for use in effects.ruleset.
200 ;                           effect_value = (ui_value + offset) * (factor/100)
201 ;                           Optional; by default offset=0, factor=100, so
202 ;                           that UI values are used as-is.
203 ; helptext                = optional help text string; should escape all raw
204 ;                           newlines so that xgettext parsing works
206 ; */ <-- avoid gettext warnings