Basketball: Difference between revisions

From PZwiki
m (→‎top: Replace "Infobox_normal" with "Infobox_item")
m (Insert empty line above each {{Navbox}})
(22 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Sports}}
{{header|The Game World|Items|version=Version 41|incver=78.16}}{{Infobox item
{{Page version|41.78.16}}
| display_name = Basketball
{{Infobox item
| name_colour =
|name=Basketball
| name_text_colour =
|model=Basketball_Model.png
| model = Basketball_Model.png
|model_width=200px
| model_width = 200px
|icon_name=Basketball
| icon_name = Basketball
|icon=Basketball.png
| icon = Basketball.png
|category=Sports
| category = Sports
|weight=0.2
| weight = 0.2
|function=''None''
| function = ''None''
|item_id=Base.Basketball
| class_name = Base.Basketball
}}
}}'''Basketballs''' are currently a useless {{T|item}}, and often considered as ''junk''.
'''Basketballs''' are currently a useless [[Items|item]], and often considered as ''junk''.


==Usage==
==Usage==
Basketballs have no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.  
Basketballs have no use, being added purely for the purpose of clutter, creating more realism for the [[player]] when looting.


==Distribution==
==Distribution==
Basketballs can be found in lockers.  
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Basketball|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Basketball distribution
        <span class="mw-customtoggle-togglebox-Basketball" 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-Basketball">
    <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
    |-
    | 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-Basketball" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Basketball|41.78.16-->
Basketballs can be found in lockers.


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=78.16}}
| {{CodeSnip
<pre>    item Basketball
  | lang = java
  | line = true
  | start = 275
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Basketball
     {
     {
         DisplayCategory = Sports,
         DisplayCategory = Sports,
Line 31: Line 78:
         Icon = Basketball,
         Icon = Basketball,
         WorldStaticModel = BasketBall,
         WorldStaticModel = BasketBall,
     }</pre>
     }
}}
}}


==See also==
==See also==
* [[Baseball]]
* [[Baseball]]
* [[Football]]
* [[Football]]
{{Navbox items|sports}}

Revision as of 13:42, 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]
Basketball
Basketball Model.png
General
Category
Sports
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Technical
Item ID
Base.Basketball

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

Usage

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

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

Basketballs can be found in lockers.

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 Basketball
    {
        DisplayCategory = Sports,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	Basketball,
        Icon	=	Basketball,
        WorldStaticModel = BasketBall,
    }

See also