Football: Difference between revisions

From PZwiki
m (Minor)
m (Distribution table update)
(27 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Sports}}
{{Header|The Game World|Items|version=Version 40|incver=43}}
{{Page version|41.78.16}}
{{Unverified}}
{{Infobox item
{{Infobox item
| display_name = Football
|name=Football
| name_colour =
|model=Football_Model.png
| name_text_colour =  
|icon=Football.png
| model = Football.png
|weight=0.2
| model_width = 128px
|function=''None''
| weight = 0.2
|item_id=Base.Football
| function = ''None''
| class_name = Base.Football
}}
}}
'''Footballs''' are currently a useless {{T|item}}, and often considered as ''junk''.
'''Footballs''' are currently a useless [[Items|item]], and often considered as ''junk''.


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


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


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=43}}
| {{CodeSnip
<pre>
  | lang = java
item Football
  | line = true
Weight = 0.2,
  | start = 422
Type = Normal,
  | source = newitems.txt
DisplayName = Football,
  | retrieved = true
Icon = Football,
  | version = 41.78.16
</pre>
  | code =
item Football
    {
        DisplayCategory = Sports,
        Weight = 0.2,
        Type = Normal,
        DisplayName = Football,
        Icon = Football,
        WorldStaticModel = Football,
    }
}}
}}


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

Revision as of 15:31, 24 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]
Football
Football Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Technical
Item ID
Base.Football

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

Usage

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

Football 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

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

See also