]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mutators/mutator/instagib/items.qh
Fixed instagib powerups.
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mutators / mutator / instagib / items.qh
1 #pragma once
2
3 #include <common/items/_mod.qh>
4 #include <common/items/item/ammo.qh>
5 #include <common/items/item/powerup.qh>
6
7 float instagib_respawntime_ammo = 45;
8 float instagib_respawntimejitter_ammo = 0;
9 GETTER(float, instagib_respawntime_ammo)
10 GETTER(float, instagib_respawntimejitter_ammo)
11
12 #ifdef GAMEQC
13 MODEL(VaporizerCells_ITEM, Item_Model("a_cells.md3"));
14 SOUND(VaporizerCells, Item_Sound("itempickup"));
15 #endif
16
17 #ifdef SVQC
18 int autocvar_g_instagib_ammo_drop;
19 void ammo_vaporizercells_init(entity item)
20 {
21     if(!item.ammo_cells)
22         item.ammo_cells = autocvar_g_instagib_ammo_drop;
23 }
24 #endif
25 REGISTER_ITEM(VaporizerCells, Ammo) {
26     this.m_canonical_spawnfunc = "item_vaporizer_cells";
27     this.spawnflags = ITEM_FLAG_MUTATORBLOCKED;
28 #ifdef GAMEQC
29     this.m_model                =   MDL_VaporizerCells_ITEM;
30     this.m_sound                =   SND_VaporizerCells;
31 #endif
32     this.netname                =   "vaporizer_cells";
33     this.m_name                 =   "Vaporizer Ammo";
34     this.m_icon                 =   "ammo_supercells";
35 #ifdef SVQC
36     this.m_botvalue             =   2000;
37     this.m_itemid               =   IT_CELLS;
38     this.m_respawntime          =   GET(instagib_respawntime_ammo);
39     this.m_respawntimejitter    =   GET(instagib_respawntimejitter_ammo);
40     this.m_iteminit             =   ammo_vaporizercells_init;
41 #endif
42 }
43
44 SPAWNFUNC_ITEM(item_vaporizer_cells, ITEM_VaporizerCells)
45 SPAWNFUNC_ITEM(item_minst_cells, ITEM_VaporizerCells)
46
47 #ifdef GAMEQC
48 MODEL(ExtraLife_ITEM, Item_Model("g_h100.md3"));
49 SOUND(ExtraLife, Item_Sound("megahealth"));
50 #endif
51
52 REGISTER_ITEM(ExtraLife, Powerup) {
53     this.m_canonical_spawnfunc = "item_extralife";
54 #ifdef GAMEQC
55     this.m_model                =   MDL_ExtraLife_ITEM;
56     this.m_sound                =   SND_ExtraLife;
57 #endif
58     this.netname                =   "extralife";
59     this.m_name                 =   "Extra life";
60     this.m_icon                 =   "item_mega_health";
61     this.m_color                =   '1 0 0';
62     this.m_waypoint             =   _("Extra life");
63     this.m_waypointblink        =   2;
64     this.m_itemid               =   IT_NAILS;
65 }
66
67 #ifdef GAMEQC
68 MODEL(Invisibility_ITEM, Item_Model("g_strength.md3"));
69 SOUND(Invisibility, Item_Sound("powerup"));
70 #endif
71
72 #ifdef SVQC
73 /// \brief Initializes the invisibility powerup.
74 /// \param[in,out] item Item to initialize.
75 /// \return No return.
76 void powerup_invisibility_init(entity item);
77 #endif
78
79 REGISTER_ITEM(Invisibility, Powerup) {
80     this.m_canonical_spawnfunc = "item_invisibility";
81 #ifdef GAMEQC
82     this.m_model            =   MDL_Invisibility_ITEM;
83     this.m_sound            =   SND_Invisibility;
84 #endif
85     this.netname            =   "invisibility";
86     this.m_name             =   "Invisibility";
87     this.m_icon             =   "strength";
88     this.m_color            =   '0 0 1';
89     this.m_waypoint         =   _("Invisibility");
90     this.m_waypointblink    =   2;
91     this.m_itemid           =   IT_STRENGTH;
92 #ifdef SVQC
93     this.m_iteminit         =   powerup_invisibility_init;
94 #endif
95 }
96
97 #ifdef GAMEQC
98 MODEL(Speed_ITEM, Item_Model("g_invincible.md3"));
99 SOUND(Speed, Item_Sound("powerup_shield"));
100 #endif
101
102 #ifdef SVQC
103 /// \brief Initializes the speed powerup.
104 /// \param[in,out] item Item to initialize.
105 /// \return No return.
106 void powerup_speed_init(entity item);
107 #endif
108
109 REGISTER_ITEM(Speed, Powerup) {
110     this.m_canonical_spawnfunc = "item_speed";
111 #ifdef GAMEQC
112     this.m_model            =   MDL_Speed_ITEM;
113     this.m_sound            =   SND_Speed;
114 #endif
115     this.netname            =   "speed";
116     this.m_name             =   "Speed";
117     this.m_icon             =   "shield";
118     this.m_color            =   '1 0 1';
119     this.m_waypoint         =   _("Speed");
120     this.m_waypointblink    =   2;
121     this.m_itemid           =   IT_INVINCIBLE;
122 #ifdef SVQC
123     this.m_iteminit         =   powerup_speed_init;
124 #endif
125 }