Baseball: Difference between revisions

From PZwiki
(Created page with "''No purpose has been found for this item, as of build 34.28.''")
 
m (Insert empty line above each {{Navbox}})
 
(27 intermediate revisions by 6 users not shown)
Line 1: Line 1:
''No purpose has been found for this item, as of build 34.28.''
{{Header|Project Zomboid|Items|Miscellaneous items|Sports}}
{{Page version|41.78.16}}
{{Infobox item
|name=Baseball
|model=Baseball_Model.png
|model_width=200px
|icon=Baseball.png
|icon_name=Baseball
|category=Sports
|weight=0.1
|function=''None''
|item_id=Base.Baseball
}}
'''Baseballs''' are currently a useless [[Items|item]], and often considered as ''junk''.
 
==Usage==
Baseballs 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.
 
<!--BOT FLAG|Baseball|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Baseball distribution
        <span class="mw-customtoggle-togglebox-Baseball" 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-Baseball">
    <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
    |-
    | baseballstore
    | {{ll|shelves}}
    | 4
    | 20.0
    |-
    | baseballstore
    | {{ll|shelves}}
    | 4
    | 10.0
    |-
    | bedroom
    | {{ll|crate}}
    | 1
    | 1.0
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 10.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 20.0
    |-
    | schoolstorage
    | {{ll|crate}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Baseball" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Baseball|41.78.16-->
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 265
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Baseball
    {
        DisplayCategory = Sports,
        Weight = 0.1,
        Type = Normal,
        DisplayName = Baseball,
        Icon = Baseball,
        WorldStaticModel = BaseBall,
    }
}}
}}
 
==See also==
* [[Baseball Bat]]
* [[Basketball]]
* [[Football]]
 
{{Navbox items|sports}}

Latest revision as of 13:41, 25 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]
Baseball
Baseball Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
None
Technical
Item ID
Base.Baseball

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

Usage

Baseballs 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.

Baseball distribution Show / Hide
Containers
Building / Room Container Rolls Chance
baseballstore shelves 4 20.0
baseballstore shelves 4 10.0
bedroom crate 1 1.0
closet crate 4 10.0
schoolstorage crate 4 20.0
schoolstorage crate 4 10.0

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item Baseball
    {
        DisplayCategory = Sports,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Baseball,
        Icon	=	Baseball,
        WorldStaticModel = BaseBall,
    }

See also