home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff357.lzh / Empire / Help / FLY < prev    next >
Text File  |  1990-06-03  |  1KB  |  31 lines

  1. fly <ship>|<sector> <plane-count> <bomb-count> <directions>
  2.    Fly planes (possibly with bombs) from ship or airfield. Directions are:
  3.      u  - up
  4.      /r - up right      \l u /r
  5.      r  - right          l e r
  6.      \r - down right    /l d \r
  7.      d  - down
  8.      /l - down left
  9.      l  - left
  10.      \l - up left
  11.      e  - end of flying (land or crash)
  12.      v  - view sector below
  13.      b  - drop some bombs
  14.    Movement prompt is:
  15.  
  16.    <fuel left:planes:bombs each:position>
  17.  
  18. Fuel comes from the starting airfield or carrier. Landing chances vary
  19. greatly. Watch out for anti-aircraft fire. Fuel units per plane is
  20. calculated as:
  21.  
  22.   fuelAvailable := sectorOrShipMobility * 4;
  23.   fuelUsed := min(fuelAvailable, 32); /* fuel tank size */
  24.   fuelUnits := techFactor * fuelUsed;
  25.  
  26. Note that these, as well as most other "magic" constants can be changed by
  27. the Deity. In good weather, when carrying no bombs, planes can fly one
  28. orthogonal sector per fuel unit. Fuel used rises by 1 for each bomb rack
  29. required (each rack can hold 3 bombs) and by 0.2 for each bomb carried.
  30. Diagonal flying takes 1.414 times as much fuel.
  31.