2008-08-30 19:44:19 +00:00
|
|
|
|
|
|
|
// General Pickups ============================================================
|
|
|
|
|
|
|
|
// Health ---------------------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor GlassOfWater : HealthBonus
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTWATER"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor BowlOfFruit : Stimpack
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTFRUIT"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor BowlOfVegetables : Medikit
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTVEGETABLES"
|
|
|
|
health.lowmessage 25, "$GOTVEGETABLESNEED"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor SuperchargeBreakfast : Soulsphere
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTBREAKFAST"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Armor ----------------------------------------------------------------------
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor SlimeRepellent : ArmorBonus
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTREPELLENT"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor ChexArmor : GreenArmor
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTCHEXARMOR"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor SuperChexArmor : BlueArmor
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTSUPERCHEXARMOR"
|
|
|
|
}
|
|
|
|
|
|
|
|
// Powerups ===================================================================
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor ComputerAreaMap : Allmap
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
2008-09-13 19:19:53 +00:00
|
|
|
inventory.pickupmessage "$GOTCHEXMAP"
|
2008-08-30 19:44:19 +00:00
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor SlimeProofSuit : RadSuit
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTSLIMESUIT"
|
|
|
|
}
|
|
|
|
|
2015-04-03 14:34:07 +00:00
|
|
|
actor Zorchpack : Backpack
|
2008-08-30 19:44:19 +00:00
|
|
|
{
|
|
|
|
inventory.pickupmessage "$GOTZORCHPACK"
|
|
|
|
}
|