Maggots: Difference between revisions

From PZwiki
No edit summary
m (Remove lines))
 
(36 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Food|Protein|Insects}}
{{header|The Game World|Items|version=Version 40|incver=43}}{{Infobox normal
{{Page version|41.78.16}}
|display_name=Maggots
{{Infobox item
|name_colour=?
|name=Maggots
|name_text_colour=?
|model=Insect_Maggots_Model.png
|image =
|icon=Insect_Maggots.png
|alternate_image=
|icon_name=Maggots
|alternate_name=?
<!--GENERAL-->
|weight=?
|category=Food
|primary_use=[[fishing]]
|weight=0.01
|class_name=Base.Maggots
|function=&bull; Bait in [[fishing]]
}}'''WORK IN PROGRES!!'''
<!--NUTRITION-->
|hunger_change=-1
|calories=1.5
|lipids=0.05
|proteins=0.25
|carbohydrates=0
<!--EFFECT-->
|unhappy_change=+20
<!--TECHNICAL DETAILS-->
|item_id=Base.Maggots Base.Maggots2
}}
'''Maggots''' are an [[Insects|insect]], non-perishable [[food]] [[Items|item]], and [[fishing]] bait.


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


'''Maggots''' spawn on killed [[zombie]]s. They can cause sicknes if around them for too long, but also be used as bait when [[fishing]].
==Distribution==
Maggots can be found on or around killed [[zombie]]s (depending on the settings). They have a reduced chance to spawn during Spring and Fall, and will not spawn at all during Winter.


== Usage ==
==Trivia==
===Fishing===
*While the obsolete {{ID|Maggots2}} were poisonous, the regular maggots are not. The obsolete ones can no longer be obtained.
{{Main|Fishing}}
Maggots are used when fishing to catch fish.


==Code==
{{CodeBox|
{{CodeSnip
  | lang = java
  | line = true
  | start = 8847
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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,
}
}}
{{CodeSnip
  | lang = java
  | line = true
  | start = 8864
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
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,
}
}}
}}


== Distribution ==
==See also==
Maggots can be found on or around killed [[zombie]]s (depending the the settings).
*[[Fishing]]
*[[Zombie]]
*[[Worm]]


== Code ==
{{Navbox items|meat}}
'''''From ?.txt (Project Zomboid directory/media/scripts/)'''''


''Maggots'' [[File:?]]
{{Retrieved|version=40|incver=43}}
<pre>
Type = Normal,
DisplayName = Magoots,
Icon = ,
Weight = 0.000,</pre>     


== See also ==
[[Category:Non-perishable food]]
* [[Fishing]]
* [[Zombie]]

Latest revision as of 07:09, 15 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Maggots
Insect Maggots Model.png
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 are an insect, non-perishable food item, and fishing bait.

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.

Trivia

  • While the obsolete Maggots2 were poisonous, the regular maggots are not. The obsolete ones can no longer be obtained.

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 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,
	}

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
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