Bowl of Ramen Noodles

From PZwiki
Revision as of 09:55, 10 March 2024 by Faalagorn (talk | contribs) (Changes)
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,
    }