ValuTech PortaDisc: Difference between revisions

From PZwiki
m (Djhatt0204 moved page ValuTech PortaDisc to ValuTech PortaDisc over redirect: Corrected title to use the in-game name)
(Cleanup)
Line 1: Line 1:
{{languages}}
{{Languages}}{{Header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=78}}{{Infobox normal
{{header|The Game World|Items|Electricity and Engineering|type=Electric|version=Version 41|incver=78}}{{Infobox normal
|display_name=ValuTech PortaDisc
|display_name = ValuTech PortaDisc
|name_colour=Electric
|name_colour = Electric
|name_text_colour=Electric
|name_text_colour = Electric
|image=CDplayer Model.png  
|image = CDplayer_Model.png  
|image_width=300px
| image_width = 300px
|alternate_image=CDplayer.png  
| alternate_image = CDplayer.png  
|alternate_name=CD Player
| alternate_name = CD Player
|alternate_link=
| alternate_link =  
|weight = 0.3
|weight = 0.3
|primary_use = Play [[CD]]s to reduce boredom and to be dismantled for [[Electronics Scrap|electronics scrap]].
|primary_use = Play [[CD]]s to reduce boredom and to be dismantled for [[Electronics Scrap|electronics scrap]].
Line 19: Line 18:
As of IWBUMs 41.54, a ValuTech PortaDisc is able to play [[CD]]s and can be used with headphones and earbuds.
As of IWBUMs 41.54, a ValuTech PortaDisc is able to play [[CD]]s and can be used with headphones and earbuds.


== Crafting ==
==Crafting==
{{Crafting header|ing=2}}
{{Crafting header|ing=2}}
{{Crafting electrical|002|ing=2}}
{{Crafting electrical|002|ing=2}}
Line 30: Line 29:
*CD players used a small motor to spin the reflective disc, while a laser was used to read the pits in it's mirrored surface.
*CD players used a small motor to spin the reflective disc, while a laser was used to read the pits in it's mirrored surface.


== Code ==
==Code==
'''''From items_radio.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_radio.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=41|incver=65}}
{{Retrieved|version=41|incver=65}}
<nowiki> item CDplayer
<pre>
item CDplayer
{
{
    DisplayCategory = Electronics,
    DisplayCategory = Electronics,
Line 61: Line 61:
NoTransmit      = TRUE,
NoTransmit      = TRUE,
WorldStaticModel = CDPlayer,
WorldStaticModel = CDPlayer,
}</nowiki>
}
</pre>


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


{{Navbox/Electricity and Engineering}}
{{Navbox equipment}}
 
[[Category:Electricals and Transmission (Project)]]
[[Category:Electricals and Transmission (Project)]]

Revision as of 22:59, 5 April 2023

ValuTech PortaDisc
ValuTech PortaDisc
CD Player
General
Category Item
Encumbrance
Heavy Load
0.3
Function Play CDs to reduce boredom and to be dismantled for electronics scrap.
Technical details
Base ID Radio.CDplayer

A ValuTech PortaDisc is an electrical item, able to play CDs to reduce boredom.

Usage

ValuTech PortaDiscs are one of various household electronics that can be dismantled using a screwdriver in return for two electronics scrap.

As of IWBUMs 41.54, a ValuTech PortaDisc is able to play CDs and can be used with headphones and earbuds.

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
ElectronicsScrap.png
Scrap Electronics x2
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)
CDplayer.png
ValuTech PortaDisc
(consumed)

Distribution

ValuTech PortaDiscs can be found in bedroom wardrobes and drawers, lockers, school desks, and the shelves or display cases of various stores including electronics, gift and music.

Trivia

  • CD players used a small motor to spin the reflective disc, while a laser was used to read the pits in it's mirrored surface.

Code

From items_radio.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.65

	item CDplayer
	{
	    DisplayCategory = Electronics,
		Type			= Radio,
		Icon			= CDplayer,
		StaticModel     = CDplayer,
		Weight          	= 0.3,
		ConditionMax	= 100,

		DisplayName		= ValuTech PortaDisc,

		UseDelta		= 0.009,
		UseWhileEquipped	= FALSE,
		DisappearOnUse		= FALSE,
		TwoWay			= FALSE,
		TransmitRange		= 0,
		MicRange		= 0,
		BaseVolumeRange		= 15,
		IsPortable		= TRUE,
		IsTelevision		= FALSE,
		MinChannel		= 88000,
		MaxChannel		= 108000,
		UsesBattery		= TRUE,
		IsHighTier		= FALSE,
		Tooltip = Tooltip_media_item_operate,
		AcceptMediaType = 0,
		NoTransmit      = TRUE,
		WorldStaticModel = CDPlayer,
	}

See also