Rice Paper: Difference between revisions

From PZwiki
m (Updated distribution table)
(updated code section/article version)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Grains}}
{{Header|Project Zomboid|Items|Food|Grains}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Rice Paper
|name=Rice Paper
Line 51: Line 51:
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item RicePaper
item RicePaper
{
{
  DisplayName         = Rice Paper,
DisplayName = Rice Paper,
  DisplayCategory     = Food,
DisplayCategory = Food,
  Type               = Food,
Type = Food,
  Weight             = 0.1,
Weight = 0.1,
  Icon               = RicePaper,
Icon = RicePaper,
  CantBeFrozen       = TRUE,
CantBeFrozen = TRUE,
  HungerChange       = -4,
HungerChange = -4,
  Calories           = 10,
Calories = 10,
  Carbohydrates       = 0,
Carbohydrates = 0,
  Lipids             = 0,
Lipids = 0,
  Proteins           = 0,
Proteins = 0,
  WorldStaticModel   = RicePaper_Ground,
WorldStaticModel = RicePaper_Ground,
}
}
   }}
   }}
}}
}}

Revision as of 21:06, 22 March 2024

Project ZomboidItemsFoodGrainsRice Paper
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Rice Paper
RicePaper Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Nutrition
HungerMoodle Icon Hungry.png
-4
CaloriesCalories
10
CarbohydratesCarbohydrates
0
ProteinsProteins
0
FatFat
0
Technical
Item ID
Base.RicePaper

Rice paper is a non-perishable food item.

Usage

Rice paper can be eaten, providing the player with some positive effects, including reducing unhappiness.

Distribution

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

Containers
Building/Room Container Rolls Chance
sushikitchen counter 4 1
counter 4 2

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 RicePaper
	{
		DisplayName = Rice Paper,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = RicePaper,
		CantBeFrozen = TRUE,
		HungerChange = -4,
		Calories = 10,
		Carbohydrates = 0,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = RicePaper_Ground,
	}