Paint

From PZwiki
Revision as of 11:04, 11 June 2023 by Vaileasys (talk | contribs) (added all colour variants to infobox and "Variants" section with all item IDs, names, and icons)
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
Encumbrance
Heavy Load
5.0 (Full)
1.0 (Empty)
Function Paint wooden wall
Capacity 10 units
Technical details
item ID Base.Paint[Colour]
Used to paint plastered walls. Requires paintbrush.
— In-game tooltip

Paint is a decorative item.

Usage

Used with a paint brush to paint plastered walls. One 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.

Distribution

Paint is usually found in crates.

Variants

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

Icon Name Item ID
Paint Red.png Red Paint Base.PaintRed
Paint Black.png Black Paint Base.PaintBlack
Paint Blue.png Blue Paint Base.PaintBlue
Paint Brown.png Brown Paint Base.PaintBrown
Paint Cyan.png Cyan Paint Base.PaintCyan
Paint Green.png Green Paint Base.PaintGreen
Paint Grey.png Grey Paint Base.PaintGrey
Paint LightBlue.png Light Blue Paint Base.PaintLightBlue
Paint LightBrown.png Light Brown Paint Base.PaintLightBrown
Paint Orange.png Orange Paint Base.PaintOrange
Paint Pink.png Pink Paint Base.PaintPint
Paint Purple.png Purple Paint Base.PaintPurple
Paint Turquoise.png Turquoise Paint Base.PaintTurqoise
Paint White.png White Paint Base.PaintWhite
Paint Yellow.png Yellow Paint 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,
    }

[Colour] Paint Paintanim.gif
From items.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.51

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

See also