Gummy Worms: Difference between revisions

From PZwiki
m (Updated distribution table)
(updated code section/article version)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Header|Project Zomboid|Items|Food|Sweets}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Gummy Worms
|name=Gummy Worms
Line 81: Line 81:
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item GummyWorms
item GummyWorms
{
{
  DisplayName         = Gummy Worms,
DisplayName = Gummy Worms,
  DisplayCategory     = Food,
DisplayCategory = Food,
  Type               = Food,
Type = Food,
  Weight             = 0.1,
Weight = 0.1,
  Icon               = GummyWorms,
Icon = GummyWorms,
  EvolvedRecipe       = Cake:5;ConeIcecream:5,
EvolvedRecipe = Cake:5;ConeIcecream:5,
  FoodType           = Candy,
FoodType = Candy,
  HungerChange       = -5,
HungerChange = -5,
  UnhappyChange       = -10,
UnhappyChange = -10,
  Calories           = 40,
Calories = 40,
  Carbohydrates       = 10,
Carbohydrates = 10,
  Lipids             = 0.5,
Lipids = 0.5,
  Proteins           = 0,
Proteins = 0,
  EvolvedRecipeName = Gummy Worm,
EvolvedRecipeName = Gummy Worm,
}
WorldStaticModel = GummyWorms_Ground,
}
   }}
   }}
}}
}}

Revision as of 21:10, 22 March 2024

Project ZomboidItemsFoodSweetsGummy Worms
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Gummy Worms
GummyWorms Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-5
CaloriesCalories
40
CarbohydratesCarbohydrates
10
ProteinsProteins
0
FatFat
0.5
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.GummyWorms

Gummy worms is a non-perishable food item.

Usage

Gummy worms can be eaten, providing the player with some positive effects.

Crafting

Main article: Cooking

Evolved recipes

Product Nutrition
Cake
Cake
5
Ice Cream Cone
Ice Cream Cone
5

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
artstore shelves 4 1
bandkitchen counter 4 1
candystorage metal_shelves 4 1
candystore counter 4 1
gasstorage crate 4 1
grocerystorage crate 4 1

Gummy worms can often be found in candy stores, and kitchen counters.

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 GummyWorms
	{
		DisplayName = Gummy Worms,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = GummyWorms,
		EvolvedRecipe = Cake:5;ConeIcecream:5,
		FoodType = Candy,
		HungerChange = -5,
		UnhappyChange = -10,
		Calories = 40,
		Carbohydrates = 10,
		Lipids = 0.5,
		Proteins = 0,
		EvolvedRecipeName = Gummy Worm,
		WorldStaticModel = GummyWorms_Ground,
	}