Dead Bird: Difference between revisions

From PZwiki
mNo edit summary
(Updated to build 41.51)
Line 1: Line 1:
{{languages|Dead Bird}}
{{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=51}}{{Infobox food
|display_name=Dead Bird
|display_name=Dead Bird
|name_colour=Food
|name_colour=Food
Line 22: Line 22:
|proteins=30
|proteins=30
|carbohydrates=0
|carbohydrates=0
<!--EFFECT-->
|unhappy_change=20
<!--COOKING-->
<!--COOKING-->
|cook_minutes=25
|cook_minutes=25
Line 40: Line 42:
|cookable = 1
|cookable = 1
|dangerous uncooked = 1
|dangerous uncooked = 1
|unhappiness = 0
|unhappiness = +20
|boredom = 0
|boredom = 0
|unrotten hunger = -15
|unrotten hunger = -15
|unrotten unhappiness = +10
|unrotten unhappiness = +30
|unrotten boredom = +10
|unrotten boredom = +10
|rotten hunger = -9
|rotten hunger = -9
|rotten unhappiness = +20
|rotten unhappiness = +40
|rotten boredom = +20
|rotten boredom = +20
|cooked hunger = -26
|cooked hunger = -26
Line 52: Line 54:
|cooked boredom = 0
|cooked boredom = 0
|unrottencooked hunger = -15
|unrottencooked hunger = -15
|unrottencooked unhappiness = +10
|unrottencooked unhappiness = +30
|unrottencooked boredom = +10
|unrottencooked boredom = +10
|rottencooked hunger = -9
|rottencooked hunger = -9
|rottencooked unhappiness = +20
|rottencooked unhappiness = +40
|rottencooked boredom = +20
|rottencooked boredom = +20
|burned hunger = -7
|burned hunger = -7
|burned boredom = +20
|burned boredom = +20
|burned unhappiness = +20
|burned unhappiness = +40
|burned image = BirdDead.png
|burned image = BirdDead.png
|rotten image = BirdDead.png
|rotten image = BirdDead.png
Line 69: Line 71:
===Cooking===
===Cooking===
{{Main|Cooking}}
{{Main|Cooking}}
{{Cooking table header}}
{{Crafting header|ing=2}}
{{RecipeLookup|2052}}
{{Crafting cooking|123|ing=2}}
{{Crafting table footer}}
|}


==Distribution==
==Distribution==
Line 82: Line 84:
== 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=51}}
<pre> item DeadBird
<pre>   item DeadBird
HungerChange = -20,
    {
Weight = 0.2,
        HungerChange = -15,
Type = Food,
        Weight = 0.1,
DisplayName = Dead Bird,
        Type = Food,
Icon = BirdDead,
        DisplayName = Dead Bird,
IsCookable = TRUE,
        Icon = BirdDead,
DangerousUncooked = TRUE,
        IsCookable = TRUE,
DaysTotallyRotten = 12,
        DangerousUncooked = TRUE,
MinutesToBurn = 60,
        DaysTotallyRotten = 12,
MinutesToCook = 25,
        MinutesToBurn = 60,
DaysFresh = 8,
        MinutesToCook = 25,
Carbohydrates = 0,
        DaysFresh = 8,
Proteins = 30,
        Carbohydrates = 0.5,
Lipids = 3.25,
        Proteins = 22,
Calories = 161,
        Lipids = 2,
BadInMicrowave = true,</pre>
        Calories = 161,
        BadInMicrowave = true,
        GoodHot = true,
        BadCold = true,
        UnhappyChange = 20,
        RemoveUnhappinessWhenCooked = true,
        WorldStaticModel = DeadBird,
    }</pre>


==See also==
==See also==

Revision as of 05:26, 22 July 2021

Dead Bird
Dead Bird
Bird Small Bird Meat
General
Category Food
Encumbrance
Heavy Load
0.2
Days until stale 6 days
Days until rotten 10 days
Nutrition
Hunger
Hunger
-20
Calories
Calories
161
Carbohydrates
Carbohydrates
0
Proteins
Proteins
30
Fat
Fat
3.25
Effect
Unhappiness
Unhappiness
20
Cooking
Time until cooked 25 minutes
Time until burned 60 minutes
Dangerous uncooked True
Bad microwaved True
Technical details
Item ID Base.DeadBird

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

Usage

Consumable properties

A dead bird 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. Template:Consumables2

Crafting

Dead bird can be used in various cooking recipes.

Cooking

Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Smallbirdmeat.png
Small Bird Meat
2.5 Cooking none
(keep)
BirdDead.png
Dead Bird
(consumed)

Distribution

Trapping

Main article: Trapping

Birds can be found anywhere in Knox Country and are active all day.

They can only be caught with a stick trap, and using bread, bread slice, worm, corn or cereal as bait.

Code

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

    item DeadBird
    {
        HungerChange	=	-15,
        Weight	=	0.1,
        Type	=	Food,
        DisplayName	=	Dead Bird,
        Icon	=	BirdDead,
        IsCookable	=	TRUE,
        DangerousUncooked	=	TRUE,
        DaysTotallyRotten	=	12,
        MinutesToBurn	=	60,
        MinutesToCook	=	25,
        DaysFresh	=	8,
        Carbohydrates = 0.5,
        Proteins = 22,
        Lipids = 2,
        Calories = 161,
        BadInMicrowave = true,
        GoodHot = true,
        BadCold = true,
        UnhappyChange	=	20,
        RemoveUnhappinessWhenCooked = true,
        WorldStaticModel = DeadBird,
    }

See also

Template:Navbox/Consumables