Light Bulb

From PZwiki
(Redirected from Light Bulb)
Spiffo controlyourself.png
This page was last updated for an older version (40.5).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Light Bulb
LightBulb Model.png
General
Category
Item
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Provide light
Crafting
Technical
Item ID

A light bulb is an electrical item used in crafting.

Usage

Light bulbs are primarily used as a source of light, either in a lamp, wall mounted light or vehicle headlights and taillights. If a light bulb is missing from any of these objects, no light will be displayed.

To add a light bulb to a vehicle, the player must have a screwdriver in their main inventory.

Crafting

Obtaining

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Receiver.png
Receiver
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)
Remote.png
TV Remote
(consumed)
Scrap Electronics
Scrap Electronics
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)

(consumed)
Scrap Electronics
Scrap Electronics
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)

(consumed)
Scrap Electronics
Scrap Electronics
0.5 Electrical none Screwdriver.png
Screwdriver
(keep)

(consumed)

What it can craft

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4 Ingredient 5 Ingredient 6 Ingredient 7 Ingredient 8 Ingredient 9
Makeshift Radio
Makeshift Radio
0 XP none Guerilla Radio Vol.1 Screwdriver.png
Screwdriver
(keep)
ElectronicsScrap.png
Scrap Electronics x2
(consumed)
Amplifier.png
Amplifier
(consumed)
LightBulb.png
Light Bulb
(consumed)
RadioReceiver.png
Radio Receiver
(consumed)
ElectricWire.png
Electric Wire
(consumed)
Aluminum.png
Aluminum x2
(consumed)


Makeshift Walkie Talkie
Makeshift Walkie Talkie
0 XP none Guerilla Radio Vol.2 Screwdriver.png
Screwdriver
(keep)
ElectronicsScrap.png
Scrap Electronics x3
(consumed)
Amplifier.png
Amplifier
(consumed)
LightBulb.png
Light Bulb
(consumed)
Green Light Bulb
Green Light Bulb
(consumed)
RadioReceiver.png
Radio Receiver
(consumed)
RadioTransmitter.png
Radio Transmitter
(consumed)
ElectricWire.png
Electric Wire x2
(consumed)
Aluminum.png
Aluminum x3
(consumed)
Ham Radio
Makeshift Ham Radio
0 XP none Guerilla Radio Vol.3 Screwdriver.png
Screwdriver
(keep)
ElectronicsScrap.png
Scrap Electronics x4
(consumed)
Amplifier.png
Amplifier
(consumed)
LightBulb.png
Light Bulb
(consumed)
Green Light Bulb
Green Light Bulb
(consumed)
RadioReceiver.png
Radio Receiver
(consumed)
RadioTransmitter.png
Radio Transmitter
(consumed)
ElectricWire.png
Electric Wire x3
(consumed)
Aluminum.png
Aluminum x4
(consumed)

Distribution

Light bulbs can be found in sheds, garages, houseware stores, kitchen counters and vehicle glove boxes.

A light bulb can be removed from any light or vehicle, requiring a screwdriver only when removed from a vehicle.

Item IDs

The light bulb can come in 10 different colors.

Variant Class name
Normal Base.LightBulb
Red Base.LightBulbRed
Green Base.LightBulbGreen
Blue Base.LightBulbBlue
Yellow Base.LightBulbYellow
Cyan Base.LightBulbCyan
Magenta Base.LightBulbMagenta
Orange Base.LightBulbOrange
Purple Base.LightBulbPurple
Pink Base.LightBulbPink

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

LightBulb.png Base.LightBulb
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulb
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Light Bulb,
        Icon	=	LightBulb,
        ConditionMax = 100,
        WorldStaticModel = LightBulb,
    }

LightBulbRed.png Base.LightBulbRed
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbRed
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Red Light Bulb,
        Icon	=	LightBulb,
        ColorRed = 255,
        ColorGreen = 0,
        ColorBlue = 0,
        WorldStaticModel = LightBulbRed,
    }

LightBulbGreen.png Base.LightBulbGreen
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbGreen
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Green Light Bulb,
        Icon	=	LightBulb,
        ColorRed = 0,
        ColorGreen = 255,
        ColorBlue = 0,
        WorldStaticModel = LightBulbGreen,
    }

LightBulbBlue.png Base.LightBulbBlue
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbBlue
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Blue Light Bulb,
        Icon	= LightBulb,
        ColorRed = 0,
        ColorGreen = 0,
        ColorBlue = 255,
        WorldStaticModel = LightBulbBlue,
    }

LightBulbYellow.png Base.LightBulbYellow
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbYellow
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Yellow Light Bulb,
        Icon	= LightBulb,
        ColorRed = 255,
        ColorGreen = 255,
        ColorBlue = 0,
        WorldStaticModel = LightBulbYellow,
    }

LightBulbCyan.png Base.LightBulbCyan
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbCyan
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Cyan Light Bulb,
        Icon	= LightBulb,
        ColorRed = 0,
        ColorGreen = 255,
        ColorBlue = 255,
        WorldStaticModel = LightBulbCyan,
    }

LightBulbMagenta.png Base.LightBulbMagenta
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbMagenta
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Magenta Light Bulb,
        Icon	= LightBulb,
        ColorRed = 255,
        ColorGreen = 0,
        ColorBlue = 255,
        WorldStaticModel = LightBulbMagenta,
    }

LightBulbOrange.png Base.LightBulbOrange
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbOrange
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Orange Light Bulb,
        Icon	= LightBulb,
        ColorRed = 255,
        ColorGreen = 128,
        ColorBlue = 0,
        WorldStaticModel = LightBulbOrange,
    }

LightBulbPurple.png Base.LightBulbPurple
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbPurple
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Purple Light Bulb,
        Icon	= LightBulb,
        ColorRed = 128,
        ColorGreen = 0,
        ColorBlue = 255,
        WorldStaticModel = LightBulbPurple,
    }

LightBulbPink.png Base.LightBulbPink
Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item LightBulbPink
    {
        DisplayCategory = Electronics,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	= Pink Light Bulb,
        Icon	= LightBulb,
        ColorRed = 255,
        ColorGreen = 20,
        ColorBlue = 147,
        WorldStaticModel = LightBulbPink,
    }

See also