]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/t_quake.qc
Merge branch 'master' into terencehill/weapon_panel_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / t_quake.qc
1 #include "../common/weapons/weapons.qc"
2
3 //***********************
4 //QUAKE 1 ENTITIES - So people can play quake1 maps with the xonotic weapons
5 //***********************
6 void spawnfunc_weapon_nailgun (void) {spawnfunc_weapon_electro();}
7 void spawnfunc_weapon_supernailgun (void) {spawnfunc_weapon_hagar();}
8 void spawnfunc_weapon_supershotgun (void) {spawnfunc_weapon_machinegun();}
9
10 void spawnfunc_item_spikes (void) {spawnfunc_item_bullets();}
11 //void spawnfunc_item_armor1 (void) {spawnfunc_item_armor_medium;}  // FIXME: in Quake this is green armor, in Xonotic maps it is an armor shard
12 void spawnfunc_item_armor2 (void) {spawnfunc_item_armor_large();}
13 void item_armorInv (void) {spawnfunc_item_armor_large();}
14 void spawnfunc_item_health (void) {if (self.spawnflags & 2) spawnfunc_item_health_mega();else spawnfunc_item_health_medium();}
15
16 //spawnfunc_item_spikes
17 //spawnfunc_item_health
18
19
20