Maggots: Difference between revisions

From PZwiki
m (Minor)
m (Worms and Pillbugs can't be cooked too, minor fixes)
Line 12: Line 12:
|category=Food
|category=Food
|weight=0.01
|weight=0.01
|function=• Bait in [[Fishing]]
|function=• Bait in [[fishing]]
<!--NUTRITION-->
<!--NUTRITION-->
|hunger_change=-1
|hunger_change=-1
Line 24: Line 24:
|class_name=Base.Maggots Base.Maggots2
|class_name=Base.Maggots Base.Maggots2
}}
}}
'''Maggots''' spawn on killed [[zombie]]s. Killed zombies can cause sickness if you stick around them for too long, but maggots found there can be used as bait for [[fishing]]. They are the only [[insects]] that can't be cooked.
'''Maggots''' spawn on killed [[zombie]]s. Killed zombies can cause sickness if you stick around them for too long, but maggots found there can be used as bait for [[fishing]]. Maggots, [[worm]]s and [[pillbug]]s are the only [[insects]] that can't be cooked.


==Usage==
==Usage==
===Fishing===
===Fishing===
{{Main|Fishing}}
{{Main|Fishing}}
Maggots can be used as bait for [[Fishing|fishing]] to catch [[bass]], [[catfish]], [[crappie]], [[perch]], [[sunfish]] and [[trout]].
Maggots can be used as bait for [[fishing]] to catch [[bass]], [[catfish]], [[crappie]], [[perch]], [[sunfish]], and [[trout]].


==Distribution==
==Distribution==

Revision as of 03:23, 19 November 2023

Maggots
[[File:|Maggots|200px|class=pixelart]]
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.01
Function
• Bait in fishing
Nutrition
HungerMoodle Icon Hungry.png
-1
CaloriesCalories
1.5
CarbohydratesCarbohydrates
0
ProteinsProteins
0.25
FatFat
0.05
Effect
UnhappinessMoodle Icon Unhappy.png
+20
Technical
Item ID
Base.Maggots Base.Maggots2

Maggots spawn on killed zombies. Killed zombies can cause sickness if you stick around them for too long, but maggots found there can be used as bait for fishing. Maggots, worms and pillbugs are the only insects that can't be cooked.

Usage

Fishing

Main article: Fishing

Maggots can be used as bait for fishing to catch bass, catfish, crappie, perch, sunfish, and trout.

Distribution

Maggots can be found on or around killed zombies (depending on the settings). They have a reduced chance to spawn during Spring and Fall, and will not spawn at all during Winter.

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

Retrieved: Build 41.78.16

	
	item Maggots
	{
		DisplayName = Maggots,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.01,
		Icon = Insect_Maggots,
		FishingLure = true,
		HungerChange = -1,
		UnhappyChange = 20,
		Calories = 1.5,
		Carbohydrates = 0,
		Lipids = 0.05,
		Proteins = 0.25,
		WorldStaticModel = Maggots_Ground,
	}

	item Maggots2
	{
		DisplayName = Maggots,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.01,
		Icon = Insect_Maggots,
		FishingLure = true,
		HungerChange = -1,
		UnhappyChange = 20,
		Calories = 1.5,
		Carbohydrates = 0,
		Lipids = 0.05,
		Proteins = 0.25,
		WorldStaticModel = Maggots_Ground,
		/*PoisonDetectionLevel = 1,*/
		PoisonPower = 3,
		/*Tags = NoDetect,*/
		OBSOLETE = true,
	}

     

See also