Eyes Makeup: Difference between revisions

From PZwiki
m (128px, minor cleanup)
m (Automated Formatting)
(26 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|The Game World|Items|version=Version 41|incver=64}}{{Infobox normal
{{Header|Project Zomboid|Items|Miscellaneous items|Appearance}}
| display_name = Eyes Makeup
{{Page version|41.78.16}}
| name_colour =  
{{Infobox item
| name_text_colour =  
|name=Eyes Makeup
| image = MakeupEyeshadow.png
|model=MakeupEyeshadow_model.png
| image_width = 128px
|model_width=128px
| category = Appearance
|icon=MakeupEyeshadow.png
| weight = 0.1
|category=Appearance
| function = ''Character Customization''
|weight=0.1
| class_name = Base.MakeupEyeshadow}}'''Eyes Makeup''', or '''eyeshadow''', is an appearance item, used to modify your character by applying face paint or eyeshadow to their in-game model.
|function=''Character Customization''
|item_id=Base.MakeupEyeshadow
}}
'''Eyes makeup''', or '''eyeshadow''', is an [[appearance]] item, used to modify character looks by applying face paint or eyeshadow to their in-game model.


==Usage==
==Usage==
Eyes makeup can be used by the {{T|player}} while in the vicinity of a [[Mirror|mirror]], allowing the player to apply various styles of face paint to their character's model. There are also a number of different colours of eyeshadow available to the player, as well as the ability to remove any makeup previously applied.
Eyes makeup can be used by the [[player]] while in the vicinity of a [[Mirrors|mirror]] or when having a [[mirror]] in [[inventory]], allowing the player to apply various styles of face paint to their character's model. There are also a number of different colors of eyeshadow available to the player, as well as the ability to remove any makeup previously applied.


==Distribution==
==Distribution==
Eyes makeup can be found in bathrooms, desks, and [[purse]]s, as well as on the corpses of female zombies.
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
|-
|closet
|[[crate]]
|4
|6
|-
|office
|[[desk]]
|4
|1
|-
|pharmacy
|[[shelves]]
|4
|1
|-
|stripclub
|[[dresser]]
|4
|6
|}


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=64}}
| {{CodeSnip
<pre>
  | lang = java
item MakeupEyeshadow
  | line = true
  | start = 583
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item MakeupEyeshadow
     {
     {
         DisplayCategory = Appearance,
         DisplayCategory = Appearance,
Line 30: Line 90:
         WorldStaticModel = EyesMakeup,
         WorldStaticModel = EyesMakeup,
     }
     }
</pre>
}}
}}


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

Revision as of 08:22, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Eyes Makeup
MakeupEyeshadow model.png
General
Category
Appearance
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Function
Character Customization
Technical
Item ID
Base.MakeupEyeshadow

Eyes makeup, or eyeshadow, is an appearance item, used to modify character looks by applying face paint or eyeshadow 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, allowing the player to apply various styles of face paint to their character's model. There are also a number of different colors of eyeshadow available to the player, as well as the ability to remove any makeup previously applied.

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
closet crate 4 6
office desk 4 1
pharmacy 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 MakeupEyeshadow
    {
        DisplayCategory = Appearance,
        Weight	=	0.1,
        Type	=	Normal,
        DisplayName	=	Eyes Makeup,
        Icon	=	MakeupEyeshadow,
        MakeUpType = Eyes,
        WorldStaticModel = EyesMakeup,
    }

See also