Marinara: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: CodeBox update)
Line 35: Line 35:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.73}}
| {{CodeSnip
<pre>
  | lang = java
    item Marinara
  | line = false
{
  | source = items_food.txt
DisplayName = Marinara,
  | retrieved = true
DisplayCategory = Food,
  | version = 41
Type = Food,
  | incver = 73
Weight = 0.2,
  | code =
Icon = Marinarai,
item Marinara
CantBeFrozen = TRUE,
{
EvolvedRecipe = Pizza:5;Sandwich:2;Sandwich Baguette:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
  DisplayName         = Marinara,
Packaged = TRUE,
  DisplayCategory     = Food,
Spice = true,
  Type               = Food,
HungerChange = -10,
  Weight             = 0.2,
Calories = 350,
  Icon               = Marinarai,
Carbohydrates = 55,
  CantBeFrozen       = TRUE,
Lipids = 7.5,
  EvolvedRecipe       = Pizza:5;Sandwich:2;Sandwich Baguette:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
Proteins = 10,
  Packaged           = TRUE,
WorldStaticModel = Marinara,
  Spice               = true,
FoodType = NoExplicit,
  HungerChange       = -10,
}
  Calories           = 350,
</pre>
  Carbohydrates       = 55,
  Lipids             = 7.5,
  Proteins           = 10,
  WorldStaticModel   = Marinara,
  FoodType           = NoExplicit,
}
  }}
}}


{{Navbox food}}
{{Navbox food}}
[[Category:Non-perishable food]]
[[Category:Non-perishable food]]

Revision as of 10:38, 31 January 2024

Template:Header/sandbox2

Spiffo controlyourself.png
This page was last updated for an older version (41.73).
The current stable version is 41.78.16, released 2022-12-12, so information on this page may be inaccurate. Help get this page updated by adding any missing content. [edit]
Please update the version after updating the page.
Marinara
Marinara Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
350
CarbohydratesCarbohydrates
55
ProteinsProteins
10
FatFat
7.5
Technical
Item ID
Base.Marinara

Marinara is a non-perishable 'spice' food item used in cooking.

Usage

Marinara can be eaten raw, providing the player with some positive and negative effects. Marinara is more effective when used as cooking ingredient, as all negative effects are removed.

Crafting

Main article: Cooking

Evolved recipes

Marinara is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.

Product Nutrition
Sandwich
Sandwich
2
Burger
Burger
2
Rice Pot/Saucepan
Rice Pot/Saucepan
2
Pasta Pot/Saucepan
Pasta Pot/Saucepan
2
Pizza
Pizza
5

Distribution

Marinara can be found in 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.73
item Marinara
{
  DisplayName         = Marinara,
  DisplayCategory     = Food,
  Type                = Food,
  Weight              = 0.2,
  Icon                = Marinarai,
  CantBeFrozen        = TRUE,
  EvolvedRecipe       = Pizza:5;Sandwich:2;Sandwich Baguette:2;Burger:2;RicePot:2;RicePan:2;PastaPot:2;PastaPan:2,
  Packaged            = TRUE,
  Spice               = true,
  HungerChange        = -10,
  Calories            = 350,
  Carbohydrates       = 55,
  Lipids              = 7.5,
  Proteins            = 10,
  WorldStaticModel    = Marinara,
  FoodType            = NoExplicit,
}