Paintbrush: Difference between revisions

From PZwiki
(Created page with "Weight of 0.2 units. Found in crates. Used to paint plastered walls.")
 
m (Distribution table update)
 
(42 intermediate revisions by 13 users not shown)
Line 1: Line 1:
Weight of 0.2 units. Found in crates. Used to paint plastered walls.
{{Header|Project Zomboid|Items|Equipment|Tools|Carpentry tools}}
{{Page version|41.78.16}}
{{Infobox item
|name=Paintbrush
|model=PaintBrush_Model.png
|icon=Paintbrush.png
|icon_name=Paint Brush
|category=Tool
|weight=0.2
|primary_use=[[Paint]]ing [[wall]]s
|secondary_use=[[Bucket of Plaster|Plastering]] [[wall]]s
|item_id=Base.Paintbrush
}}
A '''paintbrush''' is an item used in construction.
 
==Usage==
The paint brush is used to [[Bucket of Plaster|plaster]] a player-constructed [[Wooden Wall|wooden wall]].
 
A plastered wall, whether player-constructed or not, can be [[paint]]ed using [[paint]] and the paintbrush. Symbols can also be painted on plastered walls, and other surface types, such as [[Wooden Sign|wooden signs]].
 
==Distribution==
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Paintbrush|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Paintbrush distribution
        <span class="mw-customtoggle-togglebox-Paintbrush" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Paintbrush">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|crate}}
    | 1
    | 0.4
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 10.0
    |-
    | cabinetfactory
    | {{ll|crate}}
    | 4
    | 4.0
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 10.0
    |-
    | toolstore
    | {{ll|counter}}
    | 4
    | 4.0
    |}
</div>
<div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Vehicles}}
    ! Vehicle Type/Location
    ! Rolls
    ! Chance
    |-
    | PainterGloveBox
    | 4
    | 10
    |-
    | PainterTruckBed
    | 1
    | 100
    |-
    | PainterTruckBed
    | 4
    | 10
    |-
    | PainterTruckBed
    | 4
    | 20
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Paintbrush" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Paintbrush|41.78.16-->
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 331
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Paintbrush
{
    DisplayCategory = Tool,
Weight = 0.2,
Type = Normal,
DisplayName = Paint Brush,
Icon = Paintbrush,
StaticModel = PaintBrush,
WorldStaticModel = PaintBrush_Ground,
}
}}
}}
 
==See also==
*[[Carpentry]]
*[[Bucket]]
*[[Paint]]
 
{{Navbox items|tools}}
 
 
[[Category:Construction]]
[[Category:Spiffo's Construction Crew (Project)]]

Latest revision as of 16:13, 24 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Paintbrush
PaintBrush Model.png
General
Category
Tool
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Technical
Item ID
Base.Paintbrush

A paintbrush is an item used in construction.

Usage

The paint brush is used to plaster a player-constructed wooden wall.

A plastered wall, whether player-constructed or not, can be painted using paint and the paintbrush. Symbols can also be painted on plastered walls, and other surface types, such as wooden signs.

Distribution

The loot distributions can be found in the table(s) below.

Paintbrush distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all crate 1 0.4
bedroom crate 1 10.0
cabinetfactory crate 4 4.0
closet crate 4 10.0
toolstore counter 4 4.0
Vehicles
Vehicle Type/Location Rolls Chance
PainterGloveBox 4 10
PainterTruckBed 1 100
PainterTruckBed 4 10
PainterTruckBed 4 20

Code

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

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Build 41.78.16
item Paintbrush
	{
	    DisplayCategory = Tool,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Paint Brush,
		Icon	=	Paintbrush,
		StaticModel = PaintBrush,
		WorldStaticModel = PaintBrush_Ground,
	}

See also