home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Game Guide / AmigaGameGuide_CD.iso / Amiga / PD-Games / Freeciv / data / civ1 / units.ruleset < prev   
Encoding:
Text File  |  1978-01-01  |  30.5 KB  |  1,358 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 units <mysubdir>" in the server to have freeciv
  8. ; use your new customized file.
  9.  
  10. ; Note that the freeciv AI may not cope well when using these
  11. ; units, mainly because of the differences between Civ1 and Civ2
  12. ; style combats (mainly hitpoints).
  13.  
  14. [datafile]
  15. description="Civ1-style unit_type data for Freeciv"
  16. options="1.9"
  17.  
  18. [units_adjust]
  19. max_hitpoints=10                ; 0 means no max
  20. max_firepower=1                 ; 0 means no max
  21. firepower_factor=10             ; Means effective hitpoints=1
  22.  
  23. ; Below: The individual units, one per section.
  24. ;
  25. ; The number can be variable, up to 200.  
  26. ; However for the "official" rulesets, units should not be removed 
  27. ; because that would break backward compatability with savegames.
  28. ;
  29. ; The order here matters: later units are considered "better" for
  30. ; a given flag or role.  
  31. ;
  32. ; The actual tag used (the * in [unit_*]) 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. ; Notes:
  37. ;
  38. ; name          = name as seen by user 
  39. ; graphic       = tag specifing preferred graphic
  40. ; graphic_alt    = tag for alternate garphic if preferred graphic is not 
  41. ;          present; especially if preferred graphic is non-standard, 
  42. ;          this should be a standard tag.  Otherwise can use eg "-" 
  43. ;          for no alternate graphic.
  44. ; tech_req      = required advance, names from techs.ruleset, or special:
  45. ;                 "None" => available from start; "Never" => never available
  46. ; obsolete_by   = another unit name
  47. ; move_type     = "Land" or "Sea" or "Air" or "Heli"
  48. ; transport_cap = Number of units (ground, or air/missiles, depending on flags)
  49. ; fuel          = number of turns, for air units
  50. ; uk_*          = upkeep costs, these are used as base values in the game
  51. ; flags         = special flag strings, as in common/unit.h,unit.c
  52. ; roles         = special role strings, as in common/unit.h,unit.c
  53. ; helptext    = optional help text string; should escape all raw newlines 
  54. ;          so that xgettext parsing works
  55. ;
  56. ; Following flag strings require extra fields:  (but do not appear in Civ1)
  57. ;  "Paratroopers"
  58. ;   paratroopers_range = the maximal range the unit can be paradropped to
  59. ;   paratroopers_mr_req = the move rate which is required at least for
  60. ;                         paradropping
  61. ;   paratroopers_mr_sub = the move rate which is subtracted after paradropping
  62.  
  63. ; Civ1 does not have initial explorers, but we want to do something
  64. ; sensible if the explorer server option is set non-zero.
  65. ; Likely options:
  66. ; - Diplomat: nonmilitary (good), but a bit incongruous for a
  67. ;   primitive civilization (and may still bribe etc).
  68. ; - Cavalry: in character, but could overwhelm unlucky opponents.
  69. ; - Militia: not much good for exploring, but an ok initial unit.
  70. ;   (not likely to overwhelm anyone too quickly :-)
  71.  
  72. [unit_settlers]
  73. name          = _("Settlers")
  74. move_type     = "Land"
  75. tech_req      = "None"
  76. obsolete_by   = "None"
  77. graphic       = "u.settlers"
  78. graphic_alt   = "-"
  79. build_cost    = 40
  80. attack        = 0
  81. defense       = 1
  82. hitpoints     = 20
  83. firepower     = 1
  84. move_rate     = 1
  85. vision_range  = 1
  86. transport_cap = 0
  87. fuel          = 0
  88. uk_happy      = 0
  89. uk_shield     = 1
  90. uk_food       = 1
  91. uk_gold       = 0
  92. flags         = "Settlers", "NonMil", "Cities"
  93. roles         = ""
  94. helptext      = _("\
  95. Setters are one of the key units in the game.  They can be used to\
  96.  found new cities, irrigate land, build roads, railroads, fortresses\
  97.  and mines, and clean up pollution.  Upkeep for Settlers is in food\
  98.  as well as production, and a Setter can die if its supporting city\
  99.  runs out of food.\
  100. \n\n\
  101. Settlers may work together to decrease the amount of\
  102.  time required for long projects.  If two or more Settlers\
  103.  are both working on the same task in the same square,\
  104.  their efforts will be added together each turn until the task is\
  105.  finished.  Be careful not to dedicate too many workers to one task,\
  106.  though; excess effort can be wasted, and a group of Settlers\
  107.  is highly vulnerable to enemy attacks.\
  108. ")
  109.  
  110. [unit_engineers]
  111. name          = _("Engineers")
  112. move_type     = "Land"
  113. tech_req      = "Never"
  114. obsolete_by   = "None"
  115. graphic       = "u.engineers"
  116. graphic_alt   = "-"
  117. build_cost    = 40
  118. attack        = 0
  119. defense       = 2
  120. hitpoints     = 20
  121. firepower     = 1
  122. move_rate     = 2
  123. vision_range  = 1
  124. transport_cap = 0
  125. fuel          = 0
  126. uk_happy      = 0
  127. uk_shield     = 1
  128. uk_food       = 1
  129. uk_gold       = 0
  130. flags         = "Settlers", "NonMil", "Cities"
  131. roles         = ""
  132.  
  133. [unit_militia]
  134. name          = _("Militia")        ; Civ2 Warriors
  135. move_type     = "Land"
  136. tech_req      = "None"
  137. obsolete_by   = "Musketeers"
  138. graphic       = "u.warriors"
  139. graphic_alt   = "-"
  140. build_cost    = 10
  141. attack        = 1
  142. defense       = 1
  143. hitpoints     = 10
  144. firepower     = 1
  145. move_rate     = 1
  146. vision_range  = 1
  147. transport_cap = 0
  148. fuel          = 0
  149. uk_happy      = 1
  150. uk_shield     = 1
  151. uk_food       = 0
  152. uk_gold       = 0
  153. flags         = ""
  154. roles         = "DefendOk", "FirstBuild"
  155. helptext      = _("\
  156. This unit may be built from the start of the game.  It is the\
  157.  weakest unit.\
  158. ")
  159.  
  160. [unit_phalanx]
  161. name          = _("Phalanx")
  162. move_type     = "Land"
  163. tech_req      = "Bronze Working"
  164. obsolete_by   = "Musketeers"
  165. graphic       = "u.phalanx"
  166. graphic_alt   = "-"
  167. build_cost    = 20
  168. attack        = 1
  169. defense       = 2
  170. hitpoints     = 10
  171. firepower     = 1
  172. move_rate     = 1
  173. vision_range  = 1
  174. transport_cap = 0
  175. fuel          = 0
  176. uk_happy      = 1
  177. uk_shield     = 1
  178. uk_food       = 0
  179. uk_gold       = 0
  180. flags         = ""
  181. roles         = "DefendGood", "FirstBuild"
  182.  
  183. [unit_archers]
  184. name          = _("Archers")
  185. move_type     = "Land"
  186. tech_req      = "Never"
  187. obsolete_by   = "Musketeers"
  188. graphic       = "u.archers"
  189. graphic_alt   = "-"
  190. build_cost    = 30
  191. attack        = 3
  192. defense       = 2
  193. hitpoints     = 10
  194. firepower     = 1
  195. move_rate     = 1
  196. vision_range  = 1
  197. transport_cap = 0
  198. fuel          = 0
  199. uk_happy      = 1
  200. uk_shield     = 1
  201. uk_food       = 0
  202. uk_gold       = 0
  203. flags         = ""
  204. roles         = "DefendOk"
  205.  
  206. [unit_legion]
  207. name          = _("Legion")
  208. move_type     = "Land"
  209. tech_req      = "Iron Working"
  210. obsolete_by   = "Musketeers"
  211. graphic       = "u.legion"
  212. graphic_alt   = "-"
  213. build_cost    = 20
  214. attack        = 3
  215. defense       = 1
  216. hitpoints     = 10
  217. firepower     = 1
  218. move_rate     = 1
  219. vision_range  = 1
  220. transport_cap = 0
  221. fuel          = 0
  222. uk_happy      = 1
  223. uk_shield     = 1
  224. uk_food       = 0
  225. uk_gold       = 0
  226. flags         = ""
  227. roles         = "DefendOk", "Hut", "BarbarianBuild", "BarbarianSea"
  228.  
  229. [unit_pikemen]
  230. name          = _("Pikemen")
  231. move_type     = "Land"
  232. tech_req      = "Never"
  233. obsolete_by   = "Musketeers"
  234. graphic       = "u.pikemen"
  235. graphic_alt   = "-"
  236. build_cost    = 20
  237. attack        = 1
  238. defense       = 2
  239. hitpoints     = 10
  240. firepower     = 1
  241. move_rate     = 1
  242. vision_range  = 1
  243. transport_cap = 0
  244. fuel          = 0
  245. uk_happy      = 1
  246. uk_shield     = 1
  247. uk_food       = 0
  248. uk_gold       = 0
  249. flags         = "Pikemen"
  250. roles         = "DefendGood", "FirstBuild"
  251.  
  252. [unit_musketeers]
  253. name          = _("Musketeers")
  254. move_type     = "Land"
  255. tech_req      = "Gunpowder"
  256. obsolete_by   = "Riflemen"
  257. graphic       = "u.musketeers"
  258. graphic_alt   = "-"
  259. build_cost    = 30
  260. attack        = 2
  261. defense       = 3
  262. hitpoints     = 20
  263. firepower     = 1
  264. move_rate     = 1
  265. vision_range  = 1
  266. transport_cap = 0
  267. fuel          = 0
  268. uk_happy      = 1
  269. uk_shield     = 1
  270. uk_food       = 0
  271. uk_gold       = 0
  272. flags         = ""
  273. roles         = "DefendGood", "FirstBuild", "HutTech",
  274.                 "BarbarianTech", "BarbarianBuildTech", "BarbarianSeaTech"
  275.  
  276. [unit_fanatics]
  277. name          = _("Fanatics")
  278. move_type     = "Land"
  279. tech_req      = "Never"
  280. obsolete_by   = "None"
  281. graphic       = "u.fanatics"
  282. graphic_alt   = "-"
  283. build_cost    = 20
  284. attack        = 4
  285. defense       = 4
  286. hitpoints     = 20
  287. firepower     = 1
  288. move_rate     = 1
  289. vision_range  = 1
  290. transport_cap = 0
  291. fuel          = 0
  292. uk_happy      = 1
  293. uk_shield     = 1
  294. uk_food       = 0
  295. uk_gold       = 0
  296. flags         = ""
  297. roles         = "DefendGood"
  298.  
  299. [unit_partisan]
  300. name          = _("Partisan")
  301. move_type     = "Land"
  302. tech_req      = "Never"
  303. obsolete_by   = "None"
  304. graphic       = "u.partisan"
  305. graphic_alt   = "-"
  306. build_cost    = 50
  307. attack        = 4
  308. defense       = 4
  309. hitpoints     = 20
  310. firepower     = 1
  311. move_rate     = 1
  312. vision_range  = 1
  313. transport_cap = 0
  314. fuel          = 0
  315. uk_happy      = 1
  316. uk_shield     = 1
  317. uk_food       = 0
  318. uk_gold       = 0
  319. flags         = "IgTer", "IgZOC"
  320. roles         = "DefendGood", "Partisan", "BarbarianTech"
  321.  
  322. [unit_alpine_troops]
  323. name          = _("Alpine Troops")
  324. move_type     = "Land"
  325. tech_req      = "Never"
  326. obsolete_by   = "None"
  327. graphic       = "u.alpine_troops"
  328. graphic_alt   = "-"
  329. build_cost    = 50
  330. attack        = 5
  331. defense       = 5
  332. hitpoints     = 20
  333. firepower     = 1
  334. move_rate     = 1
  335. vision_range  = 1
  336. transport_cap = 0
  337. fuel          = 0
  338. uk_happy      = 1
  339. uk_shield     = 1
  340. uk_food       = 0
  341. uk_gold       = 0
  342. flags         = "IgTer"
  343. roles         = "DefendGood"
  344.  
  345. [unit_riflemen]
  346. name          = _("Riflemen")
  347. move_type     = "Land"
  348. tech_req      = "Conscription"
  349. obsolete_by   = "None"
  350. graphic       = "u.riflemen"
  351. graphic_alt   = "-"
  352. build_cost    = 30
  353. attack        = 3
  354. defense       = 5
  355. hitpoints     = 20
  356. firepower     = 1
  357. move_rate     = 1
  358. vision_range  = 1
  359. transport_cap = 0
  360. fuel          = 0
  361. uk_happy      = 1
  362. uk_shield     = 1
  363. uk_food       = 0
  364. uk_gold       = 0
  365. flags         = ""
  366. roles         = "DefendGood", "FirstBuild"
  367.  
  368. [unit_marines]
  369. name          = _("Marines")
  370. move_type     = "Land"
  371. tech_req      = "Never"
  372. obsolete_by   = "None"
  373. graphic       = "u.marines"
  374. graphic_alt   = "-"
  375. build_cost    = 60
  376. attack        = 8
  377. defense       = 5
  378. hitpoints     = 20
  379. firepower     = 1
  380. move_rate     = 1
  381. vision_range  = 1
  382. transport_cap = 0
  383. fuel          = 0
  384. uk_happy      = 1
  385. uk_shield     = 1
  386. uk_food       = 0
  387. uk_gold       = 0
  388. flags         = "Marines"
  389. roles         = "DefendOk", "BarbarianSeaTech"
  390.  
  391. [unit_paratroopers]
  392. name          = _("Paratroopers")
  393. move_type     = "Land"
  394. tech_req      = "Never"
  395. obsolete_by   = "None"
  396. graphic       = "u.paratroopers"
  397. graphic_alt   = "-"
  398. build_cost    = 60
  399. attack        = 6
  400. defense       = 4
  401. hitpoints     = 20
  402. firepower     = 1
  403. move_rate     = 1
  404. vision_range  = 1
  405. transport_cap = 0
  406. fuel          = 0
  407. uk_happy      = 1
  408. uk_shield     = 1
  409. uk_food       = 0
  410. uk_gold       = 0
  411. flags         = ""
  412. roles         = "DefendOk"
  413.  
  414. [unit_mech_inf]
  415. name          = _("Mech. Inf.")
  416. move_type     = "Land"
  417. tech_req      = "Labor Union"
  418. obsolete_by   = "None"
  419. graphic       = "u.mech_inf"
  420. graphic_alt   = "-"
  421. build_cost    = 50
  422. attack        = 6
  423. defense       = 6
  424. hitpoints     = 30
  425. firepower     = 1
  426. move_rate     = 3
  427. vision_range  = 1
  428. transport_cap = 0
  429. fuel          = 0
  430. uk_happy      = 1
  431. uk_shield     = 1
  432. uk_food       = 0
  433. uk_gold       = 0
  434. flags         = ""
  435. roles         = "DefendGood"
  436. helptext      = _("\
  437. Mechanized Infantry; this unit has the strongest defence strength\
  438.  of any land unit, but is only available near the end of the\
  439.  technology tree.\
  440. ")
  441.  
  442. [unit_cavalry]
  443. name          = _("Cavalry")          ; Civ2 Horsemen
  444. move_type     = "Land"
  445. tech_req      = "Horseback Riding"
  446. obsolete_by   = "Musketeers"
  447. graphic       = "u.horsemen"
  448. graphic_alt   = "-"
  449. build_cost    = 20
  450. attack        = 2
  451. defense       = 1
  452. hitpoints     = 10
  453. firepower     = 1
  454. move_rate     = 2
  455. vision_range  = 1
  456. transport_cap = 0
  457. fuel          = 0
  458. uk_happy      = 1
  459. uk_shield     = 1
  460. uk_food       = 0
  461. uk_gold       = 0
  462. flags         = ""
  463. roles         = "AttackFast", "Hut", "Barbarian"
  464.  
  465. [unit_chariot]
  466. name          = _("Chariot")
  467. move_type     = "Land"
  468. tech_req      = "The Wheel"
  469. obsolete_by   = "Knights"
  470. graphic       = "u.chariot"
  471. graphic_alt   = "-"
  472. build_cost    = 40
  473. attack        = 4
  474. defense       = 1
  475. hitpoints     = 10
  476. firepower     = 1
  477. move_rate     = 2
  478. vision_range  = 1
  479. transport_cap = 0
  480. fuel          = 0
  481. uk_happy      = 1
  482. uk_shield     = 1
  483. uk_food       = 0
  484. uk_gold       = 0
  485. flags         = ""
  486. roles         = "AttackFast", "Hut"
  487.  
  488. [unit_elephants]
  489. name          = _("Elephants")
  490. move_type     = "Land"
  491. tech_req      = "Never"
  492. obsolete_by   = "Crusaders"
  493. graphic       = "u.elephants"
  494. graphic_alt   = "-"
  495. build_cost    = 40
  496. attack        = 4
  497. defense       = 1
  498. hitpoints     = 10
  499. firepower     = 1
  500. move_rate     = 2
  501. vision_range  = 1
  502. transport_cap = 0
  503. fuel          = 0
  504. uk_happy      = 1
  505. uk_shield     = 1
  506. uk_food       = 0
  507. uk_gold       = 0
  508. flags         = ""
  509. roles         = "AttackFast"
  510.  
  511. [unit_crusaders]
  512. name          = _("Crusaders")
  513. move_type     = "Land"
  514. tech_req      = "Never"
  515. obsolete_by   = "Dragoons"
  516. graphic       = "u.crusaders"
  517. graphic_alt   = "-"
  518. build_cost    = 40
  519. attack        = 5
  520. defense       = 1
  521. hitpoints     = 10
  522. firepower     = 1
  523. move_rate     = 2
  524. vision_range  = 1
  525. transport_cap = 0
  526. fuel          = 0
  527. uk_happy      = 1
  528. uk_shield     = 1
  529. uk_food       = 0
  530. uk_gold       = 0
  531. flags         = "Horse"
  532. roles         = "AttackFast"
  533.  
  534. [unit_knights]
  535. name          = _("Knights")
  536. move_type     = "Land"
  537. tech_req      = "Chivalry"
  538. obsolete_by   = "Armor"
  539. graphic       = "u.knights"
  540. graphic_alt   = "-"
  541. build_cost    = 40
  542. attack        = 4
  543. defense       = 2
  544. hitpoints     = 10
  545. firepower     = 1
  546. move_rate     = 2
  547. vision_range  = 1
  548. transport_cap = 0
  549. fuel          = 0
  550. uk_happy      = 1
  551. uk_shield     = 1
  552. uk_food       = 0
  553. uk_gold       = 0
  554. flags         = ""
  555. roles         = "AttackFast", "HutTech", "BarbarianTech",
  556.                 "BarbarianBuildTech", "BarbarianSeaTech"
  557.  
  558. [unit_dragoons]
  559. name          = _("Dragoons")
  560. move_type     = "Land"
  561. tech_req      = "Never"
  562. obsolete_by   = "Cavalry"
  563. graphic       = "u.dragoons"
  564. graphic_alt   = "-"
  565. build_cost    = 50
  566. attack        = 5
  567. defense       = 2
  568. hitpoints     = 20
  569. firepower     = 1
  570. move_rate     = 2
  571. vision_range  = 1
  572. transport_cap = 0
  573. fuel          = 0
  574. uk_happy      = 1
  575. uk_shield     = 1
  576. uk_food       = 0
  577. uk_gold       = 0
  578. flags         = "Horse"
  579. roles         = "AttackFast", "BarbarianBuildTech", "BarbarianSeaTech"
  580.  
  581. [unit_civ2_cavalry]
  582. name          = "Civ2-Cavalry"  ; no i18n
  583. move_type     = "Land"
  584. tech_req      = "Never"
  585. obsolete_by   = "Armor"
  586. graphic       = "u.cavalry"
  587. graphic_alt   = "-"
  588. build_cost    = 60
  589. attack        = 8
  590. defense       = 3
  591. hitpoints     = 20
  592. firepower     = 1
  593. move_rate     = 2
  594. vision_range  = 1
  595. transport_cap = 0
  596. fuel          = 0
  597. uk_happy      = 1
  598. uk_shield     = 1
  599. uk_food       = 0
  600. uk_gold       = 0
  601. flags         = ""
  602. roles         = "AttackFast"
  603.  
  604. [unit_armor]
  605. name          = _("Armor")
  606. move_type     = "Land"
  607. tech_req      = "Automobile"
  608. obsolete_by   = "None"
  609. graphic       = "u.armor"
  610. graphic_alt   = "-"
  611. build_cost    = 80
  612. attack        = 10
  613. defense       = 5
  614. hitpoints     = 30
  615. firepower     = 1
  616. move_rate     = 3
  617. vision_range  = 1
  618. transport_cap = 0
  619. fuel          = 0
  620. uk_happy      = 1
  621. uk_shield     = 1
  622. uk_food       = 0
  623. uk_gold       = 0
  624. flags         = ""
  625. roles         = "AttackFast"
  626.  
  627. [unit_catapult]
  628. name          = _("Catapult")
  629. move_type     = "Land"
  630. tech_req      = "Mathematics"
  631. obsolete_by   = "Cannon"
  632. graphic       = "u.catapult"
  633. graphic_alt   = "-"
  634. build_cost    = 40
  635. attack        = 6
  636. defense       = 1
  637. hitpoints     = 10
  638. firepower     = 1
  639. move_rate     = 1
  640. vision_range  = 1
  641. transport_cap = 0
  642. fuel          = 0
  643. uk_happy      = 1
  644. uk_shield     = 1
  645. uk_food       = 0
  646. uk_gold       = 0
  647. flags         = ""
  648. roles         = "AttackStrong"
  649.  
  650. [unit_cannon]
  651. name          = _("Cannon")
  652. move_type     = "Land"
  653. tech_req      = "Metallurgy"
  654. obsolete_by   = "Artillery"
  655. graphic       = "u.cannon"
  656. graphic_alt   = "-"
  657. build_cost    = 40
  658. attack        = 8
  659. defense       = 1
  660. hitpoints     = 20
  661. firepower     = 1
  662. move_rate     = 1
  663. vision_range  = 1
  664. transport_cap = 0
  665. fuel          = 0
  666. uk_happy      = 1
  667. uk_shield     = 1
  668. uk_food       = 0
  669. uk_gold       = 0
  670. flags         = ""
  671. roles         = "AttackStrong", "BarbarianTech", "BarbarianBuildTech"
  672.  
  673. [unit_civ2_artillery]
  674. name          = "Civ2-Artillery"  ; no i18n
  675. move_type     = "Land"
  676. tech_req      = "Never"
  677. obsolete_by   = "Howitzer"
  678. graphic       = "u.artillery"
  679. graphic_alt   = "-"
  680. build_cost    = 50
  681. attack        = 10
  682. defense       = 1
  683. hitpoints     = 20
  684. firepower     = 2
  685. move_rate     = 1
  686. vision_range  = 1
  687. transport_cap = 0
  688. fuel          = 0
  689. uk_happy      = 1
  690. uk_shield     = 1
  691. uk_food       = 0
  692. uk_gold       = 0
  693. flags         = ""
  694. roles         = "AttackStrong"
  695.  
  696. [unit_artillery]
  697. name          = _("Artillery")        ; Civ2 Howitzer
  698. move_type     = "Land"
  699. tech_req      = "Robotics"
  700. obsolete_by   = "None"
  701. graphic       = "u.howitzer"
  702. graphic_alt   = "-"
  703. build_cost    = 60
  704. attack        = 12
  705. defense       = 2
  706. hitpoints     = 30
  707. firepower     = 2
  708. move_rate     = 2
  709. vision_range  = 1
  710. transport_cap = 0
  711. fuel          = 0
  712. uk_happy      = 1
  713. uk_shield     = 1
  714. uk_food       = 0
  715. uk_gold       = 0
  716. flags         = "IgWall"
  717. roles         = "AttackStrong"
  718.  
  719. [unit_fighter]
  720. name          = _("Fighter")
  721. move_type     = "Air"
  722. tech_req      = "Flight"
  723. obsolete_by   = "None"
  724. graphic       = "u.fighter"
  725. graphic_alt   = "-"
  726. build_cost    = 60
  727. attack        = 4
  728. defense       = 2
  729. hitpoints     = 20
  730. firepower     = 2
  731. move_rate     = 10
  732. vision_range  = 2
  733. transport_cap = 0
  734. fuel          = 1
  735. uk_happy      = 1
  736. uk_shield     = 1
  737. uk_food       = 0
  738. uk_gold       = 0
  739. flags         = "FieldUnit", "Fighter"
  740. roles         = ""
  741.  
  742. [unit_bomber]
  743. name          = _("Bomber")
  744. move_type     = "Air"
  745. tech_req      = "Advanced Flight"
  746. obsolete_by   = "None"
  747. graphic       = "u.bomber"
  748. graphic_alt   = "-"
  749. build_cost    = 120
  750. attack        = 12
  751. defense       = 1
  752. hitpoints     = 20
  753. firepower     = 2
  754. move_rate     = 8
  755. vision_range  = 2
  756. transport_cap = 0
  757. fuel          = 2
  758. uk_happy      = 1
  759. uk_shield     = 1
  760. uk_food       = 0
  761. uk_gold       = 0
  762. flags         = "FieldUnit", "OneAttack"
  763. roles         = ""
  764.  
  765. [unit_helicopter]
  766. name          = _("Helicopter")
  767. move_type     = "Heli"
  768. tech_req      = "Never"
  769. obsolete_by   = "None"
  770. graphic       = "u.helicopter"
  771. graphic_alt   = "-"
  772. build_cost    = 100
  773. attack        = 10
  774. defense       = 3
  775. hitpoints     = 20
  776. firepower     = 2
  777. move_rate     = 6
  778. vision_range  = 2
  779. transport_cap = 0
  780. fuel          = 0
  781. uk_happy      = 1
  782. uk_shield     = 1
  783. uk_food       = 0
  784. uk_gold       = 0
  785. flags         = "FieldUnit", "OneAttack"
  786. roles         = ""
  787.  
  788. [unit_stealth_fighter]
  789. name          = _("Stealth Fighter")
  790. move_type     = "Air"
  791. tech_req      = "Never"
  792. obsolete_by   = "None"
  793. graphic       = "u.stealth_fighter"
  794. graphic_alt   = "-"
  795. build_cost    = 80
  796. attack        = 8
  797. defense       = 4
  798. hitpoints     = 20
  799. firepower     = 2
  800. move_rate     = 14
  801. vision_range  = 2
  802. transport_cap = 0
  803. fuel          = 1
  804. uk_happy      = 1
  805. uk_shield     = 1
  806. uk_food       = 0
  807. uk_gold       = 0
  808. flags         = "FieldUnit", "Fighter"
  809. roles         = ""
  810.  
  811. [unit_stealth_bomber]
  812. name          = _("Stealth Bomber")
  813. move_type     = "Air"
  814. tech_req      = "Never"
  815. obsolete_by   = "None"
  816. graphic       = "u.stealth_bomber"
  817. graphic_alt   = "-"
  818. build_cost    = 160
  819. attack        = 14
  820. defense       = 5
  821. hitpoints     = 20
  822. firepower     = 2
  823. move_rate     = 12
  824. vision_range  = 2
  825. transport_cap = 0
  826. fuel          = 2
  827. uk_happy      = 1
  828. uk_shield     = 1
  829. uk_food       = 0
  830. uk_gold       = 0
  831. flags         = "FieldUnit", "OneAttack"
  832. roles         = ""
  833.  
  834. [unit_trireme]
  835. name          = _("Trireme")
  836. move_type     = "Sea"
  837. tech_req      = "Map Making"
  838. obsolete_by   = "Sail"
  839. graphic       = "u.trireme"
  840. graphic_alt   = "-"
  841. build_cost    = 40
  842. attack        = 1
  843. defense       = 0
  844. hitpoints     = 10
  845. firepower     = 1
  846. move_rate     = 3
  847. vision_range  = 1
  848. transport_cap = 2
  849. fuel          = 0
  850. uk_happy      = 1
  851. uk_shield     = 1
  852. uk_food       = 0
  853. uk_gold       = 0
  854. flags         = "FieldUnit", "Trireme"
  855. roles         = "Ferryboat"
  856.  
  857. [unit_sail]
  858. name          = _("Sail")         ; Civ2 Caravel
  859. move_type     = "Sea"
  860. tech_req      = "Navigation"
  861. obsolete_by   = "Frigate"
  862. graphic       = "u.caravel"
  863. graphic_alt   = "-"
  864. build_cost    = 40
  865. attack        = 1
  866. defense       = 1
  867. hitpoints     = 10
  868. firepower     = 1
  869. move_rate     = 3
  870. vision_range  = 1
  871. transport_cap = 3
  872. fuel          = 0
  873. uk_happy      = 1
  874. uk_shield     = 1
  875. uk_food       = 0
  876. uk_gold       = 0
  877. flags         = ""
  878. roles         = "Ferryboat", "BarbarianBoat"
  879.  
  880. [unit_galleon]
  881. name          = _("Galleon")
  882. move_type     = "Sea"
  883. tech_req      = "Never"
  884. obsolete_by   = "Transport"
  885. graphic       = "u.galleon"
  886. graphic_alt   = "-"
  887. build_cost    = 40
  888. attack        = 0
  889. defense       = 2
  890. hitpoints     = 20
  891. firepower     = 1
  892. move_rate     = 4
  893. vision_range  = 1
  894. transport_cap = 4
  895. fuel          = 0
  896. uk_happy      = 1
  897. uk_shield     = 1
  898. uk_food       = 0
  899. uk_gold       = 0
  900. flags         = ""
  901. roles         = "Ferryboat", "BarbarianBoat"
  902.  
  903. [unit_frigate]
  904. name          = _("Frigate")
  905. move_type     = "Sea"
  906. tech_req      = "Magnetism"
  907. obsolete_by   = "Transport"
  908. graphic       = "u.frigate"
  909. graphic_alt   = "-"
  910. build_cost    = 40
  911. attack        = 2
  912. defense       = 2
  913. hitpoints     = 20
  914. firepower     = 1
  915. move_rate     = 3
  916. vision_range  = 1
  917. transport_cap = 4
  918. fuel          = 0
  919. uk_happy      = 1
  920. uk_shield     = 1
  921. uk_food       = 0
  922. uk_gold       = 0
  923. flags         = "FieldUnit"
  924. roles         = "Ferryboat"
  925.  
  926. [unit_ironclad]
  927. name          = _("Ironclad")
  928. move_type     = "Sea"
  929. tech_req      = "Steam Engine"
  930. obsolete_by   = "Cruiser"
  931. graphic       = "u.ironclad"
  932. graphic_alt   = "-"
  933. build_cost    = 60
  934. attack        = 4
  935. defense       = 4
  936. hitpoints     = 30
  937. firepower     = 1
  938. move_rate     = 4
  939. vision_range  = 1
  940. transport_cap = 0
  941. fuel          = 0
  942. uk_happy      = 1
  943. uk_shield     = 1
  944. uk_food       = 0
  945. uk_gold       = 0
  946. flags         = "FieldUnit"
  947. roles         = ""
  948.  
  949. [unit_destroyer]
  950. name          = _("Destroyer")
  951. move_type     = "Sea"
  952. tech_req      = "Never"
  953. obsolete_by   = "None"
  954. graphic       = "u.destroyer"
  955. graphic_alt   = "-"
  956. build_cost    = 60
  957. attack        = 4
  958. defense       = 4
  959. hitpoints     = 30
  960. firepower     = 1
  961. move_rate     = 6
  962. vision_range  = 2
  963. transport_cap = 0
  964. fuel          = 0
  965. uk_happy      = 1
  966. uk_shield     = 1
  967. uk_food       = 0
  968. uk_gold       = 0
  969. flags         = "FieldUnit"
  970. roles         = ""
  971.  
  972. [unit_cruiser]
  973. name          = _("Cruiser")
  974. move_type     = "Sea"
  975. tech_req      = "Combustion"
  976. obsolete_by   = "None"
  977. graphic       = "u.cruiser"
  978. graphic_alt   = "-"
  979. build_cost    = 80
  980. attack        = 6
  981. defense       = 6
  982. hitpoints     = 30
  983. firepower     = 2
  984. move_rate     = 6
  985. vision_range  = 2
  986. transport_cap = 0
  987. fuel          = 0
  988. uk_happy      = 1
  989. uk_shield     = 1
  990. uk_food       = 0
  991. uk_gold       = 0
  992. flags         = "FieldUnit"
  993. roles         = ""
  994.  
  995. [unit_aegis_cruiser]
  996. name          = _("AEGIS Cruiser")
  997. move_type     = "Sea"
  998. tech_req      = "Never"
  999. obsolete_by   = "None"
  1000. graphic       = "u.aegis_cruiser"
  1001. graphic_alt   = "-"
  1002. build_cost    = 100
  1003. attack        = 8
  1004. defense       = 8
  1005. hitpoints     = 30
  1006. firepower     = 2
  1007. move_rate     = 5
  1008. vision_range  = 2
  1009. transport_cap = 0
  1010. fuel          = 0
  1011. uk_happy      = 1
  1012. uk_shield     = 1
  1013. uk_food       = 0
  1014. uk_gold       = 0
  1015. flags         = "FieldUnit", "AEGIS"
  1016. roles         = ""
  1017.  
  1018. [unit_battleship]
  1019. name          = _("Battleship")
  1020. move_type     = "Sea"
  1021. tech_req      = "Steel"
  1022. obsolete_by   = "None"
  1023. graphic       = "u.battleship"
  1024. graphic_alt   = "-"
  1025. build_cost    = 160
  1026. attack        = 18
  1027. defense       = 12
  1028. hitpoints     = 40
  1029. firepower     = 2
  1030. move_rate     = 4
  1031. vision_range  = 2
  1032. transport_cap = 0
  1033. fuel          = 0
  1034. uk_happy      = 1
  1035. uk_shield     = 1
  1036. uk_food       = 0
  1037. uk_gold       = 0
  1038. flags         = "FieldUnit"
  1039. roles         = ""
  1040.  
  1041. [unit_submarine]
  1042. name          = _("Submarine")
  1043. move_type     = "Sea"
  1044. tech_req      = "Mass Production"
  1045. obsolete_by   = "None"
  1046. graphic       = "u.submarine"
  1047. graphic_alt   = "-"
  1048. build_cost    = 50
  1049. attack        = 8
  1050. defense       = 2
  1051. hitpoints     = 30
  1052. firepower     = 2
  1053. move_rate     = 3
  1054. vision_range  = 2
  1055. transport_cap = 0
  1056. fuel          = 0
  1057. uk_happy      = 1
  1058. uk_shield     = 1
  1059. uk_food       = 0
  1060. uk_gold       = 0
  1061. flags         = "FieldUnit", "Submarine"
  1062. roles         = ""
  1063. helptext      = _("\
  1064. This unit is invisible unless it is next to an enemy unit or city.\
  1065.  It cannot make shore bombardments against enemy land units or cities.\
  1066. \n\n\
  1067. Submarines have a very high strategic value, but have a weak\
  1068.  defence.\
  1069. ")
  1070.  
  1071. [unit_carrier]
  1072. name          = _("Carrier")
  1073. move_type     = "Sea"
  1074. tech_req      = "Advanced Flight"
  1075. obsolete_by   = "None"
  1076. graphic       = "u.carrier"
  1077. graphic_alt   = "-"
  1078. build_cost    = 160
  1079. attack        = 1
  1080. defense       = 12
  1081. hitpoints     = 40
  1082. firepower     = 2
  1083. move_rate     = 5
  1084. vision_range  = 2
  1085. transport_cap = 8
  1086. fuel          = 0
  1087. uk_happy      = 1
  1088. uk_shield     = 1
  1089. uk_food       = 0
  1090. uk_gold       = 0
  1091. flags         = "FieldUnit", "Carrier"
  1092. roles         = ""
  1093. helptext      = _("\
  1094. TIP:  Guard Carriers with a handful of fast-moving ships and a\
  1095.  battleship, as losing a fully-equipped Carrier is VERY\
  1096.  painful and expensive.\
  1097. ")
  1098.  
  1099. [unit_transport]
  1100. name          = _("Transport")
  1101. move_type     = "Sea"
  1102. tech_req      = "Industrialization"
  1103. obsolete_by   = "None"
  1104. graphic       = "u.transport"
  1105. graphic_alt   = "-"
  1106. build_cost    = 50
  1107. attack        = 0
  1108. defense       = 3
  1109. hitpoints     = 30
  1110. firepower     = 1
  1111. move_rate     = 4
  1112. vision_range  = 2
  1113. transport_cap = 8
  1114. fuel          = 0
  1115. uk_happy      = 1
  1116. uk_shield     = 1
  1117. uk_food       = 0
  1118. uk_gold       = 0
  1119. flags         = ""
  1120. roles         = "Ferryboat"
  1121.  
  1122. [unit_cruise_missile]
  1123. name          = _("Cruise Missile")
  1124. move_type     = "Air"
  1125. tech_req      = "Never"
  1126. obsolete_by   = "None"
  1127. graphic       = "u.cruise_missile"
  1128. graphic_alt   = "-"
  1129. build_cost    = 60
  1130. attack        = 18
  1131. defense       = 0
  1132. hitpoints     = 10
  1133. firepower     = 3
  1134. move_rate     = 12
  1135. vision_range  = 1
  1136. transport_cap = 0
  1137. fuel          = 1
  1138. uk_happy      = 1
  1139. uk_shield     = 1
  1140. uk_food       = 0
  1141. uk_gold       = 0
  1142. flags         = "FieldUnit", "OneAttack", "Missile"
  1143. roles         = ""
  1144.  
  1145. [unit_nuclear]
  1146. name          = _("Nuclear")
  1147. move_type     = "Air"
  1148. tech_req      = "Rocketry"
  1149. obsolete_by   = "None"
  1150. graphic       = "u.nuclear"
  1151. graphic_alt   = "-"
  1152. build_cost    = 160
  1153. attack        = 99
  1154. defense       = 0
  1155. hitpoints     = 10
  1156. firepower     = 1
  1157. move_rate     = 16
  1158. vision_range  = 1
  1159. transport_cap = 0
  1160. fuel          = 1
  1161. uk_happy      = 1
  1162. uk_shield     = 1
  1163. uk_food       = 0
  1164. uk_gold       = 0
  1165. flags         = "FieldUnit", "OneAttack", "Missile", "Nuclear"
  1166. roles         = ""
  1167. helptext      = _("\
  1168. You can build Nuclear units when you have the required advance, and\
  1169.  the Manhattan Project wonder has been built by any player.\
  1170. \n\n\
  1171. On impact, the blast will destroy any unit in a 3x3-square area,\
  1172.  including friendly units.  When striking a city, the city size is\
  1173.  halved, and the surrounding squares are polluted.\
  1174. \n\n\
  1175. TIP 1:  Nuking the ocean will not generate pollution, and is a most\
  1176.  effective (but expensive!!) way of getting rid of enemy\
  1177.  ships.\
  1178. \n\n\
  1179. TIP 2:  You may be involved in a situation where you've invaded an\
  1180.  enemy country en masse, but the enemy cities are too strong.\
  1181.  Before using a Nuclear unit, assemble a gang of Settlers\
  1182.  next to the city and have them ready to fix\
  1183.  the pollution on the same turn it occurs!  This minimises the\
  1184.  chance of global warming.  Eco-friendly nukes!\
  1185. ")
  1186.  
  1187. [unit_diplomat]
  1188. name          = _("Diplomat")
  1189. move_type     = "Land"
  1190. tech_req      = "Writing"
  1191. obsolete_by   = "None"
  1192. graphic       = "u.diplomat"
  1193. graphic_alt   = "-"
  1194. build_cost    = 30
  1195. attack        = 0
  1196. defense       = 0
  1197. hitpoints     = 10
  1198. firepower     = 1
  1199. move_rate     = 2
  1200. vision_range  = 1
  1201. transport_cap = 0
  1202. fuel          = 0
  1203. uk_happy      = 0
  1204. uk_shield     = 0
  1205. uk_food       = 0
  1206. uk_gold       = 0
  1207. flags         = "Diplomat", "IgZOC", "NonMil"
  1208. roles         = "Explorer"
  1209. helptext      = _("\
  1210. - A Diplomat can establish embassies with other civilizations\
  1211.  by moving into another player's city.\
  1212. \n\n\
  1213. - Diplomats can also try to sabotage enemy production, or steal\
  1214.  an advance from an enemy city.  (An advance can only be stolen\
  1215.  once per city).\
  1216. \n\n\
  1217. - A Diplomat can also bribe an enemy unit, if that unit is the only\
  1218.  unit on its square.\
  1219. \n\n\
  1220. - Diplomats can even start a revolution in an enemy city and turn\
  1221.  it into your own, if you have the money!\
  1222. \n\n\
  1223. - In some game strategies, hordes of Diplomats can be used to wreak\
  1224.  havoc on the enemy.  Little wonder that Diplomats are often\
  1225.  viewed with suspicion and fear!\
  1226. ")
  1227.  
  1228. [unit_spy]
  1229. name          = _("Spy")
  1230. move_type     = "Land"
  1231. tech_req      = "Never"
  1232. obsolete_by   = "None"
  1233. graphic       = "u.spy"
  1234. graphic_alt   = "-"
  1235. build_cost    = 30
  1236. attack        = 0
  1237. defense       = 0
  1238. hitpoints     = 10
  1239. firepower     = 1
  1240. move_rate     = 3
  1241. vision_range  = 2
  1242. transport_cap = 0
  1243. fuel          = 0
  1244. uk_happy      = 0
  1245. uk_shield     = 0
  1246. uk_food       = 0
  1247. uk_gold       = 0
  1248. flags         = "Diplomat", "IgZOC", "NonMil", "Spy"
  1249. roles         = ""
  1250.  
  1251. [unit_caravan]
  1252. name          = _("Caravan")
  1253. move_type     = "Land"
  1254. tech_req      = "Trade"
  1255. obsolete_by   = "None"
  1256. graphic       = "u.caravan"
  1257. graphic_alt   = "-"
  1258. build_cost    = 50
  1259. attack        = 0
  1260. defense       = 1
  1261. hitpoints     = 10
  1262. firepower     = 1
  1263. move_rate     = 1
  1264. vision_range  = 1
  1265. transport_cap = 0
  1266. fuel          = 0
  1267. uk_happy      = 0
  1268. uk_shield     = 0
  1269. uk_food       = 0
  1270. uk_gold       = 0
  1271. flags         = "Caravan", "IgZOC", "NonMil"
  1272. roles         = ""
  1273. helptext      = _("\
  1274. Every Caravan that is used to build a wonder will add 50 shields\
  1275.  towards the production of the wonder.\
  1276. \n\n\
  1277. TIP:  You can stockpile a stack of Caravans in advance and bring\
  1278.  them all into a city where you have started to build a wonder,\
  1279.  and finish it in only one turn!\
  1280. ")
  1281.  
  1282. [unit_freight]
  1283. name          = _("Freight")
  1284. move_type     = "Land"
  1285. tech_req      = "Never"
  1286. obsolete_by   = "None"
  1287. graphic       = "u.freight"
  1288. graphic_alt   = "-"
  1289. build_cost    = 50
  1290. attack        = 0
  1291. defense       = 1
  1292. hitpoints     = 10
  1293. firepower     = 1
  1294. move_rate     = 2
  1295. vision_range  = 1
  1296. transport_cap = 0
  1297. fuel          = 0
  1298. uk_happy      = 0
  1299. uk_shield     = 0
  1300. uk_food       = 0
  1301. uk_gold       = 0
  1302. flags         = "Caravan", "IgZOC", "NonMil"
  1303. roles         = ""
  1304.  
  1305. [unit_explorer]
  1306. name          = _("Explorer")
  1307. move_type     = "Land"
  1308. tech_req      = "Never"
  1309. obsolete_by   = "Partisan"
  1310. graphic       = "u.explorer"
  1311. graphic_alt   = "-"
  1312. build_cost    = 30
  1313. attack        = 0
  1314. defense       = 1
  1315. hitpoints     = 10
  1316. firepower     = 1
  1317. move_rate     = 1
  1318. vision_range  = 1
  1319. transport_cap = 0
  1320. fuel          = 0
  1321. uk_happy      = 0
  1322. uk_shield     = 1
  1323. uk_food       = 0
  1324. uk_gold       = 0
  1325. flags         = "IgTer", "IgZOC", "NonMil"
  1326. roles         = "Explorer"
  1327.  
  1328. [unit_barbarian_leader]
  1329. name          = _("Barbarian Leader")
  1330. move_type     = "Land"
  1331. tech_req      = "None"
  1332. obsolete_by   = "Settlers"    ; Ugly hack, to prevent anyone from building it
  1333. graphic       = "u.diplomat"
  1334. graphic_alt   = "-"
  1335. build_cost    = 40
  1336. attack        = 0
  1337. defense       = 0
  1338. hitpoints     = 10
  1339. firepower     = 1
  1340. move_rate     = 2
  1341. vision_range  = 1
  1342. transport_cap = 0
  1343. fuel          = 0
  1344. uk_happy      = 0
  1345. uk_shield     = 0
  1346. uk_food       = 0
  1347. uk_gold       = 0
  1348. flags         = "IgZOC", "NonMil"
  1349. roles         = "BarbarianLeader"
  1350. helptext      = _("\
  1351. When barbarian leader is killed on a tile without any defending units, \
  1352. the 100 gold ransom is paid, but only to land units.\
  1353. ")
  1354.  
  1355. [u_specials]
  1356. partisan_req = "" ; "Gunpowder","Communism"
  1357.  
  1358.