Bowl of Ramen Noodles: Difference between revisions

From PZwiki
mNo edit summary
(PZ Updater automated execution(task: deploy ReLookup, eid: 2373f89053d5d435660aaf3e30e1a351))
Line 42: Line 42:


== Crafting ==
== Crafting ==
{| class="pztable sortable" style="text-align:center;"
{{Crafting header|ing=3}}<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2020 -->
|-
{{Crafting/core|ing=2
! Name
| product_image = [[File:BowlFull_Water.png|link=Bowl of Water|Bowl of Water]] | product_name = [[Bowl of Water]] | product_quantity = x1
! class="unsortable" | Recipe
| xp = <!-- Not present in the old template. Please fill in manually. -->
! class="unsortable" | Description
| sl = ''none''
{{RecipeLookup|2020}}
| req =
{{RecipeLookup|2002}}
| f1 = [[File:Water drop.png|link=Water|Water]] | i1 = [[Water]] | q1 = (2 units) | tag1 = (consumed)
| f2 = [[File:Bowl.png|link=Bowl|Bowl]] | i2 = [[Bowl]] | q2 = x1 | tag2 = (consumed)
}}
<!-- Automatically generated by ReLookup. Subject RecipeLookup: 2002 -->
{{Crafting/core|ing=3
| product_image = [[File:BowlFull.png|link=Bowl of Ramen Noodles|Bowl of Ramen Noodles]] | product_name = [[Bowl of Ramen Noodles]] | product_quantity = x1
| xp = <!-- Not present in the old template. Please fill in manually. -->
| sl = ''none''
| req =
| f1 = [[File:BowlFull_Water.png|link=Bowl of Water|Bowl of Water]] | i1 = [[Bowl of Water]] | q1 = x1
| f2 = [[File:Noodles.png|link=Dry Ramen Noodles|Dry Ramen Noodles]] | i2 = [[Dry Ramen Noodles]] | q2 = x1 | tag2 = (consumed)
| f3 = [[File:Heat_source.gif|link=Heat Source|Heat Source]] | i3 = [[Heat Source]] | q3 =  | tag3 = (cooked:10min burned:20min) |opt3=1
}}
|}
|}


== Code ==
== Code ==

Revision as of 04:05, 26 March 2022


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.

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.

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 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 Make Ramen
	   destroy Bowl/WaterBowl,
	   Water,
	   Ramen,

	   Result:RamenBowl,
	   Time:80.0,
	

Template:Navbox/Consumables