]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/mutators/mutator_nades.qh
Merge branch 'master' into Mario/notifications
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / mutators / mutator_nades.qh
1 .entity nade;
2 .entity fake_nade;
3 .float nade_timer;
4 .float nade_refire;
5 .float bonus_nades;
6 .float nade_special_time;
7 .float bonus_nade_score;
8 .float nade_type;
9 .string pokenade_type;
10 .entity nade_damage_target;
11 .float cvar_cl_nade_type;
12 .string cvar_cl_pokenade_type;
13 .float toss_time;
14 .float stat_healing_orb;
15 .float stat_healing_orb_alpha;
16 .float nade_show_particles;
17
18 void toss_nade(entity e, vector _velocity, float _time);
19
20 // Remove nades that are being thrown
21 void(entity player) nades_Clear;
22
23 // Give a bonus grenade to a player
24 void(entity player, float score) nades_GiveBonus;
25 // Remove all bonus nades from a player
26 void(entity player) nades_RemoveBonus;