]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/items/item/powerup.qc
Merge branch 'TimePath/modules'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / item / powerup.qc
index fcfe2afb93a5a7c4b44183dfd6c654595f9c1c77..7c7405b75bb4e34dcad03f2260454c637f19ef48 100644 (file)
@@ -1,26 +1 @@
 #include "powerup.qh"
-#include "../../../server/t_items.qh"
-
-#ifndef SVQC
-.int m_itemid;
-#endif
-REGISTER_ITEM(Strength, Powerup) {
-    this.m_model            =   "g_strength.md3";
-    this.m_sound            =   "misc/powerup.wav";
-    this.m_name             =   "Strength Powerup";
-    this.m_icon             =   "strength";
-    this.m_color            =   '0 0 1';
-    this.m_waypoint         =   _("Strength");
-    this.m_waypointblink    =   2;
-    this.m_itemid           =   IT_STRENGTH;
-}
-REGISTER_ITEM(Shield, Powerup) {
-    this.m_model            =   "g_invincible.md3";
-    this.m_sound            =   "misc/powerup_shield.wav";
-    this.m_name             =   "Shield";
-    this.m_icon             =   "shield";
-    this.m_color            =   '1 0 1';
-    this.m_waypoint         =   _("Shield");
-    this.m_waypointblink    =   2;
-    this.m_itemid           =   IT_INVINCIBLE;
-}