Bowl of Ramen Noodles: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: deploy ReLookup, eid: 2373f89053d5d435660aaf3e30e1a351))
(Cleanup)
Line 1: Line 1:
__NOTOC__
{{Languages}}{{Header|The Game World|Items|Obsolete Items|Removed Food|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete|link=Soup}}{{Infobox food
{{languages|Bowl of Ramen Noodles}}
|display_name=Boring Bowl of Soup
{{header|The Game World|Items|Obsolete Items|Removed Food|type=Notice|version=Version 39|incver=67.5}}{{Notice|Obsolete|link=Soup}}{{Consumables
|name_colour=Food
|image = Full_Soup_bowl.png
|name_text_colour=Food
|hunger = -22
|image=BowlFull.png
|boredom = -10
|image_width=120px
|unhappiness = -10
|alternate_image=Pot of Soup.png
|weight = 1.0
|alternate_name=Boring Soup
}}A '''Bowl of Ramen Noodles''' was a item originally in Project Zomboid. It was superceded by the entry of Soups being able to be divided by bowls in successive versions, rendering this item obsolete.
|alternate_link=Boring Soup
|weight=1
|category=Food
|hunger_change=-22
|thirst_change=
|calories=
|carbohydrates=
|proteins=
|lipids=
|unhappy_change=-10
|cook_minutes=
|burn_minutes=
|days_fresh=1
|days_rotten=3
|class_name=
}}A '''Bowl of Ramen Noodles''' was a item originally in Project Zomboid. It was superseded by the entry of Soups being able to be divided by bowls in successive versions, rendering this item obsolete.


To craft originally, you had to have an [[bowl]] in your inventory as well as a second container with [[water]] along with the [[Dry Ramen Noodles|dry ramen]].
To craft originally, you had to have an [[bowl]] in your inventory as well as a second container with [[water]] along with the [[Dry Ramen Noodles|dry ramen]].
Line 13: Line 28:
To make a "current" bowl of Ramen, you would use a full pot of water to make a soup, and add ramen as a ingredient. Soups now can have 6 ingredients, which lead to the Ramen Bowl removal.
To make a "current" bowl of Ramen, you would use a full pot of water to make a soup, and add ramen as a ingredient. Soups now can have 6 ingredients, which lead to the Ramen Bowl removal.


== Nutritional Information ==
==Nutritional information==
{{Consumables2
{{Consumables2
|image = Full_Soup_bowl.png
|image = Full_Soup_bowl.png
Line 41: Line 56:
}}
}}


== Crafting ==
==Crafting==
{{Crafting header|ing=3}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2020 -->
{{Crafting header|ing=3}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2020 -->
{{Crafting/core|ing=2
{{Crafting/core|ing=2
Line 63: Line 78:
|}
|}


==Code==


== Code ==
===Item===
<nowiki>item RamenBowl
<pre>
item RamenBowl
HungerChange = -15,
HungerChange = -15,
Type = Food,
Type = Food,
Line 79: Line 96:
DaysFresh = 1,
DaysFresh = 1,
BoredomChange = -10,
BoredomChange = -10,
</pre>


===Recipe===
<pre>
recipe Make Ramen
recipe Make Ramen
  destroy Bowl/WaterBowl,
  destroy Bowl/WaterBowl,
Line 87: Line 107:
  Result:RamenBowl,
  Result:RamenBowl,
  Time:80.0,
  Time:80.0,
</nowiki>
</pre>
 
{{Navbox/Consumables}}


[[Category:Food]]
{{Navbox food}}

Revision as of 13:23, 8 April 2023

The Game WorldItemsObsolete ItemsRemoved FoodBowl of Ramen Noodles
BoxSmall.png
This feature has been removed from the game.
It has been replaced by something else.
Boring Bowl of Soup
Boring Bowl of Soup
Boring Soup
General
Category Food
Encumbrance
Heavy Load
1
Days until stale 1 days
Days until rotten 3 days
Nutrition
Hunger
Hunger
-22
Effect
Unhappiness
Unhappiness
-10
Technical details
Item ID

A Bowl of Ramen Noodles was a item originally in Project Zomboid. It was superseded by the entry of Soups being able to be divided by bowls in successive versions, rendering this item obsolete.

To craft originally, you had to have an bowl in your inventory as well as a second container with water along with the dry ramen.

To make a "current" bowl of Ramen, you would use a full pot of water to make a soup, and add ramen as a ingredient. Soups now can have 6 ingredients, which lead to the Ramen Bowl removal.

Nutritional information

Template:Consumables2

Crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
Bowl of Water
Bowl x1
none Water
Water (2 units)
(consumed)
Bowl
Bowl x1
(consumed)
Bowl of Ramen Noodles
Bowl of Ramen Noodles x1
none Bowl of Water
Bowl x1
Dry Ramen Noodles
Dry Ramen Noodles x1
(consumed)
Heat Source
Heat source
(cooked:10min burned:20min)

Code

Item

item RamenBowl
		HungerChange		= -15,
		Type			= Food,
		DisplayName		= Bowl of Ramen Noodles,
		MinutesToCook		= 10,
		Weight			= 1,
		IsCookable		= TRUE,
		DaysTotallyRotten	= 3,
		UnhappyChange		= -20,
		MinutesToBurn		= 20,
		Icon			= BowlFull,
		ReplaceOnUse		= Bowl,
		DaysFresh		= 1,
		BoredomChange		= -10,

Recipe

recipe Make Ramen
	   destroy Bowl/WaterBowl,
	   Water,
	   Ramen,

	   Result:RamenBowl,
	   Time:80.0,