Simple Salad: Difference between revisions

From PZwiki
Simple Salad
m (→‎top: category updates)
m (Automated Formatting)
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Header|Project Zomboid|Items|Obsolete items|type=Notice|version=Version 39|incver=67.5}}
{{Page version|41.78.16}}
{{Obsolete|item=true|2=Recipe ingredients#Salad & Fruit Salad Ingredients}}
{{Obsolete|item=true|2=Recipe ingredients#Salad & Fruit Salad Ingredients}}
{{Infobox food
{{Infobox item
|display_name=Simple Salad
|name=Simple Salad
|name_colour=Food
|icon=TZ_CraftSalat.png
|name_text_colour=Food
|icon_name=Simple Salad
|image=TZ_CraftSalat.png
|image_width=128px
|alternate_image=
|alternate_name=
|alternate_link=
|weight=0.8
|weight=0.8
|category=Food
|category=Food
|hunger_change=-80
|hunger_change=-80
|thirst_change=
|calories=
|carbohydrates=
|proteins=
|lipids=
|unhappy_change=-5
|unhappy_change=-5
|cook_minutes=
|boredom_change=-15
|burn_minutes=
|days_fresh=2
|days_fresh=1
|days_rotten=3
|days_rotten=2
|item_id=Base.SaladSimple
|class_name=
}}
}}
The '''Simple Salad''' was originally a perishable food in Project Zomboid that was removed due to a introduction of a better crafting system.
A '''simple salad''' was originally a perishable food in Project Zomboid that was removed due to an introduction of a better crafting system.


==Former description==
==Former description==
Line 36: Line 25:
==Crafting==
==Crafting==
{{Crafting header|ing=4}}
{{Crafting header|ing=4}}
{{Crafting/core|ing=4
{{Crafting|ing=4
  | product_image = [[File:TZ_CraftSalat.png|link=Simple Salad]]
  | product_image = [[File:TZ_CraftSalat.png|link=Simple Salad]]
  | product_name = [[Simple Salad]]
  | product_name = [[Simple Salad]]
  | product_quantity =  
  | product_quantity =
  | rec =  
  | rec =
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | xp = <!-- Not present in the old template. Please fill in manually. -->
  | f1 = [[File:Bowl.png|link=Bowl]]
  | f1 = [[File:Bowl.png|link=Bowl]]
  | i1 = [[Bowl]]
  | i1 = [[Bowl]]
  | q1 =  
  | q1 =
  | tag1 = (consumed)
  | tag1 = (consumed)
  | f2 = [[File:Knife_Chopping.png|link=Kitchen Knife]]
  | f2 = [[File:Knife_Chopping.png|link=Kitchen Knife]]
  | i2 = [[Kitchen Knife]]
  | i2 = [[Kitchen Knife]]
  | q2 =  
  | q2 =
  | f3 = [[File:Cabbage.png|link=Cabbage]]
  | f3 = [[File:Cabbage.png|link=Cabbage]]
  | i3 = [[Cabbage]]
  | i3 = [[Cabbage]]
  | q3 =  
  | q3 =
  | tag3 = (consumed)
  | tag3 = (consumed)
  | f4 = [[File:Soup_Ingredients.png|link=Recipe ingredients#Salad & Fruit Salad Ingredients|Salad Ingredients]]
  | f4 = [[File:Soup_Ingredients.png|link=Recipe ingredients#Salad & Fruit Salad Ingredients|Salad Ingredients]]
Line 62: Line 51:


==Code==
==Code==
<pre>
{{CodeBox
item SaladSimple
| {{CodeSnip
  | lang = java
  | line = false
  | start =
  | source = items.txt
  | retrieved = true
  | version =
  | hidecat = true
  | code =
item SaladSimple
{
Type     = Food,
Type     = Food,
DisplayName     = Simple Salad,
DisplayName     = Simple Salad,
Line 74: Line 73:
DaysFresh     = 2,
DaysFresh     = 2,
DaysTotallyRotten  = 3
DaysTotallyRotten  = 3
</pre>
}
}}}}


{{Navbox food}}
==See also==
{{Navbox items|food}}

Revision as of 12:05, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
BoxSmall.png
This item has been removed from the game.
It has been replaced by Recipe ingredients.
Simple Salad
Simple Salad
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.8
Properties
Days fresh
2 days
Days until rotten
3 days
Nutrition
HungerMoodle Icon Hungry.png
-80
Effect
UnhappinessMoodle Icon Unhappy.png
-5
BoredomMoodle Icon Bored.png
-15
Technical
Item ID
Base.SaladSimple

A simple salad was originally a perishable food in Project Zomboid that was removed due to an introduction of a better crafting system.

Former description

The medium tier of Salads, it only takes one extra Salad Ingredient, and provides a decent jump in Hungry, Moodles, and Unhappiness effects. Like other Salads though, its Fresh life is very minimal, making it an ideal at home meal, but not something you'd want to keep in a cupboard or take on a multi-day trip.

Effects

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3 Ingredient 4
TZ CraftSalat.png
Simple Salad
none Bowl.png
Bowl
(consumed)
Knife Chopping.png
Kitchen Knife
Cabbage.png
Cabbage
(consumed)
Salad Ingredients
Recipe ingredients x2
(consumed)

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Unknown version
item SaladSimple
	{
		Type 		    = Food,
		DisplayName 	    = Simple Salad,
		Icon 		    = TZ_CraftSalat,
		Weight 		    = 0.8,
		HungerChange 	    = -80,
		BoredomChange 	    = -15,
		UnhappyChange	    = -5,
		ReplaceOnUse 	    = Bowl,
		DaysFresh 	    = 2,
		DaysTotallyRotten   = 3
	}

See also