Lipstick: Difference between revisions

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


==Usage==
==Usage==
Eyes 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.
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.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="3"|bathroom
|[[counter]]
|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==
==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 = 1776
Type = Normal,
  | source = newitems.txt
DisplayName = Lipstick,
  | retrieved = true
Icon = Lipstick,
  | version = 41.78.16
MetalValue = 1,
  | code =
</pre>
item Lipstick
{
    DisplayCategory = Appearance,
Weight = 0.2,
Type = Normal,
DisplayName = Lipstick,
Icon = Lipstick,
MetalValue = 1,
MakeUpType = Lips,
WorldStaticModel = Lipstick,
}
}}
}}


==See also==
==See also==
Line 37: Line 98:
*[[Foundation Makeup]]
*[[Foundation Makeup]]
*[[Mirror]]
*[[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