Paint

From PZwiki
Jump to navigation Jump to search
PZwiki:Language policy Language:

English • français • русский

Navigation: Main>The Game World>Items>PaintPage updated: Version 41.78.16
Paint
Paint
Red Paint Black Paint Blue Paint Brown Paint Cyan Paint Green Paint Grey Paint Light Blue Paint
Light Brown Paint Orange Paint Pink Paint Purple Paint Turquoise Paint White Paint Yellow Paint Empty Paint Bucket
General
Category Item
Weight
Heavy Load
5.0 (Full)
1.0 (Empty)
Function Paint plastered wooden wall, paint signs on walls.
Capacity 10 units
Technical details
item ID Base.Paint[Color]
“Used to paint plastered walls. Requires paintbrush.”
— In-game tooltip

Paint is a decorative item.

Usage

Paint is used with a paintbrush to paint plastered walls. A full can of paint can be used to paint up to ten walls or signs.

Once a can of paint has been used, or if the paint is poured out, it will be replaced with an empty paint bucket, which can be used to collect rain water.

Paint can come in 15 different colors including: black, blue, brown, cyan, green, gray, light blue, light brown, orange, pink, purple, red, turquoise, white, and yellow.

Distribution

Paint is usually found in crates.

Types

Icon Name Encumbrance Base ID
Black Paint Black Paint 5.0 Base.PaintBlack
Blue Paint Blue Paint 5.0 Base.PaintBlue
Brown Paint Brown Paint 5.0 Base.PaintBrown
Cyan Paint Cyan Paint 5.0 Base.PaintCyan
Green Paint Green Paint 5.0 Base.PaintGreen
Gray Paint Gray Paint 5.0 Base.PaintGrey
Light Blue Paint Light Blue Paint 5.0 Base.PaintLightBlue
Light Brown Paint Light Brown Paint 5.0 Base.PaintLightBrown
Orange Paint Orange Paint 5.0 Base.PaintOrange
Pink Paint Pink Paint 5.0 Base.PaintPink
Purple Paint Purple Paint 5.0 Base.PaintPurple
Red Paint Red Paint 5.0 Base.PaintRed
Turquoise Paint Turquoise Paint 5.0 Base.PaintTurquoise
White Paint White Paint 5.0 Base.PaintWhite
Yellow Paint Yellow Paint 5.0 Base.PaintYellow

Code

Empty Paint Bucket PaintbucketEmpty.png
From newitems.txt (Project Zomboid directory/media/scripts/)

Retrieved: Build 41.51

    item PaintbucketEmpty
    {
        Weight	=	1.0,
        Type	=	Normal,
        DisplayName	=	Empty Paint Bucket,
        Icon	=	PaintbucketEmpty,
        MetalValue = 20,
        StaticModel = Bucket,
        CanStoreWater	=	TRUE,
        ReplaceOnUseOn	=	WaterSource-WaterPaintbucket,
        RainFactor = 1,
        Tooltip = Tooltip_item_RainFromGround,
        EatType = Bucket,
    }

[Color] Paint Paintanim.gif
From items.txt (Project Zomboid directory/media/scripts/)

Retrieved: Build 41.51

    item Paint[Color]
	{
		Weight	=	5,
		Type	=	Drainable,
		ReplaceOnDeplete = PaintbucketEmpty,
		UseWhileEquipped	=	FALSE,
		UseDelta	=	0.1,
		DisplayName	=	[Color] Paint,
		Icon	=	Paint_[Color],
		Tooltip = Tooltip_Paint,
		StaticModel = Bucket,
	}

See also