]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/t_quake.qc
Remove _all indirection
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / t_quake.qc
1 #include "t_quake.qh"
2
3 #include <common/weapons/_all.qh>
4
5 spawnfunc(weapon_electro);
6 spawnfunc(weapon_hagar);
7 spawnfunc(weapon_machinegun);
8 spawnfunc(item_bullets);
9 spawnfunc(item_armor_large);
10 spawnfunc(item_armor_large);
11 spawnfunc(item_health_mega);
12 spawnfunc(item_health_medium);
13
14 //***********************
15 //QUAKE 1 ENTITIES - So people can play quake1 maps with the xonotic weapons
16 //***********************
17 spawnfunc(weapon_nailgun) {spawnfunc_weapon_electro(this);}
18 spawnfunc(weapon_supernailgun) {spawnfunc_weapon_hagar(this);}
19 spawnfunc(weapon_supershotgun) {spawnfunc_weapon_machinegun(this);}
20
21 spawnfunc(item_spikes) {spawnfunc_item_bullets(this);}
22 //spawnfunc(item_armor1) {spawnfunc_item_armor_medium(this);}  // FIXME: in Quake this is green armor, in Xonotic maps it is an armor shard
23 spawnfunc(item_armor2) {spawnfunc_item_armor_large(this);}
24 spawnfunc(item_armorInv) {spawnfunc_item_armor_large(this);} // TODO: make sure we actually want this
25 spawnfunc(item_health) {if (this.spawnflags & 2) spawnfunc_item_health_mega(this);else spawnfunc_item_health_medium(this);}
26
27 //spawnfunc_item_spikes
28 //spawnfunc_item_health
29
30
31