]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/sv_monsters.qh
Disallow changing monster's name
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / sv_monsters.qh
1 .string spawnmob;
2 .float monster_attack;
3
4 float monster_skill;
5
6 .entity monster_owner; // new monster owner entity, fixes non-solid monsters
7 .float monstercount; // per player monster count
8
9 .float stat_monsters_killed; // stats
10 .float stat_monsters_total;
11 float monsters_total;
12 float monsters_killed;
13 void monsters_setstatus(); // monsters.qc
14 .float monster_moveflags; // checks where to move when not attacking
15
16 .float(float attack_type) monster_attackfunc;
17 const float MONSTER_ATTACK_MELEE        = 1;
18 const float MONSTER_ATTACK_RANGED       = 2;
19
20 .float candrop;
21
22 .float attack_range;
23
24 .float spawn_time; // stop monster from moving around right after spawning
25
26 .string oldtarget2;
27 .float lastshielded;
28
29 .vector oldangles;
30
31 .float monster_respawned; // used to make sure we're not recounting respawned monster stats
32
33 float monsters_spawned;
34
35 const float MONSTERSKILL_NOTEASY = 256; // monster will not spawn on skill <= 1
36 const float MONSTERSKILL_NOTMEDIUM = 512; // monster will not spawn on skill 2
37 const float MONSTERSKILL_NOTHARD = 1024; // monster will not spawn on skill >= 3
38
39 // new flags
40 const float MONSTERFLAG_MINIBOSS = 1;  // monster spawns as mini-boss (also has a chance of naturally becoming one)
41 const float MONSTERFLAG_APPEAR = 2; // delay spawn until triggered
42 const float MONSTERFLAG_NORESPAWN = 4;
43 const float MONSTERFLAG_FLY_VERTICAL = 8; // fly/swim vertically
44 const float MONSTERFLAG_INFRONT = 16; // only check for enemies infront of us
45 const float MONSTERFLAG_SPAWNED = 16384; // flag for spawned monsters
46
47 .float msound_delay; // restricts some monster sounds
48 .string msound_idle;
49 .string msound_death;
50 .string msound_attack_melee;
51 .string msound_attack_ranged;
52 .string msound_spawn;
53 .string msound_sight;
54 .string msound_pain;
55
56 .void() monster_spawnfunc;
57
58 .float monster_movestate; // used to tell what the monster is currently doing
59 const float MONSTER_MOVE_OWNER = 1; // monster will move to owner if in range, or stand still
60 const float MONSTER_MOVE_WANDER = 2; // monster will ignore owner & wander around
61 const float MONSTER_MOVE_SPAWNLOC = 3; // monster will move to its spawn location when not attacking
62 const float MONSTER_MOVE_NOMOVE = 4; // monster simply stands still
63 const float MONSTER_MOVE_ENEMY = 5; // used only as a movestate
64
65 const float MONSTER_STATE_ATTACK_LEAP = 1;
66 const float MONSTER_STATE_ATTACK_MELEE = 2;
67