home *** CD-ROM | disk | FTP | other *** search
- // defines LOWTHRUSTER
- ////////////////////////////////////////////////////////////////////////////////////
-
- // start wrapper - prevent multiple inclusions or recursive inclusions
-
- //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
- #ifndef INCLUDED_LOWTHRUSTER_GSH
- #define INCLUDED_LOWTHRUSTER_GSH
-
- ////////////////////////////////////////////////////////////////////////////////////
-
- #include "defaults.gsh"
- #include "lasers.gsh"
-
- hierarchy Hcy_lowthruster
- {
- file "units\LOWthruster.RIF"
- name "lowthruster"
- hotspot "dumflash"
- }
-
- character Chr_lowthruster : Chr_DefaultBaddie
- {
- turning speed 0.8 // this is in revolutions per second
- walking speed 1.0 // this is in animation cycles per second
- weapon enemy laser weak
- strength 5 // initial strength points
- aim 2 // how many degrees off target he can be at most
- sight angle 70 // in degrees
- sight range 8 // in metres
- hearing range 20 // in metres
- aggression 0.9 // from 0 to 1
- gun yaw angle 0 // in degrees
- description claw description
- }
-
- role Rol_lowthruster : Rol_DefaultRobot
- {
- shape Hcy_lowthruster
-
- character Chr_lowthruster
-
- identifier "lowthruster"
-
- ai bot
-
- }
-
- ////////////////////////////////////////////////////////////////////////////////////
-
- // end wrapper - for preventing multiple or recursive inclusions
- #endif // !INCLUDED_LOWTHRUSTER_GSH
-