Meat Steam Bun: Difference between revisions

From PZwiki
m (Removed {{clear}} line above ==Distribution==)
m (Automated Formatting)
(10 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=Meat Steam Bun
|name=Meat Steam Bun
|model=MeatSteamBun Model.png
|model=MeatSteamBun_Model.png
|icon=MeatSteamBun.png
|icon=MeatSteamBun.png
<!--GENERAL-->
<!--GENERAL-->
Line 19: Line 19:
|item_id=Base.MeatSteamBun
|item_id=Base.MeatSteamBun
}}
}}
A '''meat steam bun''' is a [[Food#Perishable|perishable]] food [[items|item]].
A '''meat steam bun''' is a 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
|-
|-
| rowspan="4"|chinesekitchen
|rowspan="4"|chinesekitchen
| [[restaurantdisplay]]
|[[restaurantdisplay]]
| 4
|4
| 1
|1
|-
|-
|[[restaurantdisplay]]
|[[restaurantdisplay]]
Line 74: Line 74:
| {{CodeSnip
| {{CodeSnip
   | lang = java
   | lang = java
   | line = false
   | line = true
   | source = items.txt
  | start = 6477
   | source = items_food.txt
   | retrieved = true
   | retrieved = true
   | version = 41.73
   | version = 41.78.16
   | code =
   | code =
item MeatSteamBun
item MeatSteamBun
{
{
    DisplayName         = Meat Steam Bun,
DisplayName = Meat Steam Bun,
    DisplayCategory     = Food,
DisplayCategory = Food,
    Type               = Food,
Type = Food,
    Weight             = 0.1,
Weight = 0.1,
    Icon               = MeatSteamBun,
Icon = MeatSteamBun,
    DaysFresh           = 2,
DaysFresh = 2,
    DaysTotallyRotten   = 4,
DaysTotallyRotten = 4,
    HungerChange       = -15,
HungerChange = -15,
    Calories           = 35,
Calories = 35,
    Carbohydrates       = 12,
Carbohydrates = 12,
    Lipids             = 4,
Lipids = 4,
    Proteins           = 18,
Proteins = 18,
    WorldStaticModel   = MeatSteamBun_Ground,
WorldStaticModel = MeatSteamBun_Ground,
}
}
  }}
}}
}}
}}
==See also==
{{Navbox items|food}}


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

Revision as of 10:08, 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]
Meat Steam Bun
MeatSteamBun Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Days fresh
2 days
Days until rotten
4 days
Nutrition
HungerMoodle Icon Hungry.png
-15
CaloriesCalories
35
CarbohydratesCarbohydrates
12
ProteinsProteins
18
FatFat
4
Technical
Item ID
Base.MeatSteamBun

A meat steam bun is a perishable food item.

Usage

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

Consumable properties

Fresh Stale Rotten

MeatSteamBun.png
Hunger: -15


MeatSteamBun.png
Hunger: -11
Boredom: +10
Unhappiness: +10

MeatSteamBun.png
Hunger: -6
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Distribution

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

Containers
Building/Room Container Rolls Chance
chinesekitchen restaurantdisplay 4 1
restaurantdisplay 4 1
restaurantdisplay 4 2
restaurantdisplay 4 2

Meat steam bun can often found inside displays in restaurant.

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 MeatSteamBun
	{
		DisplayName = Meat Steam Bun,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = MeatSteamBun,
		DaysFresh = 2,
		DaysTotallyRotten = 4,
		HungerChange = -15,
		Calories = 35,
		Carbohydrates = 12,
		Lipids = 4,
		Proteins = 18,
		WorldStaticModel = MeatSteamBun_Ground,
	}

See also