Wasabi: Difference between revisions

From PZwiki
m (Minor)
m (minor)
(19 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Spices}}
{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D model}}
{{Infobox item
{{Infobox food
|name=Wasabi
|display_name=Wasabi
<!--3D model does not exist yet-->
|name_colour=Food
|icon=Wasabi.png
|name_text_colour=Food
|icon_name=Wasabi
|image=Wasabi.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 18: Line 17:
|carbohydrates=0
|carbohydrates=0
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Wasabi
|item_id=Base.Wasabi
}}
}}
'''Wasabi''' is a [[Food#Non-perishable|non-perishable]] 'spice' food [[item]] used in [[cooking]].
 
'''Wasabi''' is a non-perishable 'spice' [[food]] [[Items|item]] used in [[cooking]].


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


==Crafting==
==Crafting==
Line 29: Line 29:


===Evolved recipes===
===Evolved recipes===
Wasabi is a spice when used in [[cooking]] [[Recipe Ingredients|recipes]], therefore will not be included in the maximum number of ingredients.
Wasabi is a spice when used in [[cooking]] [[Recipe ingredients|recipes]], therefore will not be included in the maximum number of ingredients.
{{EvolvedRecipesForItem|spice=true|Soup=1|Stew=1|Pie=1|StirFry=1|Burger=1|Salad=1|RoastedVegetables=1|Rice=1|Pasta=1|Sandwich=1}}
{{EvolvedRecipesForItem|spice=true|Soup=1|Stew=1|Pie=1|StirFry=1|Burger=1|Salad=1|RoastedVegetables=1|Rice=1|Pasta=1|Sandwich=1}}


==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="3"|sushikitchen
|[[counter]]
|4
|1
|-
|[[counter]]
|4
|1
|-
|[[fridge]]
|4
|8
|}
Wasabi is often found inside [[Containers#Displays|displays]] in restaurant.
Wasabi is often found inside [[Containers#Displays|displays]] in restaurant.
==Trivia==
*This item doesn't have a 3D model currently. When the item is dropped in game, it shows the 2D icon on the ground.


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
        item Wasabi
  | line = true
  | start = 7122
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Wasabi
{
{
DisplayName = Wasabi,
DisplayName = Wasabi,
Line 53: Line 85:
ThirstChange = 20,
ThirstChange = 20,
FoodType = NoExplicit,
FoodType = NoExplicit,
}
}  
</pre>
}}
}}


==See also==
==See also==
Line 61: Line 94:


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

Revision as of 09:51, 26 March 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Wasabi
Wasabi
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Nutrition
HungerMoodle Icon Hungry.png
-10
ThirstMoodle Icon Thirsty.png
+20
CaloriesCalories
0
CarbohydratesCarbohydrates
0
ProteinsProteins
0
FatFat
0
Technical
Item ID
Base.Wasabi

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

Usage

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

Crafting

Main article: Cooking

Evolved recipes

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

Product Nutrition
Soup
Soup
1
Stew
Stew
1
Salad
Salad
1
Stir Fry
Stir Fry
1
Roasted Vegetables
Roasted Vegetables
1
Sandwich
Sandwich
1
Burger
Burger
1
Pie (savory)
Pie (savory)
1
Rice Pot/Saucepan
Rice Pot/Saucepan
1
Pasta Pot/Saucepan
Pasta Pot/Saucepan
1

Distribution

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

Containers
Building/Room Container Rolls Chance
sushikitchen counter 4 1
counter 4 1
fridge 4 8

Wasabi is often found inside displays in restaurant.

Trivia

  • This item doesn't have a 3D model currently. When the item is dropped in game, it shows the 2D icon on the ground.

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 Wasabi
	{
		DisplayName = Wasabi,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Wasabi,
		DaysFresh = 4,
		DaysTotallyRotten = 8,
		EvolvedRecipe = Soup:1;Stew:1;Pie:1;Stir fry Griddle Pan:1;Stir fry:1;Burger:1;Salad:1;Roasted Vegetables:1;RicePot:1;RicePan:1;PastaPot:1;PastaPan:1;Sandwich:1;Sandwich Baguette:1,
		Spice = true,
		HungerChange = -10,
		ThirstChange = 20,
		FoodType = NoExplicit,
	}

See also