]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/compat/wop.qc
Merge branch 'master' into Lyberta/RandomItems
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / compat / wop.qc
1 #include "wop.qh"
2
3 #include <server/defs.qh>
4 #include <server/miscfunctions.qh>
5 #include <server/items.qh>
6 #include <common/weapons/_all.qh>
7
8 spawnfunc(item_haste);
9 spawnfunc(item_invis);
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
18 SPAWNFUNC_WEAPON(weapon_punchy, WEP_ARC)
19 SPAWNFUNC_WEAPON(weapon_nipper, WEP_MACHINEGUN)
20 SPAWNFUNC_WEAPON(weapon_pumper, WEP_SHOTGUN)
21 SPAWNFUNC_WEAPON(weapon_boaster, WEP_ELECTRO)
22 SPAWNFUNC_WEAPON(weapon_splasher, WEP_VORTEX)
23 SPAWNFUNC_WEAPON(weapon_bubbleg, WEP_HAGAR)
24 SPAWNFUNC_WEAPON(weapon_balloony, WEP_MORTAR)
25 SPAWNFUNC_WEAPON(weapon_betty, WEP_DEVASTATOR)
26 SPAWNFUNC_WEAPON(weapon_imperius, WEP_CRYLINK)
27
28 SPAWNFUNC_ITEM(ammo_pumper, ITEM_Shells)
29 SPAWNFUNC_ITEM(ammo_nipper, ITEM_Bullets)
30 SPAWNFUNC_ITEM(ammo_balloony, ITEM_Rockets)
31 SPAWNFUNC_ITEM(ammo_bubbleg, ITEM_Rockets)
32 SPAWNFUNC_ITEM(ammo_boaster, ITEM_Cells)
33 SPAWNFUNC_ITEM(ammo_betty, ITEM_Rockets)
34 SPAWNFUNC_ITEM(ammo_imperius, ITEM_Cells)
35
36 SPAWNFUNC_ITEM(item_padpower, ITEM_Strength)
37 SPAWNFUNC_ITEM(item_climber, ITEM_Shield)
38 spawnfunc(item_speedy)          { spawnfunc_item_haste(this);                   }
39 spawnfunc(item_visionless)      { spawnfunc_item_invis(this);                   }
40 SPAWNFUNC_ITEM(item_armor_padshield, ITEM_ArmorMega)
41
42 SPAWNFUNC_ITEM(holdable_floater, ITEM_Jetpack)