/* A health pack that heals you for 50 -- up to, uniquely, a max of 250.
 *
 * DEPENDS ON:
 * realm667.pickup.Medipack.wad (for sprite)
 */

actor AnachronyMedipack : Health 13403
{
    game Doom
    inventory.amount 50
    inventory.maxamount 250
    inventory.pickupmessage "Picked up a medipack."
    health.lowmessage 20, "Picked up a medipack that you REALLY need!"

    states {
    Spawn:
        MEDP A -1
        stop
    }
}
