Lipstick: Difference between revisions

From PZwiki
(Undo revision 316463 by Angostura (talk))
Tag: Undo
(32 intermediate revisions by 10 users not shown)
Line 1: Line 1:
{{languages|Lipstick}}
{{Header|Project Zomboid|Items|Miscellaneous items|Appearance}}
{{header|The Game World|Items|version=Version 40|incver=43}}{{Infobox normal
{{Page version|41.66}}
| display_name = Lipstick
{{Infobox item
| name_colour =  
|name=Lipstick
| name_text_colour =  
|model=Lipstick_Model.png
| image = Lipstick.png
|icon=Lipstick.png
| image_width = 120px
|icon_name=Lipstick
| weight = 0.2
|model_width=128px
| function = ''None''
|category=Appearance
| class_name = Base.Lipstick}}'''Lipstick''' is currently a useless {{T|item}}, and often considered as ''junk''.
|weight=0.2
|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==
Lipstick has no use, being added purely for the purpose of clutter, creating more realism for the {{T|player}} when looting.
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.


With IWBUMS 41.39 it has an actual function. With the use of a mirror, 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.


==Distribution==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
Lipstick can be found in bathrooms, desks, [[purse]]s and [[vehicles]].
! 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> item Lipstick
  | lang = java
Weight = 0.2,
  | line = true
Type = Normal,
  | start = 1776
DisplayName = Lipstick,
  | source = newitems.txt
Icon = Lipstick,
  | retrieved = true
MetalValue = 1,
  | version = 41.78.16
</pre>
  | 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