Last change
on this file was 160, checked in by chronos, 6 years ago |
- Added: StdAI from original game. Previously used only AI dev kit.
|
File size:
3.6 KB
|
Line | |
---|
1 | unit Names;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Protocol;
|
---|
7 |
|
---|
8 | const
|
---|
9 |
|
---|
10 | Name_Advance: array[0..nAdv-1] of string=
|
---|
11 | ('Advanced Flight',
|
---|
12 | 'Amphibious Warfare',
|
---|
13 | 'Astronomy',
|
---|
14 | 'Atomic Theory',
|
---|
15 | 'Automobile',
|
---|
16 | 'Ballistics',
|
---|
17 | 'Banking',
|
---|
18 | 'Bridge Building',
|
---|
19 | 'Bronze Working',
|
---|
20 | 'Ceremonial Burial',
|
---|
21 | 'Chemistry',
|
---|
22 | 'Chivalry',
|
---|
23 | 'Composites',
|
---|
24 | 'Code of Laws',
|
---|
25 | 'Combined Arms',
|
---|
26 | 'Combustion Engine',
|
---|
27 | 'Communism',
|
---|
28 | 'Computers',
|
---|
29 | 'Conscription',
|
---|
30 | 'Construction',
|
---|
31 | 'The Corporation',
|
---|
32 | 'Space Flight',
|
---|
33 | 'Currency',
|
---|
34 | 'Democracy',
|
---|
35 | 'Economics',
|
---|
36 | 'Electricity',
|
---|
37 | 'Electronics',
|
---|
38 | 'Engineering',
|
---|
39 | 'Environmentalism',
|
---|
40 | 'The Wheel',
|
---|
41 | 'Explosives',
|
---|
42 | 'Flight',
|
---|
43 | 'Intelligence',
|
---|
44 | 'Gunpowder',
|
---|
45 | 'Horseback Riding',
|
---|
46 | 'Impulse Drive',
|
---|
47 | 'Industrialization',
|
---|
48 | 'Intelligent Arms',
|
---|
49 | 'Invention',
|
---|
50 | 'Iron Working',
|
---|
51 | 'The Laser',
|
---|
52 | 'Nuclear Power',
|
---|
53 | 'Literature',
|
---|
54 | 'Internet',
|
---|
55 | 'Magnetism',
|
---|
56 | 'Map Making',
|
---|
57 | 'Masonry',
|
---|
58 | 'Mass Production',
|
---|
59 | 'Mathematics',
|
---|
60 | 'Medicine',
|
---|
61 | 'Metallurgy',
|
---|
62 | 'Miniaturization',
|
---|
63 | 'Mobile Warfare',
|
---|
64 | 'Monarchy',
|
---|
65 | 'Mysticism',
|
---|
66 | 'Navigation',
|
---|
67 | 'Nuclear Fission',
|
---|
68 | 'Philosophy',
|
---|
69 | 'Physics',
|
---|
70 | 'Plastics',
|
---|
71 | 'Poetry',
|
---|
72 | 'Pottery',
|
---|
73 | 'Radio Communication',
|
---|
74 | 'Recycling',
|
---|
75 | 'Refrigeration',
|
---|
76 | 'Monotheism',
|
---|
77 | 'The Republic',
|
---|
78 | 'Robotics',
|
---|
79 | 'Rocketry',
|
---|
80 | 'Railroad',
|
---|
81 | 'Sanitation',
|
---|
82 | 'Science',
|
---|
83 | 'Writing',
|
---|
84 | 'Seafaring',
|
---|
85 | 'Self-Contained Environment',
|
---|
86 | 'Stealth',
|
---|
87 | 'Steam Engine',
|
---|
88 | 'Steel',
|
---|
89 | 'Synthetic Food',
|
---|
90 | 'Tactics',
|
---|
91 | 'Theology',
|
---|
92 | 'Theory of Gravity',
|
---|
93 | 'Trade',
|
---|
94 | 'Transstellar Colonization',
|
---|
95 | 'University',
|
---|
96 | 'Advanced Rocketry',
|
---|
97 | 'Warrior Code',
|
---|
98 | 'Alphabet',
|
---|
99 | 'Polytheism',
|
---|
100 | 'Refining',
|
---|
101 | 'Computing Technology',
|
---|
102 | 'Nano Technology',
|
---|
103 | 'Material Technology',
|
---|
104 | 'Artificial Intelligence');
|
---|
105 |
|
---|
106 | Name_Improvement: array[0..nImp-1] of string=
|
---|
107 | ('The Pyramids',
|
---|
108 | 'The Temple of Zeus',
|
---|
109 | 'The Hanging Gardens',
|
---|
110 | 'The Colossus',
|
---|
111 | 'The Lighthouse',
|
---|
112 | 'The Great Library',
|
---|
113 | 'The Oracle',
|
---|
114 | 'Sun Tzu''s War Academy',
|
---|
115 | 'Leonardo''s Workshop',
|
---|
116 | 'Magellan''s Expedition',
|
---|
117 | 'Michelangelo''s Chapel',
|
---|
118 | '*',
|
---|
119 | 'Newton''s College',
|
---|
120 | 'Bach''s Cathedral',
|
---|
121 | '*',
|
---|
122 | 'The Statue of Liberty',
|
---|
123 | 'The Eiffel Tower',
|
---|
124 | 'The Hoover Dam',
|
---|
125 | 'The Shinkansen Express',
|
---|
126 | 'The Manhattan Project',
|
---|
127 | 'MIR Space Station',
|
---|
128 | '*',
|
---|
129 | '*',
|
---|
130 | '*',
|
---|
131 | '*',
|
---|
132 | '*',
|
---|
133 | '*',
|
---|
134 | '*',
|
---|
135 | 'Trade Goods',
|
---|
136 | 'Barracks',
|
---|
137 | 'Granary',
|
---|
138 | 'Temple',
|
---|
139 | 'Marketplace',
|
---|
140 | 'Library',
|
---|
141 | 'Courthouse',
|
---|
142 | 'City Walls',
|
---|
143 | 'Aqueduct',
|
---|
144 | 'Bank',
|
---|
145 | 'Cathedral',
|
---|
146 | 'University',
|
---|
147 | 'Harbor',
|
---|
148 | 'Theater',
|
---|
149 | 'Factory',
|
---|
150 | 'Manufacturing Plant',
|
---|
151 | 'Recycling Center',
|
---|
152 | 'Power Station',
|
---|
153 | 'Hydroelectric Dam',
|
---|
154 | 'Nuclear Plant',
|
---|
155 | 'Offshore Platform',
|
---|
156 | 'Town Hall',
|
---|
157 | 'Sewer System',
|
---|
158 | 'Supermarket',
|
---|
159 | 'Superhighways',
|
---|
160 | 'Research Lab',
|
---|
161 | 'SAM Missile Battery',
|
---|
162 | 'Coastal Fortress',
|
---|
163 | 'Airport',
|
---|
164 | 'Dockyard',
|
---|
165 | 'Palace',
|
---|
166 | 'Great Wall',
|
---|
167 | 'Colosseum',
|
---|
168 | 'Observatory',
|
---|
169 | 'Military Academy',
|
---|
170 | 'Command Bunker',
|
---|
171 | 'Algae Plant',
|
---|
172 | 'Stock Exchange',
|
---|
173 | 'Space Port',
|
---|
174 | 'Colony Ship Component',
|
---|
175 | 'Power Module',
|
---|
176 | 'Habitation Module');
|
---|
177 |
|
---|
178 | Name_Feature: array[0..nFeature-1] of string=
|
---|
179 | ('Weapons',
|
---|
180 | 'Armor',
|
---|
181 | 'Mobility',
|
---|
182 | 'Sea Transport',
|
---|
183 | 'Carrier',
|
---|
184 | 'Turbines',
|
---|
185 | 'Bombs',
|
---|
186 | 'Fuel',
|
---|
187 | 'Air Transport',
|
---|
188 | 'Navigation',
|
---|
189 | 'Radar / Sonar',
|
---|
190 | 'Submarine',
|
---|
191 | 'Artillery',
|
---|
192 | 'Alpine',
|
---|
193 | 'Supply Ship',
|
---|
194 | 'Overweight',
|
---|
195 | 'Air Defence',
|
---|
196 | 'Spy Plane',
|
---|
197 | 'Steam Power',
|
---|
198 | 'Nuclear Power',
|
---|
199 | 'Jet Engines',
|
---|
200 | 'Stealth',
|
---|
201 | 'Fanatic',
|
---|
202 | 'First Strike',
|
---|
203 | 'Power of Will',
|
---|
204 | 'Academy Training',
|
---|
205 | 'Line Production');
|
---|
206 |
|
---|
207 | Name_TerrainType: array[0..11] of string=
|
---|
208 | ('Ocean',
|
---|
209 | 'Coast',
|
---|
210 | 'Grassland',
|
---|
211 | 'Desert',
|
---|
212 | 'Prairie',
|
---|
213 | 'Tundra',
|
---|
214 | 'Arctic',
|
---|
215 | 'Swamp',
|
---|
216 | '*',
|
---|
217 | 'Forest',
|
---|
218 | 'Hills',
|
---|
219 | 'Mountains');
|
---|
220 |
|
---|
221 | Name_Government: array[0..nGov-1] of string=
|
---|
222 | ('Anarchy',
|
---|
223 | 'Despotism',
|
---|
224 | 'Monarchy',
|
---|
225 | 'Republic',
|
---|
226 | 'Fundamentalism',
|
---|
227 | 'Communism',
|
---|
228 | 'Democracy',
|
---|
229 | 'Future Society');
|
---|
230 |
|
---|
231 | implementation
|
---|
232 |
|
---|
233 | end.
|
---|
234 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.