Wolfenstein 3D Wiki
Register
Advertisement
Sprite0170

Power Up

Sprite0170 copy

Mission Packs Power Up

The Power Up is the most useful pickup, granting help on all fronts. It grants the player full health (99% health), 25 bullets, and an extra life. On top of this, it also counts toward the map's item tally bonus.

Notes[]

  • Most players will grab the Power Up right away out of excitement upon finding it. However, it's wiser to remember where it's located and come back to it either once a path to the exit has been cleared or when the player is running low on supplies. Because it gives full health and a decent amount of ammo, it should be considered for its ability to turn things around when the going gets rough. This is also easy to waste as, unlike most useful pick-ups, the Power Up can be consumed whether or not the player already has full health and ammo.
  • The Power Up is the only pick-up in the original Wolfenstein 3D which is completely outside of the realm of reality. In Spear of Destiny it is joined by The Spear of Destiny which is a magical artifact.
  • Power Ups are very rarely found outside of secret areas.

ECWolf DECORATE Definitions[]

actor OneUpHealth : Health
{
    inventory.amount 99
}
actor OneUp : CustomInventory 66
{
    inventory.pickupsound "misc/1up"
    +COUNTITEM
    +INVENTORY.ALWAYSPICKUP
    states
    {
        Spawn:
            ONUP A -1 bright
            stop
        Pickup:
            TNT1 A 0 A_GiveExtraMan
            TNT1 A 0 A_GiveInventory("Clip", 25)
            TNT1 A 0 A_GiveInventory("OneUpHealth")
            stop
    }
}
actor OneUpPill : OneUp 144
{
    states
    {
        Spawn:
            PILL A -1 bright
            stop
    }
}
Advertisement