Marinara: Difference between revisions

From PZwiki
mNo edit summary
m (Version bump)
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{languages|Marinara}}
{{Header|Project Zomboid|Items|Food|Spices}}
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Page version|41.78.16}}
|display_name=Marinara
{{Infobox item
|name_colour=Food
|name=Marinara
|name_text_colour=Food
|model=Marinara_Model.png
|image=Marinarai_120px.png
|icon=Marinarai.png
|icon_name=Marinara
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
|weight=0.2
|weight=0.2
|max_units=10
|packaged=Yes
|packaged=Yes
<!--NUTRITION-->
<!--NUTRITION-->
Line 17: Line 17:
|carbohydrates=55
|carbohydrates=55
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Marinara
|item_id=Base.Marinara
}}'''Marinara''' is a [[Food#Non-Perishable|non-perishable]] 'spice' food [[item]] used in [[cooking]].  
}}
 
'''Marinara''' is a [[Food#Non-Perishable|non-perishable]] 'spice' food [[Items|item]] used in [[cooking]].


==Usage==
==Usage==
Marinara can be eaten raw, providing the player with some positive and negative effects. Marinara is more effective when used as [[cooking]] [[Recipe Ingredients|ingredient]], as all negative effects are removed.
Marinara can be eaten raw, providing the player with some positive and negative effects. Marinara is more effective when used as [[cooking]] [[Recipe ingredients|ingredient]], as all negative effects are removed.


== Crafting ==
==Crafting==
{{Main|Cooking}}
{{Main|Cooking}}
=== Evolved recipes ===
 
===Evolved recipes===
Marinara is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
Marinara is a spice when used in cooking recipes, therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|spice=true|Pizza=5|sandwich=2|burger=2|rice=2|pasta=2}}
{{EvolvedRecipesForItem|spice=true|Pizza=5|sandwich=2|burger=2|rice=2|pasta=2}}


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|rowspan="6"|cafeteriakitchen
|[[counter]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|2
|-
|[[crate]]
|4
|5
|-
|rowspan="2"|generalstore
|[[crate]]
|4
|1
|-
|[[crate]]
|4
|2
|-
|kitchen
|[[counter]]
|4
|1
|}
Marinara can be found in [[Containers#Kitchen_Counter|kitchen counters]].
Marinara can be found in [[Containers#Kitchen_Counter|kitchen counters]].


==Gallery==
==Code==
<gallery>
{{CodeBox
Marinara Model.png|Marinara model when placed in the world.
| {{CodeSnip
</gallery>
  | lang = java
 
  | line = true
== Code ==
  | start = 5323
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
  | source = items_food.txt
{{Retrieved|version=41|incver=73}}
  | retrieved = true
<pre>    item Marinara
  | version = 41.78.16
  | code =
item Marinara
{
{
DisplayName = Marinara,
DisplayName = Marinara,
Line 58: Line 112:
WorldStaticModel = Marinara,
WorldStaticModel = Marinara,
FoodType = NoExplicit,
FoodType = NoExplicit,
}</pre>
}  
}}
}}
 
{{Navbox food}}


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

Revision as of 02:43, 28 March 2024

Project ZomboidItemsFoodSpicesMarinara
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
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

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

Containers
Building/Room Container Rolls Chance
cafeteriakitchen counter 4 1
crate 4 1
crate 4 1
crate 4 2
crate 4 2
crate 4 5
generalstore crate 4 1
crate 4 2
kitchen counter 4 1

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