Box of Sparklers: Difference between revisions

From PZwiki
(Created page with "{{languages|Box of Sparklers}} {{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=5}}{{Infobox normal |display_name = Box of Spa...")
 
m (Distribution table update)
 
(33 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages|Box of Sparklers}}
{{Header|Project Zomboid|Items|Materials}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Box of Sparklers
{{Infobox item
|name_colour = Electric
|name=Box of Sparklers
|name_text_colour = Electric
|model=Sparklers_Model.png
|image = Sparklers.png
|icon=Sparklers.png
|weight = 0.1
|icon_name=Box of Sparklers
|primary_use = [[Crafting]]
|weight=0.2
|class_name = Base.Sparklers
|primary_use=[[Crafting]]
}}A '''box of sparklers''' is an [[item]] used in [[crafting]] [[electrical]]s.
|item_id=Base.Sparklers
 
}}
__TOC__
A '''box of sparklers''' is an [[Items|item]] used in [[crafting]] [[electrical]]s.


==Usage==
==Usage==
Line 16: Line 16:


==Crafting==
==Crafting==
{{Crafting table header}}
{{Crafting/sandbox2
{{RecipeLookup|7009}}
|aerosol_bomb
{{Crafting table footer}}
}}


==Distribution==
==Distribution==
Can be found in [[Containers#Counters|counters]].
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|Sparklers|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Sparklers distribution
        <span class="mw-customtoggle-togglebox-Sparklers" 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-Sparklers">
    <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
    |-
    | closet
    | {{ll|crate}}
    | 4
    | 8.0
    |-
    | kitchen
    | {{ll|counter}}
    | 4
    | 4.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Sparklers" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Sparklers|41.78.16-->


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


==See also==
==See also==
*[[Electrical|Electrical Guide]]
*[[Electrical]]
*[[Electronics]]
 
{{Navbox items|explosives}}
 
[[Category:Electricals and Transmission (Project)]]

Latest revision as of 15:02, 24 April 2024

Project ZomboidItemsMaterialsBox of Sparklers
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Box of Sparklers
Sparklers Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
Technical
Item ID
Base.Sparklers

A box of sparklers is an item used in crafting electricals.

Usage

A box of sparklers is only used as a crafting component in electrical items.

Crafting

Product Ingredients Tools Requirements Workstation XP
Aerosolbomb.png
Aerosol Bomb
Hairspray.png Hairspray ×1
Sparklers.png Box of Sparklers ×1
Aluminum.png Aluminum ×1
none
Profession engineer.png
Engineer occupation
none none

Distribution

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

Sparklers distribution Show / Hide
Containers
Building / Room Container Rolls Chance
closet crate 4 8.0
kitchen counter 4 4.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 Sparklers
    {
        DisplayCategory = Material,
        Weight	=	0.2,
        Type	=	Normal,
        DisplayName	=	Box of Sparklers,
        Icon	=	Sparklers,
        WorldStaticModel = BoxOfSparklers,
    }

See also