Lipstick: Difference between revisions

From PZwiki
m (Remove reupload)
(→‎Code: Codebox Update)
Line 23: Line 23:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=40|incver=43}}
| {{CodeSnip
<pre>
  | lang = java
item Lipstick
  | line = true
Weight = 0.2,
  | start = 0
Type = Normal,
  | source = newitems.txt
DisplayName = Lipstick,
  | retrieved = true
Icon = Lipstick,
  | version = 40
MetalValue = 1,
  | incver = 43
</pre>
  | code =
item Lipstick
{
    Weight     = 0.2,
    Type       = Normal,
    DisplayName = Lipstick,
    Icon       = Lipstick,
    MetalValue = 1,
}
  }}
}}


==See also==
==See also==

Revision as of 05:34, 8 January 2024

Lipstick
Lipstick Model.png
General
Category
Appearance
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Function
None
Technical
Item ID
Base.Lipstick

Lipstick, is an appearance item, used to modify character looks by applying lipstick to their in-game model.

Usage

Eyes makeup can be used by the player while in the vicinity of a mirror or when having a mirror in inventory, lipstick can be applied in different colors and can be seen on the player.

Distribution

Lipstick can be found in bathrooms, desks, purses, and vehicles.

Code

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

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 40.43
item Lipstick
{
    Weight      = 0.2,
    Type        = Normal,
    DisplayName = Lipstick,
    Icon        = Lipstick,
    MetalValue  = 1,
}

See also