mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-06 04:50:26 +00:00
89 lines
1.3 KiB
Text
89 lines
1.3 KiB
Text
|
|
// General Pickups ============================================================
|
|
|
|
// Health ---------------------------------------------------------------------
|
|
|
|
class GlassOfWater : HealthBonus
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTWATER";
|
|
}
|
|
}
|
|
|
|
class BowlOfFruit : Stimpack
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTFRUIT";
|
|
}
|
|
}
|
|
|
|
class BowlOfVegetables : Medikit
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTVEGETABLES";
|
|
health.lowmessage 25, "$GOTVEGETABLESNEED";
|
|
}
|
|
}
|
|
|
|
class SuperchargeBreakfast : Soulsphere
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTBREAKFAST";
|
|
}
|
|
}
|
|
|
|
// Armor ----------------------------------------------------------------------
|
|
|
|
class SlimeRepellent : ArmorBonus
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTREPELLENT";
|
|
}
|
|
}
|
|
|
|
class ChexArmor : GreenArmor
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTCHEXARMOR";
|
|
}
|
|
}
|
|
|
|
class SuperChexArmor : BlueArmor
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTSUPERCHEXARMOR";
|
|
}
|
|
}
|
|
|
|
// Powerups ===================================================================
|
|
|
|
class ComputerAreaMap : Allmap
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTCHEXMAP";
|
|
}
|
|
}
|
|
|
|
class SlimeProofSuit : RadSuit
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTSLIMESUIT";
|
|
}
|
|
}
|
|
|
|
class Zorchpack : Backpack
|
|
{
|
|
Default
|
|
{
|
|
inventory.pickupmessage "$GOTZORCHPACK";
|
|
}
|
|
}
|