Centipede

From PZwiki
Project ZomboidItemsFoodProteinInsectsCentipede
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Centipede
Insect Centipede Model.png
Insect Centipede2 Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
60
CarbohydratesCarbohydrates
3.5
ProteinsProteins
15.21
FatFat
5.6
Effect
UnhappinessMoodle Icon Unhappy.png
+20
Cooking
Time until cooked
5 minutes
Time until burned
20 minutes
Dangerous uncooked
True
Technical
Item ID
Base.Centipede1 Base.Centipede2

A Millipede is an insect and non-perishable food item.

Usage

Fishing

Main article: Fishing

Centipedes can technically be used as bait for fishing. However, current fish only respond to Little Bait Fish, Worm, Cricket, Grasshopper, Cockroach and Maggots as bait, so doing so is not advised.

Consumable properties

Centipedes can be consumed, reducing hunger at the cost of a lot of unhappiness, and with a chance of sickening the player when uncooked. They can be cooked to reduce more hunger and make safe for consumption, however the unhappiness effect will remain.

Uncooked Cooked Burned

Insect Centipede1.png
Hunger: -5

Unhappiness: +20
Dangerous uncooked, may cause sickness.

Insect Centipede1.png
Hunger: -7

Unhappiness: +20

Insect Centipede1.png
Hunger: -2
Boredom: +20
Unhappiness: +40
Dangerous, will cause sickness.

Foraging

Main article: Foraging

When foraging, millipedes can be found on natural_exterior tiles, such as grass, sand and gravel. They are equally common in all foraging areas, and can be found in all seasons but Winter, March through November. However, while forageable in Spring they are less likely to be found in March and April than other months.

Having the fisherman occupation or angler trait will increase the player's ability to find centipedes.

Centipedes are part of the "Animals" loot category.

Code

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

Base.Centipede
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Centipede
	{
		DisplayName = Centipede,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Insect_Centipede1,
		DangerousUncooked = TRUE,
		FishingLure = true,
		IsCookable = TRUE,
		MinutesToCook = 5,
		MinutesToBurn = 25,
		HungerChange = -5,
		UnhappyChange = 20,
		Calories = 60,
		Carbohydrates = 3.5,
		Lipids = 6.5,
		Proteins = 15.21,
		WorldStaticModel = Insect_Centipede_Ground,
	}

Base.Centipede2
Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Centipede2
	{
		DisplayName = Centipede,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Insect_Centipede2,
		DangerousUncooked = TRUE,
		FishingLure = true,
		IsCookable = TRUE,
		MinutesToCook = 5,
		MinutesToBurn = 25,
		HungerChange = -5,
		UnhappyChange = 20,
		Calories = 60,
		Carbohydrates = 3.5,
		Lipids = 6.5,
		Proteins = 15.21,
		WorldStaticModel = Insect_Centipede2_Ground,
	}

See also