mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-05 20:40:30 +00:00
2c74e287a9
with PWADs. - Removed Chex Quest actors that were just unaltered duplicates of Doom's. - Added detection for Chex Quest 3 IWAD. - Cleaned up M_QuitGame because the code was almost incomprehensible and I wanted to add CQ3's new quit messages. - Added Chex Quest obituaries and a few other messages from CQ3. - Fixed: drawbar improperly clipped images when not in the top left quadrant. SVN r1219 (trunk)
69 lines
1.3 KiB
Text
69 lines
1.3 KiB
Text
|
|
// General Pickups ============================================================
|
|
|
|
// Health ---------------------------------------------------------------------
|
|
|
|
actor GlassOfWater : HealthBonus 2014
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTWATER"
|
|
}
|
|
|
|
actor BowlOfFruit : Stimpack 2011
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTFRUIT"
|
|
}
|
|
|
|
actor BowlOfVegetables : Medikit 2012
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTVEGETABLES"
|
|
health.lowmessage 25, "$GOTVEGETABLESNEED"
|
|
}
|
|
|
|
actor SuperchargeBreakfast : Soulsphere 2013
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTBREAKFAST"
|
|
}
|
|
|
|
// Armor ----------------------------------------------------------------------
|
|
|
|
actor SlimeRepellent : ArmorBonus 2015
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTREPELLENT"
|
|
}
|
|
|
|
actor ChexArmor : GreenArmor 2018
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTCHEXARMOR"
|
|
}
|
|
|
|
actor SuperChexArmor : BlueArmor 2019
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTSUPERCHEXARMOR"
|
|
}
|
|
|
|
// Powerups ===================================================================
|
|
|
|
actor ComputerAreaMap : Allmap 2026
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTCHEXMAP"
|
|
}
|
|
|
|
actor SlimeProofSuit : RadSuit 2025
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTSLIMESUIT"
|
|
}
|
|
|
|
actor Zorchpack : Backpack 8
|
|
{
|
|
game Chex
|
|
inventory.pickupmessage "$GOTZORCHPACK"
|
|
}
|