Dead Bird: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: fix infobox based on file(attempt partial repatch #1), eid: 0d7831af))
Tag: Manual revert
m (Minor fixes)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=68}}{{Infobox food
{{Languages}}
{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=68}}
{{Infobox food
|display_name=Dead Bird
|display_name=Dead Bird
|name_colour=Food
|name_colour=Food
Line 34: Line 36:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.DeadBird
|class_name=Base.DeadBird
}}A '''dead bird''' is a [[Food#Perishable|perishable]] food [[item]] used in [[cooking]].  
}
}A '''dead bird''' is a [[Food#Perishable|perishable]] food [[item]] used in [[cooking]].  


==Usage==
==Usage==
===Consumable properties===
===Consumable properties===
A dead bird can be eaten raw, which can make the [[player]] [[Moodles#Sick|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.
A dead bird can be eaten raw, which can make the [[player]] [[Moodles#Sick|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.
{{Consumables2
{{Consumables
|image = BirdDead.png
|image = BirdDead.png
|hunger = -20  
|hunger = -20  

Revision as of 22:42, 28 August 2023

{{Infobox food |display_name=Dead Bird |name_colour=Food |name_text_colour=Food |image=BirdDead Model.png |image_width=200px |alternate_image=BirdDead.png |alternate_name=Dead Bird |alternate_link= |alternate_image2=Bird.png |alternate_name2=Bird |alternate_link2= |alternate_image3=Smallbirdmeat.png |alternate_name3=Small Bird Meat |alternate_link3=Small Bird Meat |category=Food |weight=0.1 |days_fresh=8 |days_rotten=12 |hunger_change=-15 |calories=161 |lipids=2 |proteins=22 |carbohydrates=0.5 |unhappy_change=20 |cook_minutes=25 |burn_minutes=60 |dangerous_uncooked=True |bad_microwaved=True |class_name=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.

Fresh Stale Rotten
Uncooked

BirdDead.png
Hunger: -20

Unhappiness: +20
Dangerous uncooked, may cause sickness.

BirdDead.png
Hunger: -15
Boredom: +10
Unhappiness: +30
Dangerous uncooked, may cause sickness.

BirdDead.png

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

Cooked

BirdDead.png
Hunger: -26

BirdDead.png
Hunger: -15
Boredom: +10
Unhappiness: +30

BirdDead.png
Hunger: -9
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

Burned

BirdDead.png
Hunger: -7
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

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, grasshopper, cockroach, corn or cereal as bait.

Code

From items_food.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 41.68

    item DeadBird
    {
        DisplayCategory = Food,
        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,
        CustomEatSound = EatingDeadAnimal,
    }

See also