Bag of Concrete Powder: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
m (Automated CodeBox update)
(26 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|type=Construction|version=Version 41|incver=78.16}}
{{Header|Project Zomboid|Items|Materials}}
{{Page version|41.78.16}}
{{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.PlasterPowder
}}
}}
A '''bag of concrete powder''' that is used in making concrete. The recipe is not yet implemented so this item has no use yet.


<!-- COMMENT: no use currently. Remove comments once item gains a use
A '''bag of concrete powder'''  is an item that currently has no use.
 
==Usage==
==Usage==
{{Future}}
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.


==Crafting==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
-->
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="5"|construction
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|}


==Distribution==
==Trivia==
[[Wooden Crate|Crate]]s may contain a bag of concrete.
*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==
{{Retrieved|version=41|incver=78.16}}
{{CodeBox|
<pre>
{{CodeSnip
  | lang = java
  | line = true
  | start = 109
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item ConcretePowder
item ConcretePowder
{
{
DisplayCategory = Material,
    DisplayCategory = Material,
Weight = 5,
Weight = 5,
Type = Normal,
Type = Normal,
DisplayName = Bag of Concrete Powder,
DisplayName = Bag of Concrete Powder,
Icon = Concrete_Powder,
Icon = Concrete_Powder,
WorldStaticModel = BagofConcretePowder,
WorldStaticModel = BagofConcretePowder,
}
}
</pre>
}}
}}


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


{{clear}} <!-- to force header background to bottom of page -->
[[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