Wasabi: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
(→‎Code: Codebox Update)
Line 40: Line 40:


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41.73}}
| {{CodeSnip
<pre>
  | lang = java
        item Wasabi
  | line = true
{
  | start =
DisplayName = Wasabi,
  | source = items_food.txt
DisplayCategory = Food,
  | retrieved = true
Type = Food,
  | version = 41.73
Weight = 0.2,
  | code =
Icon = Wasabi,
item Wasabi
DaysFresh = 4,
{
DaysTotallyRotten = 8,
  DisplayName           = Wasabi,
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,
  DisplayCategory       = Food,
Spice = true,
  Type                   = Food,
HungerChange = -10,
  Weight                 = 0.2,
ThirstChange = 20,
  Icon                   = Wasabi,
FoodType = NoExplicit,
  DaysFresh             = 4,
}
  DaysTotallyRotten     = 8,
</pre>
  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==
==See also==

Revision as of 13:35, 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.
Wasabi
Wasabi.png
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 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

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.73
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