Bowl of Ramen Noodles: Difference between revisions

From PZwiki
m (Automated Formatting for Infobox and Section Headers)
m (Changes)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Obsolete items}}
{{Header|Project Zomboid|Items|Obsolete items}}
{{Page version|41.78.16}}
{{Page version|41.78.16}}
{{Obsolete|item=true|2=recipe ingredients#Soup & Stew Ingredients}}
{{Obsolete|item=true|2=recipe ingredients#Soup & stew ingredients}}
{{Infobox item
{{Infobox item
|name=Bowl of Ramen Noodles
|name=Bowl of Ramen Noodles
Line 24: Line 24:
}}
}}


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.
A '''bowl of ramen noodles''' was a [[food]] [[Items|item]] that was superseded by evolved recipes. It has its icon and model and can still be spawned in debug mode or by admin in [[multiplayer]], but can't be found naturally outside of mods.
 
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 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==
Line 90: Line 86:
  | q2 =
  | q2 =
  | tag2 = (consumed)
  | tag2 = (consumed)
  | f3 = [[File:Heat_source.gif|link=Heat Source]]
  | f3 = [[File:Heat_source.gif|link=Heat source]]
  | i3 = [[Heat Source]]
  | i3 = [[Heat source]]
  | q3 =
  | q3 =
  | tag3 = (cooked:10min burned:20min)
  | tag3 = (cooked:10min burned:20min)
Line 98: Line 94:
}}
}}
|}
|}
To make a current equivalent of bowl of ramen, a [[Pot|pot of water]] has to be used to make a soup, and add ramen as an ingredient. Soups now can have 6 ingredients, which lead to the bowl of ramen noodles removal.


==Code==
==Code==

Revision as of 09:55, 10 March 2024

Project ZomboidItemsObsolete itemsBowl of Ramen Noodles
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.
Bowl of Ramen Noodles
BowlRamen Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
1
Properties
Days fresh
1 days
Days until rotten
3 days
Nutrition
HungerMoodle Icon Hungry.png
-22
CaloriesCalories
52
CarbohydratesCarbohydrates
0
ProteinsProteins
10
FatFat
14
Effect
UnhappinessMoodle Icon Unhappy.png
-20
Cooking
Time until cooked
10 minutes
Time until burned
20 minutes
Good hot
True
Bad cold
True
Technical
Item ID
Base.RamenBowl

A bowl of ramen noodles was a food item that was superseded by evolved recipes. It has its icon and model and can still be spawned in debug mode or by admin in multiplayer, but can't be found naturally outside of mods.

Nutritional information

Fresh Stale Rotten
Uncooked

BowlFull.png
Hunger: -22
Boredom: -10
Unhappiness: -10

BowlFull.png



BowlFull.png




Dangerous, will cause sickness.

Cooked

BowlFull.png
Hunger: -28
Boredom: -30
Unhappiness: -40

BowlFull.png
Hunger: -10

Unhappiness: -10

BowlFull.png
Hunger: -9
Boredom: +10

Dangerous, will cause sickness.

Burned

BowlFull.png



Dangerous, will cause sickness.

Former crafting

Product XP gained Skill(s) Recipe Ingredient 1 Ingredient 2 Ingredient 3
BowlFull Water.png
Bowl
none Water drop.png
Water (2 units)
(consumed)
Bowl.png
Bowl
(consumed)

BowlFull.png
Bowl of Ramen Noodles
none BowlFull Water.png
Bowl
Noodles.png
Dry Ramen Noodles
(consumed)
Heat source.gif
Heat source
(cooked:10min burned:20min)

To make a current equivalent of bowl of ramen, a pot of water has to be used to make a soup, and add ramen as an ingredient. Soups now can have 6 ingredients, which lead to the bowl of ramen noodles removal.

Code

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

Item

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item RamenBowl
	{
		DisplayName = Bowl of Ramen Noodles,
		DisplayCategory = Food,
		Type = Food,
		Weight = 1,
		Icon = BowlFull,
		BadCold = true,
		EatType = 2hand,
		GoodHot = true,
		IsCookable = TRUE,
		ReplaceOnUse = Bowl,
		MinutesToCook = 10,
		MinutesToBurn = 20,
		DaysFresh = 1,
		DaysTotallyRotten = 3,
		HungerChange = -10,
		UnhappyChange = -20,
		Calories = 52,
		Carbohydrates = 0,
		Lipids = 14,
		Proteins = 10,
		StaticModel = Bowl,
		WorldStaticModel = BowlRamen_Ground,
	}

Recipe

Source: ProjectZomboid\media\scripts\items.txt

Retrieved: Unknown version
recipe Make Ramen
    {
        destroy Bowl/WaterBowl,
        Water,
        Ramen,

        Result:RamenBowl,
        Time:80.0,
    }