Dry Ramen Noodles: Difference between revisions

From PZwiki
No edit summary
m (Automated Formatting)
(48 intermediate revisions by 14 users not shown)
Line 1: Line 1:
{{languages}}
{{Header|Project Zomboid|Items|Food|Grains}}
{{Consumables
{{Page version|41.78.16}}
|image = Noodles.png
{{Infobox item
|weight = 0.2
|name=Dry Ramen Noodles
|hunger = -20
|model=DryRamenNoodles_Model.png
|Thirst = +40
|icon=Ramen.png
|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
}}
}}
A bunch of dry ramen noodles, eating them unmodified will replenish little hunger and will add thirst to your character, best to put it in a bowl before eating it.  
'''Dry ramen noodles''' are a non-perishable [[food]] [[Items|item]].


Found in [[containers#Kitchen_cupboard|kitchen cupboards]]s.
==Usage==
==Effects==
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.
[[Hunger]]: -20<br>
[[Thirst]]: +40
== Crafting ==
A bunch of dry ramen noodles can be used for the following crafting recipes:


{| class="wikitable sortable" style="text-align:center;"
==Crafting==
|-
{{Main|Cooking}}


! Output
===Evolved recipes===
! class="unsortable" | Ingredients
Dry ramen noodles are a [[cooking]] [[Recipe ingredients|ingredient]].
! class="unsortable" | Description
{{EvolvedRecipesForItem|soup=10|stirfry=10}}
{{RecipeLookup|40}}
 
{{RecipeLookup|9}}
==Distribution==
The loot distributions can be found in the table(s) below.
 
{| class="mw-collapsible mw-collapsed wikitable theme-red" data-expandtext="{{int:show}}" data-collapsetext="{{int:hide}}" style="text-align:center; min-width:24em;"
! colspan="4" | Containers
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|generalstore
|[[shelves]]
|4
|1
|-
|grocerystorage
|[[crate]]
|4
|1
|-
|kitchen
|[[counter]]
|4
|6
|-
|prisoncells
|[[wardrobe]]
|4
|1
|}
|}
== Code ==
Dry ramen noodles can be found on [[Containers#Kitchen Counter|kitchen counters]].
<nowiki>item Ramen
 
{
==Code==
Type = Food,
{{CodeBox
DisplayName = Dry Ramen Noodles,
| {{CodeSnip
Icon = Ramen,
  | lang = java
Weight = 0.2,
  | line = true
HungerChange = -20,
  | start = 4706
ThirstChange = 40
  | source = items_food.txt
}</nowiki>
  | 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}}
 


{{Navbox/Consumables}}
[[Category:Non-perishable food]]
[[Category:Consumables]]
[[Category:Food]]
[[Category:Non-Perishable Food]]
[[Category:Version 0.2.0p]]

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