Bowl of Ramen Noodles: Difference between revisions

From PZwiki
m (Leave header)
(Add trivia, reupload)
Line 2: Line 2:
{{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}}
{{Reupload|Missing rotten 3D model}}
{{Infobox item
{{Infobox item
|name=Bowl of Ramen Noodles
|name=Bowl of Ramen Noodles
|model=BowlRamen_Model.png
|model=BowlRamen_Model.png
|icon=BowlFull.png
|icon=BowlFull.png
|icon_name=Bowl of Ramen Noodles (Uncooked), (Cooked), (Burnt)
|icon2=BowlFull.png
|icon_name2=Bowl of Ramen Noodles (Rotten)
|weight=1
|weight=1
|category=Food
|category=Food
Line 78: Line 82:
|}
|}


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.
To make a current equivalent of a 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.
 
==Trivia==
*The item shares icon for uncooked, cooked, rotten and burnt variants, and it has two models for uncooked/cooked/burnt and rotten variants.


==Code==
==Code==

Revision as of 10:37, 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.
Frame.png
This article contains outdated/low-quality images.
Reason: Missing rotten 3D model
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Bowl of Ramen Noodles
BowlRamen Model.png
Bowl of Ramen Noodles (Rotten)
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.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 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.

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