Speaker: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: deploy ReLookup, eid: 169cd57248d8f3ba06d9bb1812dfb2d5))
m (Automated CodeBox update)
(21 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{languages|Speaker}}
{{Header|Project Zomboid|Items|Electronics}}
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 40|incver=5}}{{Infobox normal
{{Page version|41.78.16}}
|display_name = Speaker
{{Infobox item
|name_colour = Electric
|name=Speaker
|name_text_colour = Electric
|name_colour=Electric
|image = Speaker.png  
|name_text_colour=Electric
|weight = 1.5
|model=Speaker_Model.png
|primary_use = [[Crafting]]
|icon=Speaker.png
|class_name = Base.Speaker
|icon_name=Speaker
}}{{quote|text=Used in improvised defensive devices. Requires known recipe or Engineer profession.|author=In-game tooltip}}A '''speaker''' is an [[electrical]] [[item]] used in [[crafting]].
|weight=1.5
|primary_use=[[Crafting]]
|item_id=Base.Speaker
}}


__TOC__
{{Quote|text=Used in improvised defensive devices. Requires known recipe or Engineer profession.|author=In-game tooltip}}
A '''speaker''' is an [[electrical]] [[Items|item]] used in [[crafting]].


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


==Crafting==
==Crafting==
{{Crafting header|ing=2}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 7003 -->
{{Crafting header|ing=2}}
{{Crafting/core|ing=2
{{Crafting electrical|004|ing=2}}
| product_image = [[File:Amplifier.png|link=Amplifier|Amplifier]] | product_name = [[Amplifier]] | product_quantity = x1
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:Speaker.png|link=Speaker|Speaker]] | i1 = [[Speaker]] | q1 = x1 | tag1 = (consumed)
| f2 = [[File:Screwdriver.png|link=Screwdriver|Screwdriver]] | i2 = [[Screwdriver]] | q2 =  | tag2 = (keep)
}}
|}
|}


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


==Distribution==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
Can be found in electronics store [[Containers#Counters|counters]] and [[Containers#Shelves|shelves]].
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="2"|BandPractice
|[[crate]]
|4
|8
|-
|[[crate]]  
|4
|8
|-
|rowspan="2"|bedroom
|[[crate]]
|4
|1
|-
|[[crate]]  
|1
|0.1
|}


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=5}}
| {{CodeSnip
<pre> item Speaker
  | lang = java
Weight = 1.5,
  | line = true
Type = Normal,
  | start = 219
DisplayName = Speaker,
  | source = newitems.txt
Icon = Speaker,
  | retrieved = true
MetalValue = 20,
  | version = 41.78.16
Tooltip = Tooltip_ItemTraps,</pre>
  | code =
item Speaker
    {
        DisplayCategory = Electronics,
        Weight = 1.5,
        Type = Normal,
        DisplayName = Speaker,
        Icon = Speaker,
        MetalValue = 20,
        Tooltip = Tooltip_ItemTraps,
        WorldStaticModel = Speaker,
    }
}}
}}


==See also==
==See also==
*[[Electrical|Electrical Guide]]
*[[Electrical]]


{{Navbox/Electricity and Engineering}}
{{Navbox equipment}}


[[Category:Electrical]]
[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]

Revision as of 11:35, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Speaker
Speaker Model.png
General
Encumbrance
Moodle Icon HeavyLoad.png
1.5
Function
Technical
Item ID
Base.Speaker
Used in improvised defensive devices. Requires known recipe or Engineer profession.
— In-game tooltip

A speaker is an electrical item used in crafting.

Usage

A speaker can only be dismantled, producing an amplifier.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Amplifier.png
Amplifier
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)
Speaker.png
Speaker
(consumed)

Distribution

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

Containers
Building/Room Container Rolls Chance
BandPractice crate 4 8
crate 4 8
bedroom crate 4 1
crate 1 0.1

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 Speaker
    {
        DisplayCategory = Electronics,
        Weight	=	1.5,
        Type	=	Normal,
        DisplayName	=	Speaker,
        Icon	=	Speaker,
        MetalValue = 20,
        Tooltip = Tooltip_ItemTraps,
        WorldStaticModel = Speaker,
    }

See also