Maggots: Difference between revisions

From PZwiki
(Undo revision 215321 by Calvy (talk) Undo bad edit)
Tag: Undo
m (Automated capitalisation)
Line 1: Line 1:
{{Languages}}
{{Languages}}
{{header/sandbox2|Project Zomboid|Items|Food|Protein|Insects}}
{{Header/sandbox2|Project Zomboid|Items|Food|Protein|Insects}}
{{page version|41.78.16}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|display_name=Maggots
|display_name=Maggots

Revision as of 00:48, 25 February 2024

Template:Header/sandbox2

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.

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