Dry Ramen Noodles: Difference between revisions

From PZwiki
m (Automatically add empty line after navbox)
m (Automated Formatting)
(6 intermediate revisions by 2 users not shown)
Line 3: Line 3:
{{Infobox item
{{Infobox item
|name=Dry Ramen Noodles
|name=Dry Ramen Noodles
|model=DryRamenNoodles Model.png
|model=DryRamenNoodles_Model.png
|icon=Ramen.png
|icon=Ramen.png
|icon_name=Dry Ramen Noodles
|icon_name=Dry Ramen Noodles
Line 22: Line 22:
|item_id=Base.Ramen
|item_id=Base.Ramen
}}
}}
'''Dry ramen noodles''' are a non-perishable [[food]] [[Items|item]].
'''Dry ramen noodles''' are a non-perishable [[food]] [[Items|item]].


Line 33: Line 32:
===Evolved recipes===
===Evolved recipes===
Dry ramen noodles are a [[cooking]] [[Recipe ingredients|ingredient]].
Dry ramen noodles are a [[cooking]] [[Recipe ingredients|ingredient]].
{{EvolvedRecipesForItem|soup=10|stirfry=10|}}
{{EvolvedRecipesForItem|soup=10|stirfry=10}}


==Distribution==
==Distribution==
Line 41: Line 40:
! colspan="4" | Containers
! colspan="4" | Containers
|-
|-
!Building/Room
! Building/Room
!Container
! Container
! style="width: 3.2em;" |Rolls
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" |Chance
! style="width: 3.2em;" | Chance
|-
|-
| generalstore
|generalstore
| [[shelves]]
|[[shelves]]
| 4
|4
| 1
|1
|-
|-
| grocerystorage
|grocerystorage
| [[crate]]
|[[crate]]
| 4
|4
| 1
|1
|-
|-
| kitchen
|kitchen
| [[counter]]
|[[counter]]
| 4
|4
| 6
|6
|-
|-
| prisoncells
|prisoncells
| [[wardrobe]]
|[[wardrobe]]
| 4
|4
| 1
|1
|}
|}
Dry ramen noodles can be found on [[Containers#Kitchen Counter|kitchen counters]].
Dry ramen noodles can be found on [[Containers#Kitchen Counter|kitchen counters]].
Line 72: Line 71:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 4706
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Ramen
item Ramen
{
{
    DisplayName         = Dry Ramen Noodles,
DisplayName = Dry Ramen Noodles,
    DisplayCategory     = Food,
DisplayCategory = Food,
    Type               = Food,
Type = Food,
    Weight             = 0.2,
Weight = 0.2,
    Icon               = Ramen,
Icon = Ramen,
    EvolvedRecipe       = Soup:10;Stir fry Griddle Pan:10;Stir fry:10,
EvolvedRecipe = Soup:10;Stir fry Griddle Pan:10;Stir fry:10,
    FoodType           = Pasta,
FoodType = Pasta,
    Packaged           = TRUE,
Packaged = TRUE,
    HungerChange       = -10,
HungerChange = -10,
    ThirstChange       = 40,
ThirstChange = 40,
    UnhappyChange       = 20,
UnhappyChange = 20,
    Calories           = 52,
Calories = 52,
    Carbohydrates       = 0,
Carbohydrates = 0,
    Lipids             = 14,
Lipids = 14,
    Proteins           = 10,
Proteins = 10,
    WorldStaticModel   = DryRamenNoodles,
WorldStaticModel = DryRamenNoodles,
    Tags               = DriedFood,
Tags = DriedFood,
}
}
  }}
}}
}}
}}
==See also==
{{Navbox items|plants}}


{{Navbox food}}


[[Category:Non-perishable food]]
[[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