Digital Watch

From PZwiki
Project ZomboidItemsElectronicsDigital Watch
Spiffo controlyourself.png
This page was last updated for an older version (41.73).
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.
Digital Watch
DigitalWatch Black Model.png
DigitalWatch Model.png
DigitalWatch Gold Model.png
General
Category
Accessory
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Equipped
RightWrist
LeftWrist
Function
Display time
Dismantle for scrap electronics
Properties
Material
Electronics
Technical
Item ID

A digital watch is an electrical clothing item.

Usage

Clock and alarm

Having a digital watch in the player's main inventory, or wearing one, enables the in-game clock being displayed on the HUD.

Digital watches have an alarm that can be set to go off at a specific time each day. When the alarm goes off, the player will wake up from sleep, preventing them from sleeping past a certain time of day. The chime from a digital watch's alarm can attract zombies. Some digital watches will be found with an alarm already set, and may go off without notice unless the alarm is turned off.

Unlike with classic watches, digital watches display the date and weather on the HUD. This also means that, in the info tab, the player can see how long their character has been alive for. The temperature reading will change dependent on the environment. This can allow the player to assess the indoor temperature when entering a building.

Clothing

A digital watch can be worn on both wrists.

Crafting

Dismantling

A digital watch can be dismantled if the player has a screwdriver, which will result in one scrap electronics.

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

(consumed)

Distribution

The digital watch can be found on zombies and corpses.

Item IDs

Icon Name Item ID
DigitalWatch Black.png Black Digital Watch Base.WristWatch_Right_DigitalBlack
Base.WristWatch_Left_DigitalBlack
DigitalWatch Red.png Red Digital Watch Base.WristWatch_Right_DigitalRed
Base.WristWatch_Left_DigitalRed
DigitalWatch Fancy.png Metallic Dress Style Digital Watch Base.WristWatch_Right_DigitalDress
Base.WristWatch_Left_DigitalDress

Trivia

  • Digital watches in the mid-1990s were incredibly popular, with cutting-edge technology and functions, such as an LED display, calculator, data bank, games and more.

Code

Black Digital Watch

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

Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.73
item WristWatch_Right_DigitalBlack
{
  DisplayCategory     = Accessory,
  Type                = AlarmClockClothing,
  DisplayName         = Black Digital Watch,
  ClothingItem        = WristWatch_Right_DigitalBlack,
  BodyLocation        = RightWrist,
  Icon                = DigitalWatch_Black,
  Weight              = 0.1,
  ClothingItemExtra   = WristWatch_Left_DigitalBlack,
  ClothingItemExtraOption = LeftWrist,
  clothingExtraSubmenu = RightWrist,
  Cosmetic            = TRUE,
  AlarmSound          = WatchAlarmLoop,
  SoundRadius         = 7,
  MetalValue          = 3,
  Tags                = Digital,
  WorldStaticModel    = DigitalWatchBlack,
}

Red Digital Watch

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

Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.73
item WristWatch_Right_DigitalRed
{
  DisplayCategory     = Accessory,
  Type                = AlarmClockClothing,
  DisplayName         = Red Digital Watch,
  ClothingItem        = WristWatch_Right_DigitalRed,
  BodyLocation        = RightWrist,
  Icon                = DigitalWatch_Red,
  Weight              = 0.1,
  ClothingItemExtra   = WristWatch_Left_DigitalRed,
  ClothingItemExtraOption = LeftWrist,
  clothingExtraSubmenu = RightWrist,
  Cosmetic            = TRUE,
  AlarmSound          = WatchAlarmLoop,
  SoundRadius         = 7,
  MetalValue          = 3,
  Tags                = Digital,
  WorldStaticModel    = DigitalWatchRed,
}

Metallic Dress Style Digital Watch

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

Source: ProjectZomboid\media\scripts\clothing\clothing_jewellery.txt

Retrieved: Build 41.73
item WristWatch_Right_DigitalDress
	{
	    DisplayCategory = Accessory,
		Type = AlarmClockClothing,
		DisplayName = Metallic Dress Style Digital Watch,
		ClothingItem = WristWatch_Right_DigitalDress,
		BodyLocation = RightWrist,
		Icon = DigitalWatch_Fancy,
		Weight = 0.1,
        ClothingItemExtra = WristWatch_Left_DigitalDress,
        ClothingItemExtraOption = LeftWrist,
        clothingExtraSubmenu = RightWrist,
		Cosmetic = TRUE,
		AlarmSound = WatchAlarmLoop,
		SoundRadius = 7,
		MetalValue = 3,
		Tags = Digital,
		WorldStaticModel = DigitalWatchGold,
	}

See also