Trout: Difference between revisions

From PZwiki
(Created page)
 
(Updated to build 41.51 - still needs Template:Consumables2)
Line 1: Line 1:
{{languages|Trout}}
{{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=Trout
|display_name=Trout
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=FishTrout.png
|image=FishTrout.png
|alternate_image=FishTrout.png
|alternate_name=Trout
|alternate_link=
|alternate_image2=FishFillet.png
|alternate_name2=Fish Fillet
|alternate_link2=Fish Fillet
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 27: Line 33:


==Usage==
==Usage==
Trout can be eaten raw, which will provide the player with some positive effects, or improved by cooking, however these will become negative the longer it's left to perish.
===Consumable properties===
A trout 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.


==Distribution==
==Distribution==
Line 37: Line 44:


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{Retrieved|version=40|incver=43}}
{{Retrieved|version=41|incver=51}}
<pre> item Trout
<pre>   item Trout
Type = Food,
    {
DisplayName = Trout,
        Type = Food,
Icon = FishTrout,
        DisplayName =     Trout,
Weight = 0.4,
        Icon = FishTrout,
HungerChange = -15,
        Weight = 0.4,
DaysFresh = 4,
        HungerChange =     -15,
DaysTotallyRotten = 8,
        DaysFresh =     4,
IsCookable         = true,
        DaysTotallyRotten =     8,
MinutesToBurn     = 60,
        IsCookable         =         true,
MinutesToCook     = 20,
        MinutesToBurn     =         60,
Carbohydrates = 5,
        MinutesToCook     =         20,
Proteins = 32.56,
        Carbohydrates = 1,
Lipids = 5.5,
        Proteins = 36,
Calories = 219,
        Lipids = 10,
BadInMicrowave = true,
        Calories = 230,
GoodHot = true,
        BadInMicrowave = true,
BadCold = true,</pre>
        GoodHot = true,
        BadCold = true,
        UnhappyChange = 20,
        RemoveUnhappinessWhenCooked = true,
    }</pre>


==See also==
==See also==
*[[Fish Fillet]]
*[[Fish Fillet]]
*[[Fishing Tackle]]
*[[Fishing Tackle]]

Revision as of 02:46, 22 July 2021

Trout
Trout
Trout Fish Fillet
General
Category Food
Encumbrance
Heavy Load
0.4
Days until stale 4 days
Days until rotten 8 days
Nutrition
Hunger
Hunger
-15
Calories
Calories
219
Carbohydrates
Carbohydrates
5
Proteins
Proteins
32.56
Fat
Fat
5.5
Cooking
Time until cooked 20 minutes
Time until burned 80 minutes
Bad microwaved True
Good hot True
Bad cold True
Technical details
Item ID Base.Trout

A trout is a perishable food item used in cooking.

Usage

Consumable properties

A trout 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.

Distribution

Fishing

Main article: Fishing

Trout can be caught using a fishing rod.

Vehicles

Trout can be found in the bed of a fisherman's truck.

Code

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

    item Trout
    {
        Type				=			Food,
        DisplayName			=		    Trout,
        Icon				=			FishTrout,
        Weight				=			0.4,
        HungerChange 		=		    -15,
        DaysFresh 			=		    4,
        DaysTotallyRotten 	=	 	    8,
        IsCookable	        =	        true,
        MinutesToBurn	    =	        60,
        MinutesToCook	    =	        20,
        Carbohydrates = 1,
        Proteins = 36,
        Lipids = 10,
        Calories = 230,
        BadInMicrowave = true,
        GoodHot = true,
        BadCold = true,
        UnhappyChange	=	20,
        RemoveUnhappinessWhenCooked = true,
    }

See also