Burrito: Difference between revisions

From PZwiki
(→‎top: New infobox upgrade - Food)
m (Automated Formatting)
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{header/sandbox2|Project Zomboid|Items|Food|Cooking|Evolved recipes}}
{{Page version|41.78.16}}
{{page version|41.65}}
{{Reupload|Missing rotten 3D model}}
{{reupload|Missing 3D Variant Model (Rotten)}}
{{Infobox item
{{Infobox item
|name=Burrito
|name=Burrito
Line 23: Line 22:
|item_id=Base.Burrito
|item_id=Base.Burrito
}}
}}
A '''burrito''' is a [[Food#Perishable|perishable]] food [[Items|item]].
{{About|burritos that spawn naturally|burritos made by the player|Recipe ingredients#Taco & burrito ingredients}}
A '''burrito''' is a perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Line 32: Line 32:


==Distribution==
==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
|-
|bandkitchen
|[[fridge]]
|4
|8
|-
|rowspan="4"|cafeteria
|[[restaurantdisplay]]
|4
|1
|-
|[[restaurantdisplay]]
|4
|1
|-
|[[restaurantdisplay]]
|4
|2
|-
|[[restaurantdisplay]]
|4
|2
|-
|rowspan="4"|camping
|[[fridge]]
|4
|1
|-
|[[fridge]]
|4
|1
|-
|[[fridge]]
|4
|2
|-
|[[fridge]]
|4
|2
|-
|motelroomoccupied
|[[fridge]]
|1
|1
|}
Burritos can be crafted, or found in fridges.
Burritos can be crafted, or found in fridges.


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=66}}
| {{CodeSnip
<pre>
  | lang = java
  | line = true
  | start = 5809
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Burrito
item Burrito
{
{
HungerChange    =       -25,
DisplayName = Burrito,
Weight  =       0.3,
DisplayCategory = Food,
Type   =       Food,
Type = Food,
UnhappyChange  =       -10,
Weight = 0.3,
DisplayName    =       Burrito,
Icon = Burrito,
DaysTotallyRotten       =       5,
DaysFresh = 3,
DaysFresh = 3,
DaysTotallyRotten = 5,
Icon    =       Burrito,
HungerChange = -25,
Carbohydrates = 100,
UnhappyChange = -10,
Proteins = 37,
Calories = 500,
Lipids = 34,
Carbohydrates = 100,
Calories = 500,
Lipids = 34,
WorldStaticModel = Burrito_Ground,
Proteins = 37,
}
WorldStaticModel = Burrito_Ground,
</pre>
}
}}
}}


==See also==
==See also==
Line 60: Line 122:
*[[Tortilla]]
*[[Tortilla]]


{{Navbox food}}
{{Navbox items|food}}


[[Category:Perishable food]]
[[Category:Perishable food]]

Revision as of 07:02, 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]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing rotten 3D model
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Burrito
Burrito Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.3
Properties
Days fresh
3 days
Days until rotten
5 days
Nutrition
HungerMoodle Icon Hungry.png
-25
CaloriesCalories
500
CarbohydratesCarbohydrates
100
ProteinsProteins
37
FatFat
34
Effect
UnhappinessMoodle Icon Unhappy.png
-10
Technical
Item ID
Base.Burrito
PlushSpiffo.pngThis article is about burritos that spawn naturally. For burritos made by the player, see Recipe ingredients.

A burrito is a perishable food item.

Usage

Burritos can be eaten to restore hunger points and reduce unhappiness.

Crafting

A burrito is crafted from a tortilla and various other vegetables and sauces.

Distribution

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

Containers
Building/Room Container Rolls Chance
bandkitchen fridge 4 8
cafeteria restaurantdisplay 4 1
restaurantdisplay 4 1
restaurantdisplay 4 2
restaurantdisplay 4 2
camping fridge 4 1
fridge 4 1
fridge 4 2
fridge 4 2
motelroomoccupied fridge 1 1

Burritos can be crafted, or found in fridges.

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 Burrito
	{
		DisplayName = Burrito,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.3,
		Icon = Burrito,
		DaysFresh = 3,
		DaysTotallyRotten = 5,
		HungerChange = -25,
		UnhappyChange = -10,
		Calories = 500,
		Carbohydrates = 100,
		Lipids = 34,
		Proteins = 37,
		WorldStaticModel = Burrito_Ground,
	}

See also