Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Be crafty.png

Build 42 unstable is out now!

The wiki has already begun updating. Please be patient during the transition.
Help us by contributing to the build 42 update project.
The Project Zomboid Map Project will not be updated until at least January, in the meantime use B42 Map.

404SpiffoMascotMap.png

Bowl of Ramen Noodles

From PZwiki
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]
Parts of this page may have been automatically updated to the latest build (42.0.2).
For the build 41.78.16 article, please see the old revision.
Trashcontainers 01 24.png
This item has been removed from the game.
It has been replaced by Evolved recipes.
WhiskeyHalf.png
This article may be in need of improvement.
Fix crafting to new system
Editors are encouraged to add any missing information to the article, while verifying that the article's current content is correct.
Bowl of Ramen Noodles
BowlRamen Model.png
BowlRamen Rotten Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
1
Properties
Can boil water
True
Days fresh
1 days
Days until rotten
3 days
Nutrition
HungerUI Hunger.png
-10
CaloriesCalories
52
CarbohydratesCarbohydrates
0
ProteinsProteins
10
FatFat
14
Effect
UnhappinessUI 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.

Consumable properties

Bowl of ramen noodles can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.

State Icon Hunger Boredom Unhappiness Sickness chance
Fresh Uncooked Bowl of Ramen Noodles (Fresh Uncooked) -10 - -20 -
Fresh Cooked Bowl of Ramen Noodles (Fresh Cooked) -13 - -20 -
Stale Uncooked Bowl of Ramen Noodles (Stale Uncooked) -8 +10 -10 -
Stale Cooked Bowl of Ramen Noodles (Stale Cooked) -8 +10 -10 -
Rotten Bowl of Ramen Noodles (Rotten) -4 +20 - 100%
Burned Bowl of Ramen Noodles (Burned) -3 +20 - 100%

Former crafting

{{Crafting header|ing=3}} {{Crafting|ing=3 | product_image = [[File:BowlFull.png|link=Bowl of Ramen Noodles]] | product_name = [[Bowl of Ramen Noodles]] | product_quantity = | rec = | xp = <!-- Not present in the old template. Please fill in manually. --> | f1 = [[File:BowlFull_Water.png|link=Bowl of Water]] | i1 = [[Bowl of Water]] | q1 = | f2 = [[File:Noodles.png|link=Dry Ramen Noodles]] | i2 = [[Dry Ramen Noodles]] | q2 = | tag2 = (consumed) | f3 = [[File:Heat_source.gif|link=Heat source]] | i3 = [[Heat source]] | q3 = | tag3 = (cooked:10min burned:20min) | sl = ''none'' | req = }} |}

To make a current equivalent of a 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.

Trivia

  • The item shares icon for uncooked, cooked, rotten and burnt variants, and it has two models for uncooked/cooked/burnt and rotten variants.

History

Base.RamenBowl

Version Description
Build 41.65 DisplayCategory added with value Food.
WorldStaticModel changed from BowlGround to BowlRamen_Ground.
Build 41.54 WorldStaticModel added with value BowlGround.
Build 41.12 EatType added with value 2hand.
StaticModel added with value Bowl.
Build 40.16 BoredomChange removed.
Build 37.2 BadCold added with value true.
GoodHot added with value true.
Build 34.23 Calories added with value 52.
Nutrition added with value 0.
HungerChange changed from -15 to -10.
Nutrition added with value 14.
Proteins added with value 10.
Build 26 HungerChange changed from -20 to -15.
RC2.9 - Build 0007 IsCookable changed from true to TRUE.
Weight changed from 3 to 1.
0.2.0a Released on this version.

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,
    }

See also