X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fitems%2Fitem%2Fhealth.qc;h=49a34c1c8ee280f159139311ae4b245c91a23c4f;hb=e88e1e15090f826fe3ac9b006e89eca0d1ecfe68;hp=6a2b5b13895a4b00ff2dacb05393395bfeae03b8;hpb=0cdb1b7f5c95d832b0d9269fed155bcb01870cf3;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/items/item/health.qc b/qcsrc/common/items/item/health.qc index 6a2b5b138..49a34c1c8 100644 --- a/qcsrc/common/items/item/health.qc +++ b/qcsrc/common/items/item/health.qc @@ -1,89 +1 @@ #include "health.qh" -#ifdef SVQC - #include "../../../server/t_items.qh" -#endif - -#ifndef MENUQC -MODEL(HealthSmall_ITEM, Item_Model("g_h1.md3")); -SOUND(HealthSmall, "misc/minihealth"); -#endif - -REGISTER_ITEM(HealthSmall, Health) { -#ifndef MENUQC - this.m_model = MDL_HealthSmall_ITEM; - this.m_sound = SND_HealthSmall; -#endif - this.m_name = "5 Health"; - this.m_icon = "health"; -#ifdef SVQC - this.m_botvalue = BOT_PICKUP_RATING_LOW; - this.m_itemid = IT_5HP; - this.m_respawntime = GET(g_pickup_respawntime_short); - this.m_respawntimejitter = GET(g_pickup_respawntimejitter_short); -#endif -} - -#ifndef MENUQC -MODEL(HealthMedium_ITEM, Item_Model("g_h25.md3")); -SOUND(HealthMedium, "misc/mediumhealth"); -#endif - -REGISTER_ITEM(HealthMedium, Health) { -#ifndef MENUQC - this.m_model = MDL_HealthMedium_ITEM; - this.m_sound = SND_HealthMedium; -#endif - this.m_name = "25 Health"; - this.m_icon = "health"; -#ifdef SVQC - this.m_botvalue = BOT_PICKUP_RATING_MID; - this.m_itemid = IT_25HP; - this.m_respawntime = GET(g_pickup_respawntime_short); - this.m_respawntimejitter = GET(g_pickup_respawntimejitter_short); -#endif -} - -#ifndef MENUQC -MODEL(HealthLarge_ITEM, Item_Model("g_h50.md3")); -SOUND(HealthLarge, "misc/mediumhealth"); -#endif - -REGISTER_ITEM(HealthLarge, Health) { -#ifndef MENUQC - this.m_model = MDL_HealthLarge_ITEM; - this.m_sound = SND_HealthLarge; -#endif - this.m_name = "50 Health"; - this.m_icon = "health"; - this.m_color = '1 0 0'; - this.m_waypoint = _("Large health"); -#ifdef SVQC - this.m_botvalue = BOT_PICKUP_RATING_MID; - this.m_itemid = IT_25HP; - this.m_respawntime = GET(g_pickup_respawntime_medium); - this.m_respawntimejitter = GET(g_pickup_respawntimejitter_medium); -#endif -} - -#ifndef MENUQC -MODEL(HealthMega_ITEM, Item_Model("g_h100.md3")); -SOUND(HealthMega, "misc/megahealth"); -#endif - -REGISTER_ITEM(HealthMega, Health) { -#ifndef MENUQC - this.m_model = MDL_HealthMega_ITEM; - this.m_sound = SND_HealthMega; -#endif - this.m_name = "100 Health"; - this.m_icon = "item_mega_health"; - this.m_color = '1 0 0'; - this.m_waypoint = _("Mega health"); - this.m_waypointblink = 2; -#ifdef SVQC - this.m_botvalue = BOT_PICKUP_RATING_HIGH; - this.m_itemid = IT_HEALTH; - this.m_respawntime = GET(g_pickup_respawntime_long); - this.m_respawntimejitter = GET(g_pickup_respawntimejitter_long); -#endif -}