Pool Ball: Difference between revisions

From PZwiki
(The item exists, so it should not be deleted. A full knowledge info is always useful.)
m (Automated Formatting)
(25 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Sports}}
{{Page version|41.78.16}}
{{Infobox item
|name=Pool Ball
|model=PoolBall_Model.png
|model_width=128px
|icon=Poolball.png
|category=Sports
|weight=0.2
|function=''None''
|item_id=Base.PoolBall
}}
A '''pool ball''' is currently a useless item, and often considered as ''junk''.


{{Items
==Usage==
|image = Pool Ball.png
Pool balls have no use, being added purely for the purpose of clutter, creating more realism for the player when looting.
|weight = 0.2
}}


The pool ball is a rare item, and it does not have any purposes except for adding weight on to the player's inventory.
==Distribution==
The loot distributions can be found in the table(s) below.


== Code ==
{| 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"|barstorage
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|}


<pre>
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 365
  | source = items.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item PoolBall
item PoolBall
{
{
Type = Normal,
    DisplayCategory = Sports,
DisplayName = Pool Ball,
Weight = 0.2,
Icon = Poolball,
Type = Normal,
Weight = 0.2
DisplayName = Pool Ball,
}
Icon = Poolball,
</pre>
WorldStaticModel = PoolBall,
}
}}
}}


[[Category:Unique]]
==See also==
*[[Basketball]]
*[[Football]]
{{Navbox items|sports}}

Revision as of 11:12, 14 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]
Pool Ball
PoolBall Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Technical
Item ID
Base.PoolBall

A pool ball is currently a useless item, and often considered as junk.

Usage

Pool balls have no use, being added purely for the purpose of clutter, creating more realism for the player when looting.

Distribution

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

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

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 PoolBall
	{
	    DisplayCategory = Sports,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Pool Ball,
		Icon	=	Poolball,
		WorldStaticModel = PoolBall,
	}

See also