Wooden Doorframe

From PZwiki
Revision as of 14:10, 24 February 2024 by Faalagorn (talk | contribs) (minor)

Template:Header/sandbox2

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Notebook.png
This article may need more content.
Editors are encouraged to add new material to the page while expanding upon current topics.
Frame.png
This article contains outdated/low-quality images.
Reason: Door frame images
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Wooden Door Frame
General
Category
Furniture
Function
Protect the player from zombies and weather

A wooden doorframe is a structure that the player can build to fortify a structure, or in the creation of new buildings.

In-game screenshot of a wooden door frame both with a wooden door and without one.

Usage

Wooden doorframes are a defensive structure from the carpentry skill that are used to hold constructable doors for the player to enter/exit. This allows the player easy access to their structure without risking climbing over a wall, or having an exposed gap for zombies to enter through. Doorframes are not attacked by zombies, but the wooden doors built into them can be destroyed by zombies. If a door is missing or destroyed, zombies will walk through the door.

Wooden doorframes can be destroyed with a sledgehammer. They can also be plastered and painted using paint and a paintbrush.

Construction

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
Doorframe Carpentry.gif
Wooden Doorframe
5 Carpentry Carpentry 2 Hammer.png
Hammer (tag)
(keep)
Plank.png
Plank x4
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Doorframe Lvl 2
Upgrade Wooden Doorframe From Lvl 1 to Lvl 2
5 Carpentry Carpentry 4 Hammer.png
Hammer (tag)
(keep)
Wooden Doorframe Lvl 1
Wooden Doorframe Lvl 1
Plank.png
Plank x1
(consumed)
Nails.png
Nails x4
(consumed)
Wooden Doorframe Lvl 3
Upgrade Wooden Doorframe From Lvl 2 to Lvl 3
5 Carpentry Carpentry 7 Hammer.png
Hammer (tag)
(keep)
Wooden Doorframe Lvl 2
Wooden Doorframe Lvl 2
Plank.png
Plank x1
(consumed)
Nails.png
Nails x4
(consumed)

To build a wooden doorframe, a player must have a hammer, planks, and nails in their inventory, or on the ground within reach. They must also have at least level 2 carpentry. Unlike the wooden wall and wooden window, the wooden doorframe does not require a wooden frame to be built first. The level of doorframe built is based on the player's carpentry level. It cannot be selected by the player. However, lower level doorframes can be upgraded by the player.

Skill requirements

  • Level 1 doorframe: Carpentry 2
  • Level 2 doorframe: Carpentry 4
  • Level 3 doorframe: Carpentry 7

Trivia

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\multistagebuild.txt

Retrieved: Build 41.78.16
multistagebuild UpgradeWoodenDoorFrame_1To2
{
    PreviousStage: WoodenDoorFrameLvl1,
    Name: WoodenDoorFrameLvl2,
    TimeNeeded: 200,
    BonusHealth: 200,
    SkillRequired: Woodwork=4,
    ItemsRequired: Base.Plank=1; Base.Nails=4,
    ItemsToKeep: Base.Hammer,
    WallType: doorframe,
    Sprite: walls_exterior_wooden_01_50,
    NorthSprite: walls_exterior_wooden_01_51,
    CraftingSound: Hammering,
    ID: Upgrade to Wooden Door Frame Lvl 2,
    XP: Woodwork=5,
}

multistagebuild UpgradeWoodenDoorFrame_2To3
{
    PreviousStage: WoodenDoorFrameLvl2,
    Name: WoodenDoorFrameLvl3,
    TimeNeeded: 200,
    BonusHealth: 100,
    SkillRequired: Woodwork=7,
    ItemsRequired: Base.Plank=1; Base.Nails=4,
    ItemsToKeep: Base.Hammer,
    CanBePlastered: true,
    WallType: doorframe,
    Sprite: walls_exterior_wooden_01_34,
    NorthSprite: walls_exterior_wooden_01_35,
    CraftingSound: Hammering,
    ID: Upgrade to Wooden Door Frame Lvl 3,
    XP: Woodwork=5,
}

See also