Simple Salad: Difference between revisions

From PZwiki
Simple Salad
(→‎top: New infobox upgrade - Food)
(infobox updates & added CodeBox)
Line 5: Line 5:
{{Infobox item
{{Infobox item
|name=Simple Salad
|name=Simple Salad
|model=TZ_CraftSalat.png
|icon=TZ_CraftSalat.png
|image_width=128px
|icon_name=Simple Salad
|icon=
|icon_name=
|weight=0.8
|weight=0.8
|category=Food
|category=Food
Line 18: Line 16:
|lipids=
|lipids=
|unhappy_change=-5
|unhappy_change=-5
|boredom_change=-15
|cook_minutes=
|cook_minutes=
|burn_minutes=
|burn_minutes=
|days_fresh=1
|days_fresh=2
|days_rotten=2
|days_rotten=3
|item_id=
|item_id=Base.SaladSimple
}}
}}
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 60: Line 59:


==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 72: Line 81:
DaysFresh     = 2,
DaysFresh     = 2,
DaysTotallyRotten  = 3
DaysTotallyRotten  = 3
</pre>
}
}}}}


{{Navbox food}}
{{Navbox food}}

Revision as of 12:37, 29 January 2024

Template:Header/sandbox2

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
	}