]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/sv_monsters.qh
Merge branch 'master' into Mario/monsters
[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 fish_wasdrowning; // used to reset a drowning fish's angles if it reaches water again
21
22 .float candrop;
23
24 .float attack_range;
25
26 .float spawn_time; // stop monster from moving around right after spawning
27
28 .string oldtarget2;
29 .float lastshielded;
30
31 .vector oldangles;
32
33 .float m_armor_blockpercent;
34
35 // monster sounds
36 // copied from player sounds
37 .float msound_delay; // temporary antilag system
38 #define ALLMONSTERSOUNDS \
39                 _MSOUND(death) \
40                 _MSOUND(sight) \
41                 _MSOUND(ranged) \
42                 _MSOUND(melee) \
43                 _MSOUND(pain) \
44                 _MSOUND(spawn) \
45                 _MSOUND(idle) 
46
47 #define _MSOUND(m) .string monstersound_##m;
48 ALLMONSTERSOUNDS
49 #undef _MSOUND
50
51 float GetMonsterSoundSampleField_notFound;
52
53 .float monster_respawned; // used to make sure we're not recounting respawned monster stats
54
55 const float MONSTERSKILL_NOTEASY = 256; // monster will not spawn on skill <= 1
56 const float MONSTERSKILL_NOTMEDIUM = 512; // monster will not spawn on skill 2
57 const float MONSTERSKILL_NOTHARD = 1024; // monster will not spawn on skill >= 3
58
59 // new flags
60 const float MONSTERFLAG_APPEAR = 2; // delay spawn until triggered
61 const float MONSTERFLAG_NORESPAWN = 4;
62 const float MONSTERFLAG_FLY_VERTICAL = 8; // fly/swim vertically
63 const float MONSTERFLAG_INFRONT = 32; // only check for enemies infront of us
64 const float MONSTERFLAG_MINIBOSS = 64;  // monster spawns as mini-boss (also has a chance of naturally becoming one)
65 const float MONSTERFLAG_SPAWNED = 16384; // flag for spawned monsters
66
67 .void() monster_spawnfunc;
68
69 .float monster_movestate; // used to tell what the monster is currently doing
70 const float MONSTER_MOVE_OWNER = 1; // monster will move to owner if in range, or stand still
71 const float MONSTER_MOVE_WANDER = 2; // monster will ignore owner & wander around
72 const float MONSTER_MOVE_SPAWNLOC = 3; // monster will move to its spawn location when not attacking
73 const float MONSTER_MOVE_NOMOVE = 4; // monster simply stands still
74 const float MONSTER_MOVE_ENEMY = 5; // used only as a movestate
75
76 const float MONSTER_STATE_ATTACK_LEAP = 1;
77 const float MONSTER_STATE_ATTACK_MELEE = 2;
78