Eyes Makeup: Difference between revisions

From PZwiki
m (Automated CodeBox update)
m (Automated Formatting)
(16 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Miscellaneous items|Appearance}}
{{header/sandbox2|Project Zomboid|Items|Miscellaneous items|Appearance items}}
{{Page version|41.78.16}}
{{page version|41.64}}
{{Infobox item
{{Infobox item
| display_name = Eyes Makeup
|name=Eyes Makeup
| name_colour =
|model=MakeupEyeshadow_model.png
| name_text_colour =
|model_width=128px
| model = MakeupEyeshadow_model.png
|icon=MakeupEyeshadow.png
| model_width = 128px
|category=Appearance
| icon=MakeupEyeshadow.png
|weight=0.1
| category = Appearance
|function=''Character Customization''
| weight = 0.1
|item_id=Base.MakeupEyeshadow
| function = ''Character Customization''
| class_name = 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.
'''Eyes makeup''', or '''eyeshadow''', is an [[appearance]] item, used to modify character looks by applying face paint or eyeshadow to their in-game model.
Line 19: Line 16:
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.
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.


{{clear}}
==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
The loot distributions can be found in the table(s) below.
Line 26: Line 22:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| rowspan="2"|bathroom  
|rowspan="3"|bathroom
| [[medicine]]  
|[[counter]]
| 4  
|4
| 6
|6
|-
|[[medicine]]
|4
|6
|-
|-
|[[shelves]]
|[[shelves]]
Line 40: Line 40:
|6
|6
|-
|-
| rowspan="2"|bedroom  
|rowspan="2"|bedroom
| [[desk]]  
|[[desk]]
| 4  
|4
| 1
|1
|-
|-
|[[desk]]
|[[desk]]
Line 49: Line 49:
|1
|1
|-
|-
| rowspan="1"|closet  
|closet
| [[crate]]  
|[[crate]]
| 4  
|4
| 6
|6
|-
|-
| rowspan="1"|office  
|office
| [[desk]]  
|[[desk]]
| 4  
|4
| 1
|1
|-
|-
| rowspan="1"|pharmacy  
|pharmacy
| [[shelves]]  
|[[shelves]]
| 4  
|4
| 1
|1
|-
|-
| rowspan="1"|stripclub  
|stripclub
| [[dresser]]  
|[[dresser]]
| 4  
|4
| 6
|6
|}
|}


Line 74: Line 74:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 583
   | source = newitems.txt
   | source = newitems.txt
   | retrieved = true
   | retrieved = true
   | version = 41.64
   | version = 41.78.16
   | code =
   | code =
item MakeupEyeshadow
item MakeupEyeshadow
{
    {
  DisplayCategory     = Appearance,
        DisplayCategory = Appearance,
  Weight             = 0.1,
        Weight = 0.1,
  Type               = Normal,
        Type = Normal,
  DisplayName         = Eyes Makeup,
        DisplayName = Eyes Makeup,
  Icon               = MakeupEyeshadow,
        Icon = MakeupEyeshadow,
  MakeUpType         = Eyes,
        MakeUpType = Eyes,
  WorldStaticModel   = EyesMakeup,
        WorldStaticModel = EyesMakeup,
}
    }
  }}
}}
}}
}}


Line 96: Line 97:
*[[Lipstick]]
*[[Lipstick]]
*[[Mirror]]
*[[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