Lipstick: Difference between revisions

From PZwiki
m (Removed deletion notice. Item is not useful in game, however, useful information is needed on THIS wiki about it.)
(Undo revision 316463 by Angostura (talk))
Tag: Undo
(37 intermediate revisions by 12 users not shown)
Line 1: Line 1:
{{Items
{{Header|Project Zomboid|Items|Miscellaneous items|Appearance}}
|image = Lipstick.png  
{{Page version|41.66}}
|weight = 0.2
{{Infobox item
|name=Lipstick
|model=Lipstick_Model.png
|icon=Lipstick.png
|icon_name=Lipstick
|model_width=128px
|category=Appearance
|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.


A tube of red lipstick. Found in bathroom containers and on corpses.
==Usage==
<!--== Crafting ==
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.
ITEM NAME can be used in the following recipes:


{| class="wikitable" width="550" style="text-align:center;"
==Distribution==
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
|-
|-
! Ingredients || Other Items || Output || Description
|[[shelves]]
|4
|6
|-
|-
| Ingredient + [[Ingredient]] || None || [[What the recipe makes]] || Brief description of what it makes.
|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==
<nowiki>item Lipstick
{{CodeBox
{
| {{CodeSnip
Weight = Weight = 0.2,
  | 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,
Type = Normal,
DisplayName = Lipstick,
DisplayName = Lipstick,
Icon = Lipstick,
Icon = Lipstick,
}</nowiki>
MetalValue = 1,
MakeUpType = Lips,
WorldStaticModel = Lipstick,
}
}}
}}


[[Category:items]]
==See also==
*[[Eyes 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