Dead Squirrel

From PZwiki
Project ZomboidItemsFoodProteinGame meatDead Squirrel
Spiffo controlyourself.png
This page was last updated for an older version (41.68).
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.
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D variants
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Dead Squirrel
DeadSquirrel Model.png
Squirrel
Rodent Meat Rodent Meat
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Properties
Days fresh
8 days
Days until rotten
12 days
Nutrition
HungerMoodle Icon Hungry.png
-32
CaloriesCalories
480
CarbohydratesCarbohydrates
0
ProteinsProteins
84.8
FatFat
15
Effect
UnhappinessMoodle Icon Unhappy.png
20
Cooking
Time until cooked
25 minutes
Time until burned
60 minutes
Dangerous uncooked
True
Bad microwaved
True
Technical
Item ID
Base.DeadSquirrel

A dead squirrel is a perishable food item used in cooking.

Usage

Consumable properties

A dead squirrel can be eaten raw, which can make the player sick. Consuming after being cooked will provide the player with some positive effects, however these will become negative the longer it's left to perish.

Fresh Stale Rotten
Uncooked
SquirrelDead.png
Hunger: -30
Unhappiness: +20
Dangerous uncooked, may cause sickness.
SquirrelDead.png
Hunger: -23
Boredom: +10
Unhappiness: +30
Dangerous uncooked, may cause sickness.
SquirrelDead.png
Hunger: -14
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.
Cooked
SquirrelDead.png
Hunger: -39
SquirrelDead.png
Hunger: -23
Boredom: +10
Unhappiness: +30
SquirrelDead.png
Hunger: -14
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.
Burned
SquirrelDead.png

Hunger: -10
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

Crafting

Dead squirrel can be used in various cooking recipes.

Cooking

Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Smallanimalmeat.png
Rodent Meat
2.5 Cooking none
(keep)

(consumed)

Distribution

Trapping

Main article: Trapping

Squirrels can usually be found in the forests and rarely in urban settings. They are a nocturnal creature that can often be caught between 19:00 and 5:00.

They can be caught in a trap box, trap crate, snare trap or cage trap, and using a cereal, peanuts, peanut butter, popcorn, peach, apple, orange, corn, bell pepper or lettuce as bait.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.68
item DeadSquirrel
{
    DisplayCategory            = Food,
    HungerChange              = -32,
    Weight                    = 0.4,
    Type                      = Food,
    DisplayName               = Dead Squirrel,
    Icon                      = SquirrelDead,
    IsCookable                = TRUE,
    DangerousUncooked         = TRUE,
    DaysTotallyRotten         = 12,
    MinutesToBurn             = 60,
    MinutesToCook             = 25,
    DaysFresh                 = 8,
    Carbohydrates             = 0,
    Proteins                  = 84.8,
    Lipids                    = 15,
    Calories                  = 480,
    BadInMicrowave            = true,
    GoodHot                   = true,
    BadCold                   = true,
    UnhappyChange             = 20,
    RemoveUnhappinessWhenCooked = true,
    WorldStaticModel          = DeadSquirrel,
    CustomEatSound            = EatingDeadAnimal,
}

See also