Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
wop.qc
Go to the documentation of this file.
1#include "wop.qh"
2
3#include <common/stats.qh>
7
8spawnfunc(item_speed);
9spawnfunc(item_invisibility);
10
11//***********************
12//WORLD OF PADMAN ENTITIES - So people can play wop maps with the xonotic weapons
13//***********************
14
15//spawnfunc(item_revival) /* handled by buffs mutator */
16//spawnfunc(item_jumper) /* handled by buffs mutator */
17
18SPAWNFUNC_WEAPON(weapon_punchy, WEP_ARC)
19SPAWNFUNC_WEAPON(weapon_nipper, WEP_MACHINEGUN)
20SPAWNFUNC_WEAPON(weapon_pumper, WEP_SHOTGUN)
21SPAWNFUNC_WEAPON(weapon_boaster, WEP_ELECTRO)
22SPAWNFUNC_WEAPON(weapon_splasher, WEP_VORTEX)
23SPAWNFUNC_WEAPON(weapon_bubbleg, WEP_HAGAR)
24SPAWNFUNC_WEAPON(weapon_balloony, WEP_MORTAR)
25SPAWNFUNC_WEAPON(weapon_betty, WEP_DEVASTATOR)
26SPAWNFUNC_WEAPON(weapon_imperius, WEP_CRYLINK)
27
28SPAWNFUNC_ITEM(ammo_pumper, ITEM_Shells)
29SPAWNFUNC_ITEM(ammo_nipper, ITEM_Bullets)
30SPAWNFUNC_ITEM(ammo_balloony, ITEM_Rockets)
31SPAWNFUNC_ITEM(ammo_bubbleg, ITEM_Rockets)
32SPAWNFUNC_ITEM(ammo_boaster, ITEM_Cells)
33SPAWNFUNC_ITEM(ammo_betty, ITEM_Rockets)
34SPAWNFUNC_ITEM(ammo_imperius, ITEM_Cells)
35
36SPAWNFUNC_ITEM(item_padpower, ITEM_Strength)
37SPAWNFUNC_ITEM(item_climber, ITEM_Shield)
38spawnfunc(item_speedy) { spawnfunc_item_speed(this); }
39spawnfunc(item_visionless) { spawnfunc_item_invisibility(this); }
40SPAWNFUNC_ITEM(item_armor_padshield, ITEM_ArmorMega)
41
42SPAWNFUNC_ITEM(holdable_floater, ITEM_Jetpack)
#define SPAWNFUNC_ITEM(name, item)
Definition item.qh:106
Header file that describes the functions related to game items.
#define spawnfunc(id)
Definition spawnfunc.qh:96
#define SPAWNFUNC_WEAPON(name, weapon)
Definition weapon.qh:150