Dead Rabbit: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
m (Automated CodeBox update)
(13 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Protein|Game meat}}
{{header/sandbox2|Project Zomboid|Items|Food|Protein|Game meat}}
{{Page version|41.68}}
{{page version|41.68}}
{{Infobox item
{{Infobox item
|name=Dead Rabbit
|name=Dead Rabbit
|model=DeadRabbit_Model.png
|model=DeadRabbit_Model.png
|image_width=150px
|icon=RabbitDead.png
|icon=RabbitDead.png
|icon_name=Dead Rabbit
|icon_name=Dead Rabbit
Line 35: Line 33:
|item_id=Base.DeadRabbit
|item_id=Base.DeadRabbit
}}
}}
A '''dead rabbit''' is a [[Food#Perishable|perishable]] food [[item]] used in [[cooking]].  
 
A '''dead rabbit''' is a perishable [[food]] [[Items|item]] used in [[cooking]].


==Usage==
==Usage==
Line 89: Line 88:
==Gallery==
==Gallery==
<gallery>
<gallery>
Rabbit Model.png|Rabbit model teased for a future version.  
Rabbit Model.png|Rabbit model teased for a future version.
DeadRabbit Model.png|Dead Rabbit model when placed in the world.  
DeadRabbit Model.png|Dead Rabbit model when placed in the world.
</gallery>
</gallery>


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.68}}
| {{CodeSnip
<pre>
  | lang = java
    item DeadRabbit
  | line = true
    {
  | start = 1946
        DisplayCategory = Food,
  | source = items_food.txt
        HungerChange = -45,
  | retrieved = true
        Weight = 1.0,
  | version = 41.78.16
        Type = Food,
  | code =
        DisplayName = Dead Rabbit,
item DeadRabbit
        Icon = RabbitDead,
{
        IsCookable = TRUE,
DisplayName = Dead Rabbit,
        DangerousUncooked = TRUE,
DisplayCategory = Food,
        DaysTotallyRotten = 12,
Type = Food,
        MinutesToBurn = 60,
Weight = 1.0,
        MinutesToCook = 25,
Icon = RabbitDead,
        DaysFresh = 8,
BadCold = true,
        Carbohydrates = 0,
BadInMicrowave = true,
        Proteins = 330,
DangerousUncooked = TRUE,
        Lipids = 35,
GoodHot = true,
        Calories = 1730,
IsCookable = TRUE,
        BadInMicrowave = true,
RemoveUnhappinessWhenCooked = true,
        GoodHot = true,
MinutesToCook = 25,
        BadCold = true,
MinutesToBurn = 60,
        UnhappyChange = 20,
DaysFresh = 8,
        RemoveUnhappinessWhenCooked = true,
DaysTotallyRotten = 12,
        WorldStaticModel = DeadRabbit,
HungerChange = -45,
        CustomEatSound = EatingDeadAnimal,
UnhappyChange = 20,
    }
Calories = 1730,
</pre>
Carbohydrates = 0,
Lipids = 35,
Proteins = 330,
CustomEatSound = EatingDeadAnimal,
WorldStaticModel = DeadRabbit,
}
}}
}}


==See also==
==See also==
Line 130: Line 136:


{{Navbox food}}
{{Navbox food}}
[[Category:Perishable food]]
[[Category:Perishable food]]

Revision as of 01:11, 25 March 2024

Project ZomboidItemsFoodProteinGame meatDead Rabbit
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.
Dead Rabbit
DeadRabbit Model.png
Rabbit
Rabbit Meat Rabbit Meat
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
1.0
Properties
Days fresh
8 days
Days until rotten
12 days
Nutrition
HungerMoodle Icon Hungry.png
-45
CaloriesCalories
1730
CarbohydratesCarbohydrates
0
ProteinsProteins
330
FatFat
35
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.DeadRabbit

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

Usage

Consumable properties

A dead rabbit 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

RabbitDead.png
Hunger: -40

Unhappiness: +20
Dangerous uncooked, may cause sickness.

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

RabbitDead.png

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

Cooked

RabbitDead.png
Hunger: -52

RabbitDead.png
Hunger: -30
Boredom: +10
Unhappiness: +10

RabbitDead.png
Hunger: -18
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

Burned

RabbitDead.png
Hunger: -13
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

Crafting

Dead rabbit can be used in various cooking recipes.

Cooking

Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
Rabbitmeat.png
Rabbit Meat
2.5 Cooking none
(keep)
RabbitDead.png
Dead Rabbit
(consumed)

Distribution

Trapping

Main article: Trapping

Rabbits 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 carrot, cabbage, potato, tomato, corn, bell pepper, lettuce, apple, banana, or peach as bait.

Gallery

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.78.16
item DeadRabbit
	{
		DisplayName = Dead Rabbit,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1.0,
		Icon = RabbitDead,
		BadCold = true,
		BadInMicrowave = true,
		DangerousUncooked = TRUE,
		GoodHot = true,
		IsCookable = TRUE,
		RemoveUnhappinessWhenCooked = true,
		MinutesToCook = 25,
		MinutesToBurn = 60,
		DaysFresh = 8,
		DaysTotallyRotten = 12,
		HungerChange = -45,
		UnhappyChange = 20,
		Calories = 1730,
		Carbohydrates = 0,
		Lipids = 35,
		Proteins = 330,
		CustomEatSound = EatingDeadAnimal,
		WorldStaticModel = DeadRabbit,
	}

See also