Golf Ball: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
(→‎Code: code box update)
Line 17: Line 17:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=43}}
| {{CodeSnip
<pre>
  | lang = java
item GolfBall
  | line = true
Weight = 0.1,
  | start = 0
Type = Normal,
  | source = newitems.txt
DisplayName = GolfBall,
  | retrieved = true
Icon = Golfball,
  | version = 40
</pre>
  | incver = 43
  | code =
item GolfBall
{
  Weight     = 0.1,
  Type       = Normal,
  DisplayName = GolfBall,
  Icon       = Golfball,
}
  }}
}}


==See also==
==See also==
*[[Basketball]]
*[[Basketball]]
*[[Football]]
*[[Football]]

Revision as of 09:08, 8 January 2024

The Game WorldItemsGolf Ball
Golf Ball
General
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
None
Technical
Item ID
Base.GolfBall

Golf balls are currently a useless item, and often considered as junk.

Usage

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

Distribution

Golf balls can be found in lockers and vehicles.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 40.43
item GolfBall
{
  Weight      = 0.1,
  Type        = Normal,
  DisplayName = GolfBall,
  Icon        = Golfball,
}

See also