Bunny Ears: Difference between revisions

From PZwiki
(Automated update of distribution section)
m (Automated infobox update)
Line 2: Line 2:
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Header|Project Zomboid|Items|Clothing|version=Version 41|incver=65}}
{{Reupload|Missing 3D model for the white variant}}
{{Reupload|Missing 3D model for the white variant}}
{{Infobox clothing
{{Infobox item
| display_name=Bunny Ears
| name=Bunny Ears
| name_colour=Clothing
| name_colour=Clothing
| name_text_colour=Clothing
| name_text_colour=Clothing
| image=RabbitearsBlack_Model.png
| model=RabbitearsBlack_Model.png
| alternate_image=RabbitearsBlack.png
| icon=RabbitearsBlack.png
| alternate_name=Bunny Ears (Black)
| icon_name=Bunny Ears (Black)
| alternate_image2=RabbitearsWhite.png
| icon2=RabbitearsWhite.png
| alternate_name2=Bunny Ears (White)
| icon_name2=Bunny Ears (White)
<!-- General -->
<!-- General -->
| category=Clothing
| category=Clothing
| weight=1.0
| weight=1.0
| body_location=Hat
| equipped=Hat
<!-- Speed -->
<!-- Protection -->
<!-- Insulation -->
<!-- Technical details -->
<!-- Technical details -->
| class_name=Base.Hat_BunnyEarsBlack<br>Base.Hat_BunnyEarsWhite
| item_id=Base.Hat_BunnyEarsBlack<br>Base.Hat_BunnyEarsWhite
}}
}}
'''Bunny ears''' are a cosmetic hat that provides no protection or insulation. The item has two variants: black and white.
'''Bunny ears''' are a cosmetic hat that provides no protection or insulation. The item has two variants: black and white.

Revision as of 12:14, 15 February 2024

Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D model for the white variant
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Bunny Ears
RabbitearsBlack Model.png
Bunny Ears (White)
General
Category
Clothing
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Equipped
Hat
Technical
Item ID
Base.Hat_BunnyEarsBlack
Base.Hat_BunnyEarsWhite

Bunny ears are a cosmetic hat that provides no protection or insulation. The item has two variants: black and white.

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
closet crate 4 2
lingeriestore counter 4 8
stripclub dresser 4 0.4

Bunny ears can be found in strip clubs and on stripper zombies.

Body location

Protection Hat.png
  • Head

Code

Bunny Ears (Black) Bunny Ears (Black)

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\clothing\clothing_hats.txt

Retrieved: Build 41.65
item Hat_BunnyEarsBlack
{
  Type                 = Clothing,
  DisplayName          = Bunny Ears,
  ClothingItem         = Hat_BunnyEarsBlack,
  BodyLocation         = Hat,
  Icon                 = RabbitearsBlack,
  CanHaveHoles         = false,
  BloodLocation        = Head,
  ChanceToFall         = 10,
  WorldStaticModel     = BunnyEarsBlack_Ground,
}

Bunny Ears (White) Bunny Ears (White)

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\clothing\clothing_hats.txt

Retrieved: Build 41.65
item Hat_BunnyEarsWhite
{
  Type                 = Clothing,
  DisplayName          = Bunny Ears,
  ClothingItem         = Hat_BunnyEarsWhite,
  BodyLocation         = Hat,
  Icon                 = RabbitearsWhite,
  CanHaveHoles         = false,
  BloodLocation        = Head,
  ChanceToFall         = 10,
  WorldStaticModel     = BunnyEarsWhite_Ground,
}