]> icculus.org git repositories - divverent/nexuiz.git/blob - qcsrc/field.qc
*** empty log message ***
[divverent/nexuiz.git] / qcsrc / field.qc
1
2 // Globals
3
4 entity  activator;
5 string  string_null;
6 entity  casing;
7 entity dest;
8
9 // Fields
10
11 .void(vector hitloc, float damage)      event_hurt;
12 .void(vector hitloc, float damage)      event_die;
13
14 .string wad;
15 .string map;
16
17 .float  worldtype;
18 .float  delay;
19 .float  wait;
20 .float  lip;
21 .float  light_lev;
22 .float  speed;
23 .float  style;
24 .float  skill;
25
26 .string killtarget;
27
28 .vector pos1, pos2;
29 .vector mangle;
30
31 .float  jump_flag;                              // storing velocity_z for falling damage
32 .float  attack_finished;
33 .float  statdraintime;                  // record the one-second intervals between draining health and armour when they're over 100
34
35 .vector         finaldest, finalangle;          //plat.qc stuff
36 .void()         think1;
37 .float state;
38 .float          t_length, t_width;
39
40 .vector destvec;                // for rain
41 .float cnt;             // for rain
42 .float count;
43 .float cnt2;
44
45 .vector dead_angles;
46 .float death_time;
47
48 .string mdl;