Lipstick: Difference between revisions

From PZwiki
m (128px)
(Undo revision 316463 by Angostura (talk))
Tag: Undo
(27 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=66}}{{Infobox normal
{{Header|Project Zomboid|Items|Miscellaneous items|Appearance}}
| display_name = Lipstick
{{Page version|41.66}}
| name_colour =  
{{Infobox item
| name_text_colour =  
|name=Lipstick
| image = Lipstick.png
|model=Lipstick_Model.png
| image_width = 128px
|icon=Lipstick.png
| category = Appearance
|icon_name=Lipstick
| weight = 0.2
|model_width=128px
| function = ''None''
|category=Appearance
| class_name = Base.Lipstick
|weight=0.2
}}'''Lipstick''' currently applies a cosmetic change to the player.
|function=[[Appearance|Apply lips makeup]]
|item_id=Base.Lipstick
}}
'''Lipstick''', is an [[appearance]] item, used to modify character looks by applying lipstick to their in-game model.


==Usage==
==Usage==
With the use of a mirror, lipstick can be applied in different colors and can be seen on the player.
Lipstick and other makeup can be used by the [[player]] while in the vicinity of a [[Mirrors|mirror]] or when having a [[mirror]] in [[inventory]], lipstick can be applied in different colors and can be seen on the player.


==Distribution==
==Distribution==
Lipstick can be found in bathrooms, desks, [[purse]]s and [[vehicles]].  
The loot distributions can be found in the table(s) below.


== Code ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
! colspan="4" | Containers
{{Retrieved|version=40|incver=43}}
|-
<pre>
! Building/Room
item Lipstick
! Container
Weight = 0.2,
! style="width: 3.2em;" | Rolls
Type = Normal,
! style="width: 3.2em;" | Chance
DisplayName = Lipstick,
|-
Icon = Lipstick,
|rowspan="3"|bathroom
MetalValue = 1,
|[[counter]]
</pre>
|4
|6
|-
|[[medicine]]
|4
|6
|-
|[[shelves]]
|4
|6
|-
|rowspan="2"|bedroom
|[[desk]]
|4
|1
|-
|[[desk]]
|4
|1
|-
|office
|[[desk]]
|4
|1
|-
|rowspan="2"|pharmacy
|[[shelves]]
|4
|1
|-
|[[shelves]]
|4
|1
|-
|stripclub
|[[dresser]]
|4
|6
|}
 
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 1776
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Lipstick
{
    DisplayCategory = Appearance,
Weight = 0.2,
Type = Normal,
DisplayName = Lipstick,
Icon = Lipstick,
MetalValue = 1,
MakeUpType = Lips,
WorldStaticModel = Lipstick,
}
}}
}}


==See also==
==See also==
*[[Eyes Makeup]]
*[[Eyes Makeup]]
*[[Foundation Makeup]]
*[[Foundation Makeup]]
*[[Mirror]]
{{Navbox items|appearance}}

Revision as of 22:46, 18 April 2024

Spiffo controlyourself.png
This page was last updated for an older version (41.66).
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.
Lipstick
Lipstick Model.png
General
Category
Appearance
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Technical
Item ID
Base.Lipstick

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

Usage

Lipstick and other 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

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

Containers
Building/Room Container Rolls Chance
bathroom counter 4 6
medicine 4 6
shelves 4 6
bedroom desk 4 1
desk 4 1
office desk 4 1
pharmacy shelves 4 1
shelves 4 1
stripclub dresser 4 6

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 Lipstick
	{
	    DisplayCategory = Appearance,
		Weight	=	0.2,
		Type	=	Normal,
		DisplayName	=	Lipstick,
		Icon	=	Lipstick,
		MetalValue = 1,
		MakeUpType = Lips,
		WorldStaticModel = Lipstick,
	}

See also