Dead Mouse: Difference between revisions

From PZwiki
(changes to nutrition, weight and added unhappy_change (41.65))
(Updated to 41.66 + added item model)
Line 1: Line 1:
{{languages|Dead Mouse}}
{{languages}}
{{header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 40|incver=43}}{{Infobox food
{{header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=66}}{{Infobox food
|display_name=Dead Mouse
|display_name=Dead Mouse
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=MouseDead_120px.png
|image=DeadMouse_Model.png
|alternate_image=Mouse.png
|image_width=300px
|alternate_name=Mouse
|alternate_image=MouseDead.png
|alternate_name=Dead Mouse
|alternate_link=
|alternate_link=
|alternate_image2=Smallanimalmeat.png
|alternate_image2=Mouse.png
|alternate_name2=Small Animal Meat
|alternate_name2=Mouse
|alternate_link2=Small Animal Meat
|alternate_link2=
|alternate_image3=Smallanimalmeat.png
|alternate_name3=Small Animal Meat
|alternate_link3=Small Animal Meat
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 84: Line 88:
== Code ==
== Code ==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=66}}
<pre> item DeadMouse
<pre>   item DeadMouse
HungerChange = -10,
    {
Weight = 0.2,
        DisplayCategory = Food,
Type = Food,
        HungerChange = -10,
UnhappyChange = 30,
        Weight = 0.05,
DisplayName = Dead Mouse,
        Type = Food,
Icon = MouseDead,
        UnhappyChange = 30,
IsCookable = TRUE,
        DisplayName = Dead Mouse,
DangerousUncooked = TRUE,
        Icon = MouseDead,
DaysTotallyRotten = 10,
        IsCookable = TRUE,
MinutesToBurn = 50,
        DangerousUncooked = TRUE,
MinutesToCook = 15,
        DaysTotallyRotten = 10,
DaysFresh = 6,
        MinutesToBurn = 50,
Carbohydrates = 0,
        MinutesToCook = 15,
Proteins = 7,
        DaysFresh = 6,
Lipids = 0,
        Carbohydrates = 0.7,
Calories = 30,
        Proteins = 9.5,
BadInMicrowave = true,</pre>
        Lipids = 3.15,
        Calories = 220,
        BadInMicrowave = true,
        StaticModel = DeadMouse,
        WorldStaticModel = DeadMouseWorld,
        CustomEatSound = EatingDeadAnimal,
    }</pre>


==See also==
==See also==
Line 108: Line 118:
*[[Animals]]
*[[Animals]]


{{Navbox/Consumables}}
{{Navbox_food}}

Revision as of 04:00, 12 March 2022

Dead Mouse
Dead Mouse
Dead Mouse Mouse Small Animal Meat
General
Category Food
Encumbrance
Heavy Load
0.05
Days until stale 6 days
Days until rotten 10 days
Nutrition
Hunger
Hunger
-10
Calories
Calories
220
Carbohydrates
Carbohydrates
0.7
Proteins
Proteins
9.5
Fat
Fat
3.15
Effect
Unhappiness
Unhappiness
30
Cooking
Time until cooked 15 minutes
Time until burned 50 minutes
Dangerous uncooked True
Bad microwaved True
Technical details
Item ID Base.DeadMouse

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

Usage

Consumable properties

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

Crafting

Dead mouse can be used in various cooking recipes.

Cooking

Main article: Cooking

Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

Distribution

Dead mice can be found in kitchen counters and ovens.

Trapping

Main article: Trapping

Mice can usually be caught around farms, trailer parks and urban settings and rarely in forests. They are active all day.

They can only be caught using a mouse trap, and using cheese, processed cheese, peanut butter, chocolate, bacon bits, an apple, orange or tomato as bait.

Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.66

    item DeadMouse
    {
        DisplayCategory 	= Food,
        HungerChange		= -10,
        Weight			= 0.05,
        Type			= Food,
        UnhappyChange		= 30,
        DisplayName		= Dead Mouse,
        Icon			=  MouseDead,
        IsCookable		= TRUE,
        DangerousUncooked	= TRUE,
        DaysTotallyRotten	= 10,
        MinutesToBurn		= 50,
        MinutesToCook		= 15,
        DaysFresh		= 6,
        Carbohydrates 		= 0.7,
        Proteins 		= 9.5,
        Lipids 			= 3.15,
        Calories 		= 220,
        BadInMicrowave 		= true,
        StaticModel 		= DeadMouse,
        WorldStaticModel 	= DeadMouseWorld,
        CustomEatSound 		= EatingDeadAnimal,
    }

See also