Fries: Difference between revisions

From PZwiki
m (Removed {{clear}} line above ==Distribution==)
m (Automated Formatting)
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Page version|41.73}}
{{Page version|41.78.16}}
{{Infobox item
{{Infobox item
|name=Fries
|name=Fries
Line 22: Line 22:
|item_id=Base.Fries
|item_id=Base.Fries
}}
}}
'''Fries''', short for '''french fries''', are a [[Food#Perishable|perishable]] food [[item]].
'''Fries''', short for '''french fries''', are a [[Food#Perishable|perishable]] food [[Items|item]].


==Usage==
==Usage==
Line 46: Line 46:
! 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
|-
|-
| bandkitchen
|bandkitchen
| [[fridge]]
|[[fridge]]
| 4
|4
| 8
|8
|-
|-
| rowspan="4"|burgerkitchen
|rowspan="4"|burgerkitchen
| [[restaurantdisplay]]
|[[restaurantdisplay]]
| 4
|4
| 1
|1
|-
|-
|[[restaurantdisplay]]
|[[restaurantdisplay]]
Line 73: Line 73:
|2
|2
|-
|-
| motelroomoccupied
|motelroomoccupied
| [[fridge]]
|[[fridge]]
| 1
|1
| 6
|6
|}
|}
Fries can often be found inside [[refrigerator]]s or on tables alongside other food items such as [[burger]]s in a [[Spiffo's]] or [[Burgers]] kitchen, and the [[trunk]] of a [[Franklin Valuline#Spiffo's Van|Spiffo's van]].
Fries can often be found inside [[refrigerator]]s or on tables alongside other food items such as [[burger]]s in a [[Spiffo's]] or [[Burgers]] kitchen, and the [[trunk]] of a [[Franklin Valuline#Spiffo's Van|Spiffo's van]].
Line 90: Line 90:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
  | start = 5652
   | source = items_food.txt
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item Fries
item Fries
{
{
    DisplayName           = Fries,
DisplayName = Fries,
    DisplayCategory       = Food,
DisplayCategory = Food,
    Type                 = Food,
Type = Food,
    Weight               = 0.4,
Weight = 0.4,
    Icon                 = Fries,
Icon = Fries,
    DaysFresh             = 3,
DaysFresh = 3,
    DaysTotallyRotten     = 5,
DaysTotallyRotten = 5,
    HungerChange         = -10,
HungerChange = -10,
    UnhappyChange         = -10,
UnhappyChange = -10,
    Calories             = 203,
Calories = 203,
    Carbohydrates         = 35.97,
Carbohydrates = 35.97,
    Lipids               = 5.19,
Lipids = 5.19,
    Proteins             = 3.35,
Proteins = 3.35,
    WorldStaticModel     = Fries,
WorldStaticModel = Fries,
}
}
  }}
}}
}}
}}


Line 120: Line 121:
*[[Fried Chicken]]
*[[Fried Chicken]]


{{Navbox food}}
{{Navbox items|food}}
 
[[Category:Perishable food]]
[[Category:Perishable food]]

Revision as of 08:40, 14 April 2024

UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Fries
Fries Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.4
Properties
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
203
CarbohydratesCarbohydrates
35.97
ProteinsProteins
3.35
FatFat
5.19
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Fries

Fries, short for french fries, are a perishable food item.

Usage

Consumable properties

Fries can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.

Fresh Stale Rotten

Fries.png
Hunger: -10

Unhappiness: -10

Fries.png
Hunger: -7
Boredom: +10

Fries.png
Hunger: -4
Boredom: +20
Unhappiness: +10
Dangerous, will cause sickness.

Distribution

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

Containers
Building/Room Container Rolls Chance
bandkitchen fridge 4 8
burgerkitchen restaurantdisplay 4 1
restaurantdisplay 4 1
restaurantdisplay 4 2
restaurantdisplay 4 2
motelroomoccupied fridge 1 6

Fries can often be found inside refrigerators or on tables alongside other food items such as burgers in a Spiffo's or Burgers kitchen, and the trunk of a Spiffo's van.

Gallery

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 Fries
	{
		DisplayName = Fries,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.4,
		Icon = Fries,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -10,
		UnhappyChange = -10,
		Calories = 203,
		Carbohydrates = 35.97,
		Lipids = 5.19,
		Proteins = 3.35,
		WorldStaticModel = Fries,
	}

See also