home *** CD-ROM | disk | FTP | other *** search
/ PC Action 1996 July (Bonus) / E3_CD.ISO / demos / silencer / mission.enm < prev    next >
Encoding:
Text File  |  1996-04-25  |  899 b   |  68 lines

  1. //«OF6»«TS2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38»«PT2»«PL1»
  2.  
  3. enum mission_enum {
  4.     No_mission = -1,
  5.  
  6.     M_prison_1,
  7.     M_prison_2,
  8.     M_prison_3,
  9.  
  10.     M_city_1,
  11.     M_city_2,
  12.     M_city_3,
  13.  
  14.     M_test_1,
  15.     M_test_2,
  16.     M_test_3,
  17.  
  18.     Last_mission
  19. };
  20.  
  21. enum mission_cond_enum {
  22.     No_mission_cond = -1,
  23.  
  24.     MC_enemies_killed,
  25.     MC_civilians_killed,        
  26.     MC_corporates_killed,        
  27.     MC_robots_killed,
  28.  
  29.     MC_damage_taken,
  30.     MC_grenades_thrown,
  31.     MC_bullets_fired,
  32.     MC_bullet_accuracy,
  33.     MC_always_used_silencer,
  34.  
  35.     MC_floppies_recovered,
  36.     MC_secrets_found,
  37.  
  38.     MC_marker_1_active,
  39.     MC_marker_2_active,
  40.     MC_marker_3_active,
  41.  
  42.     Last_mission_cond
  43. };
  44.  
  45. enum agency_enums {
  46.     No_agency = -1,
  47.  
  48.     Agency_1,
  49.     Agency_2,
  50.     Agency_3,
  51.  
  52.     Last_original_agency,
  53.  
  54.     A_silencer,
  55.  
  56.     Last_agency
  57. };
  58.  
  59. enum theater_enums {
  60.     No_theater = -1,
  61.  
  62.     T_siberia,
  63.     T_city,
  64.     T_other,
  65.  
  66.     Last_theater
  67. };
  68.