Bowl of Ramen Noodles

From PZwiki
Revision as of 03:24, 3 March 2024 by CalvyBot (talk | contribs) (Automated {{Languages}} removal.)

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.
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 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

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)

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