Dry Ramen Noodles: Difference between revisions

From PZwiki
(Updated ramen noodle description, stats, added info as in newitems.txt, removed erroneous info due to out of date, left notice on ramen noodle bowl, added linkage, added version mention.)
m (Automated Formatting)
(39 intermediate revisions by 11 users not shown)
Line 1: Line 1:
__NOTOC__
{{Header|Project Zomboid|Items|Food|Grains}}
{{languages}}
{{Page version|41.78.16}}
{{Consumables
{{Infobox item
|image = Noodles.png
|name=Dry Ramen Noodles
|weight = 0.2
|model=DryRamenNoodles_Model.png
|hunger = -15
|icon=Ramen.png
|Thirst = +40
|icon_name=Dry Ramen Noodles
<!--GENERAL-->
|category=Food
|weight=0.2
|packaged=Yes
<!--NUTRITION-->
|hunger_change=-10
|thirst_change=+40
|calories=52
|lipids=14
|proteins=10
|carbohydrates=0
<!--EFFECT-->
|unhappy_change=+20
<!--TECHNICAL DETAILS-->
|item_id=Base.Ramen
}}
}}
'''Dry ramen noodles''' are a non-perishable [[food]] [[Items|item]].


A pack of Dry Ramen Noodles is a non-perishable food which does not rot over time. Dry Ramen Noodles are found usually inside house [[containers#Kitchen_cupboard|kitchen cupboards]]. Eating them before being put into a recipe will replenish -15 hunger but will add +40 thirst to your character.  
==Usage==
Dry ramen noodles can be eaten raw, increasing the player's thirst and unhappiness while reducing hunger. Dry ramen noodles are more effective when used as a [[cooking]] [[Recipe ingredients|ingredient]], which removes its negative effects.


It can be used as an ingredient in cooking soups and stir frys, and considering its non-perishable nature, is a useful stored item.
==Crafting==
{{Main|Cooking}}


'''''Note: In former versions, you could craft a [[Bowl of Ramen Noodles]] using water + bowl + ramen; this is no longer the case now that all soups can be divided by bowls, and ramen now is simply a ingredient.'''''
===Evolved recipes===
Dry ramen noodles are a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|soup=10|stirfry=10}}


== Evolved Recipes ==
==Distribution==
{{EvolvedRecipesForItem
The loot distributions can be found in the table(s) below.
|soup=15|stirfry=15|}}


== Code ==
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
<nowiki>item Ramen
! colspan="4" | Containers
|-
HungerChange = -15,
! Building/Room
Weight = 0.2,
! Container
Type = Food,
! style="width: 3.2em;" | Rolls
ThirstChange = 40,
! style="width: 3.2em;" | Chance
DisplayName = Dry Ramen Noodles,
|-
Icon = Ramen,
|generalstore
EvolvedRecipe  =      Soup:15;Stir fry:15,
|[[shelves]]
FoodType =      Pasta,
|4
|1
}</nowiki>
|-
|grocerystorage
|[[crate]]
|4
|1
|-
|kitchen
|[[counter]]
|4
|6
|-
|prisoncells
|[[wardrobe]]
|4
|1
|}
Dry ramen noodles can be found on [[Containers#Kitchen Counter|kitchen counters]].


{{Navbox/Consumables}}
==Code==
[[Category:Consumables]]
{{CodeBox
[[Category:Food]]
| {{CodeSnip
[[Category:Non-Perishable Food]]
  | lang = java
[[Category:Version 32.19]]
  | line = true
  | start = 4706
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Ramen
{
DisplayName = Dry Ramen Noodles,
DisplayCategory = Food,
Type = Food,
Weight = 0.2,
Icon = Ramen,
EvolvedRecipe = Soup:10;Stir fry Griddle Pan:10;Stir fry:10,
FoodType = Pasta,
Packaged = TRUE,
HungerChange = -10,
ThirstChange = 40,
UnhappyChange = 20,
Calories = 52,
Carbohydrates = 0,
Lipids = 14,
Proteins = 10,
WorldStaticModel = DryRamenNoodles,
Tags = DriedFood,
}
}}
}}
 
==See also==
{{Navbox items|plants}}
 
 
[[Category:Non-perishable food]]

Revision as of 08:11, 14 April 2024

Project ZomboidItemsFoodGrainsDry 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]
Dry Ramen Noodles
DryRamenNoodles Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Properties
Packaged
Yes
Nutrition
HungerMoodle Icon Hungry.png
-10
ThirstMoodle Icon Thirsty.png
+40
CaloriesCalories
52
CarbohydratesCarbohydrates
0
ProteinsProteins
10
FatFat
14
Effect
UnhappinessMoodle Icon Unhappy.png
+20
Technical
Item ID
Base.Ramen

Dry ramen noodles are a non-perishable food item.

Usage

Dry ramen noodles can be eaten raw, increasing the player's thirst and unhappiness while reducing hunger. Dry ramen noodles are more effective when used as a cooking ingredient, which removes its negative effects.

Crafting

Main article: Cooking

Evolved recipes

Dry ramen noodles are a cooking ingredient.

Product Nutrition
Soup
Soup
10
Stir Fry
Stir Fry
10

Distribution

The loot distributions can be found in the table(s) below.

Containers
Building/Room Container Rolls Chance
generalstore shelves 4 1
grocerystorage crate 4 1
kitchen counter 4 6
prisoncells wardrobe 4 1

Dry ramen noodles can be found on kitchen counters.

Code

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

Source: ProjectZomboid\media\scripts\items_food.txt

Retrieved: Build 41.78.16
item Ramen
	{
		DisplayName = Dry Ramen Noodles,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Ramen,
		EvolvedRecipe = Soup:10;Stir fry Griddle Pan:10;Stir fry:10,
		FoodType = Pasta,
		Packaged = TRUE,
		HungerChange = -10,
		ThirstChange = 40,
		UnhappyChange = 20,
		Calories = 52,
		Carbohydrates = 0,
		Lipids = 14,
		Proteins = 10,
		WorldStaticModel = DryRamenNoodles,
		Tags = DriedFood,
	}

See also