Bag of Concrete Powder: Difference between revisions

From PZwiki
(Article updates and formatting)
m (Automated CodeBox update)
(19 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Materials}}
{{Header|Project Zomboid|Items|type=Construction|version=Version 41|incver=78.16}}
{{Page version|41.78.16}}
{{stub}}
{{Infobox item
{{Infobox item
|display_name = Bag of Concrete Powder
|name=Bag of Concrete Powder
|name_colour = Construction
|name_colour=Construction
|name_text_colour = Construction
|name_text_colour=Construction
|model = BagofConcretePowder_Model.png
|model=BagofConcretePowder_Model.png
|model_width = 200px
|model_width=200px
|icon = Concrete_Powder.png
|icon=Concrete_Powder.png
|icon_name = Bag of Concrete Powder
|icon_name=Bag of Concrete Powder
|icon_link =
|category=Material
|category = Material
|weight=5
|weight = 5
|function=''none''
|function = ''none''
|item_id=Base.ConcretePowder
|class_name = Base.ConcretePowder
}}
}}
A '''bag of concrete powder'''  is an item that currently has no use.
A '''bag of concrete powder'''  is an item that currently has no use.


==Usage==
==Usage==
{{future}}
{{Future}}
While the item currently serves no purpose, it is likely going to be used to create concrete.
While the item currently serves no purpose, it is likely going to be used to create concrete.


Line 28: Line 27:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="5"|construction  
|rowspan="5"|construction  
| [[crate]]  
|[[crate]]  
| 4  
|4  
| 1
|1
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|1
|1
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|2
|2
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|2
|2
|-
|-
|[[crate]]
|[[crate]]  
|4
|4  
|5
|5
|}
|}
==Trivia==
*The model says the net weight of the bag is ''25 Kg'' (should be ''[[Wikipedia:Kilogram|kg]]''), which is a [[Wikipedia:Metric system|metric system]] unit, not a [[Wikipedia:United States customary units|US customary unit]].


==Code==
==Code==
Line 65: Line 67:
   | version = 41.78.16
   | version = 41.78.16
   | code =
   | code =
item ConcretePowder
item ConcretePowder
{
{
    DisplayCategory = Material,
    DisplayCategory = Material,
Line 73: Line 75:
Icon = Concrete_Powder,
Icon = Concrete_Powder,
WorldStaticModel = BagofConcretePowder,
WorldStaticModel = BagofConcretePowder,
}
}  
}}
}}
}}
}}


==See also==
==See also==
*[[Bucket with Plaster]]
*[[Bag of Plaster Powder]]
*[[Paint Brush]]
*[[Bucket of Concrete]]
*[[Carpentry]]


[[Category:Carpentry materials]]
[[Category:Spiffo's Construction Crew (Project)]]
[[Category:Spiffo's Construction Crew (Project)]]

Revision as of 10:05, 26 March 2024

Project ZomboidItemsMaterialsBag of Concrete Powder
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Bag of Concrete Powder
BagofConcretePowder Model.png
General
Category
Material
Encumbrance
Moodle Icon HeavyLoad.png
5
Function
none
Technical
Item ID
Base.ConcretePowder

A bag of concrete powder is an item that currently has no use.

Usage

PictureKate.png
This is a future feature.
This article is about an item or mechanic that is currently unimplemented and planned for a future version.
It has either been previewed or found in the game files and does not exist yet.

While the item currently serves no purpose, it is likely going to be used to create concrete.

Distribution

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

Containers
Building/Room Container Rolls Chance
construction crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5

Trivia

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 ConcretePowder
	{
	    DisplayCategory = Material,
		Weight	=	5,
		Type	=	Normal,
		DisplayName	=	Bag of Concrete Powder,
		Icon	=	Concrete_Powder,
		WorldStaticModel = BagofConcretePowder,
	}

See also