Sunfish

From PZwiki
(Redirected from Sunfish)
Project ZomboidItemsFoodProteinFishSunfish
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Sunfish
SunFish Model.png
Fish Fillet Fish Fillet
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Properties
Days fresh
4 days
Days until rotten
8 days
Nutrition
HungerMoodle Icon Hungry.png
-15
CaloriesCalories
155
CarbohydratesCarbohydrates
1
ProteinsProteins
25
FatFat
2
Effect
UnhappinessMoodle Icon Unhappy.png
20
Cooking
Time until cooked
20 minutes
Time until burned
60 minutes
Dangerous uncooked
True
Bad microwaved
True
Good hot
True
Bad cold
True
Technical
Item ID
Base.Panfish

A sunfish is a perishable food item used in cooking.

Usage

Consumable properties

Sunfish must be cooked in order to be safe for consumption by the player. Sunfish can be cooked whole, or cut into fish fillets first before cooking.

Crafting

A sunfish can be used in various cooking recipes.

Cooking

Main article: Cooking
Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2
FishFillet.png
Fish Fillet x2
10 Cooking none
(keep)

(consumed)

Distribution

Fishing

Main article: Fishing

Sunfish can be caught using a fishing rod.

Vehicles

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

Gallery

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Item

FishPanfish.png Base.Panfish
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Panfish
	{
		DisplayName = Sunfish,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.4,
		Icon = FishPanfish,
		BadCold = true,
		BadInMicrowave = true,
		DangerousUncooked = TRUE,
		GoodHot = true,
		IsCookable = true,
		OnCreate = Fishing.OnCreateFish,
		RemoveUnhappinessWhenCooked = true,
		MinutesToCook = 20,
		MinutesToBurn = 60,
		DaysFresh = 4,
		DaysTotallyRotten = 8,
		HungerChange = -15,
		UnhappyChange = 20,
		Calories = 155,
		Carbohydrates = 1,
		Lipids = 2,
		Proteins = 25,
		WorldStaticModel = SunFish,
	}

See also