]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mutators/mutator/instagib/items.qh
Made instagib powerups on par with vanilla ones.
[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     this.m_glow             =   true;
85     this.m_respawnsound     =   SND_STRENGTH_RESPAWN;
86 #endif
87     this.netname            =   "invisibility";
88     this.m_name             =   "Invisibility";
89     this.m_icon             =   "strength";
90     this.m_color            =   '0 0 1';
91     this.m_waypoint         =   _("Invisibility");
92     this.m_waypointblink    =   2;
93     this.m_itemid           =   IT_STRENGTH;
94 #ifdef SVQC
95     this.m_iteminit         =   powerup_invisibility_init;
96 #endif
97 }
98
99 #ifdef GAMEQC
100 MODEL(Speed_ITEM, Item_Model("g_invincible.md3"));
101 SOUND(Speed, Item_Sound("powerup_shield"));
102 #endif
103
104 #ifdef SVQC
105 /// \brief Initializes the speed powerup.
106 /// \param[in,out] item Item to initialize.
107 /// \return No return.
108 void powerup_speed_init(entity item);
109 #endif
110
111 REGISTER_ITEM(Speed, Powerup) {
112     this.m_canonical_spawnfunc = "item_speed";
113 #ifdef GAMEQC
114     this.m_model            =   MDL_Speed_ITEM;
115     this.m_sound            =   SND_Speed;
116     this.m_glow             =   true;
117     this.m_respawnsound     =   SND_SHIELD_RESPAWN;
118 #endif
119     this.netname            =   "speed";
120     this.m_name             =   "Speed";
121     this.m_icon             =   "shield";
122     this.m_color            =   '1 0 1';
123     this.m_waypoint         =   _("Speed");
124     this.m_waypointblink    =   2;
125     this.m_itemid           =   IT_INVINCIBLE;
126 #ifdef SVQC
127     this.m_iteminit         =   powerup_speed_init;
128 #endif
129 }