Wolfenstein 3D Wiki
Gibs

Gibs

Blood Puddle

Blood Puddle

 Gibs

Mission Packs Gibs

 Blood Puddle

Mission Packs Blood Puddle

Blood and gibs are special nonsolid props which become health pickups if the player's health is below 11%. They only grant 1% health, but desperate players can take advantage of this to optimize health preservation.

Trivia[]

  • The ability to drink blood and gibs from the ground is listed as a tip in The Official Hint Manual for Wolfenstein 3D.
  • Drinking blood and gibs causes the same sound that plays when Hitler's death animation plays (slurpie).

ECWolf DECORATE Definitions[]

actor Blood : Health 67
{
    inventory.amount 1
    inventory.maxamount 11
    inventory.pickupsound "misc/slurpie"
    states
    {
        Spawn:
            BLUD A -1
            stop
    }
}
actor Blood2 : Blood 145
{
    inventory.pickupsound "misc/slurpie2"
    states
    {
        Spawn:
            BLD2 A -1
            stop
    }
}

actor Gibs : Health 71
{
    inventory.amount 1
    inventory.maxamount 11
    inventory.pickupsound "misc/slurpie"
    states
    {
        Spawn:
            GIBS A -1
            stop
    }
}
actor Gibs2 : Gibs 126
{
    inventory.pickupsound "misc/slurpie2"
    states
    {
        Spawn:
            GIB2 A -1
            stop
    }
}