]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/monsters/lib/defs.qh
Merge branch 'master' into mario/monsters
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / monsters / lib / defs.qh
1 .float sprite_height;
2
3 .void()         attack_melee;
4 .float()        attack_ranged;
5 .float()        checkattack;
6
7 .float spawner_monstercount;
8
9 .float monster_respawned; // used to make sure we're not recounting respawned monster stats
10
11 float monsters_spawned;
12
13 const float MONSTERSKILL_NOTEASY = 256; // monster will not spawn on skill <= 2
14 const float MONSTERSKILL_NOTMEDIUM = 512; // monster will not spawn on skill 3
15 const float MONSTERSKILL_NOTHARD = 1024; // monster will not spawn on skill 4
16 const float MONSTERSKILL_NOTINSANE = 2048; // monster will not spawn on skill 5
17 const float MONSTERSKILL_NOTNIGHTMARE = 4096; // monster will not spawn on skill >= 6
18
19 const float MONSTERFLAG_NORESPAWN = 2;
20 const float MONSTERFLAG_MINIBOSS = 64;  // monster spawns as mini-boss (also has a chance of naturally becoming one)
21 const float MONSTERFLAG_NOWANDER = 128; // disable wandering around (currently unused)
22 const float MONSTERFLAG_APPEAR = 256; // delay spawn until triggered
23 const float MONSTERFLAG_GIANT = 512; // experimental giant monsters feature
24 const float MONSTERFLAG_SPAWNED = 1024; // flag for spawned monsters
25
26 .void() monster_spawnfunc;
27 .void() monster_die;
28 .void() monster_delayedattack;
29
30 .float monster_movestate; // used to tell what the monster is currently doing
31 const float MONSTER_MOVE_OWNER = 1; // monster will move to owner if in range, or stand still
32 const float MONSTER_MOVE_WANDER = 2; // monster will ignore owner & wander around
33 const float MONSTER_MOVE_SPAWNLOC = 3; // monster will move to its spawn location when not attacking
34 const float MONSTER_MOVE_NOMOVE = 4; // monster simply stands still
35 const float MONSTER_MOVE_ENEMY = 5; // used only as a movestate
36
37 float enemy_range () { return vlen(self.enemy.origin - self.origin); }
38
39 float MONSTER_STATE_ATTACK_LEAP = 1; // the start of something big?