Meat Steam Bun: Difference between revisions

From PZwiki
(+3d model infobox -gallery)
m (Automated Formatting)
(20 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Header|Project Zomboid|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}
{{Page version|41.78.16}}
{{Infobox food
{{Infobox item
|display_name=Meat Steam Bun
|name=Meat Steam Bun
|name_colour=Food
|model=MeatSteamBun_Model.png
|name_text_colour=Food
|icon=MeatSteamBun.png
|image=MeatSteamBun Model.png
|image_width=200px
|alternate_image=MeatSteamBun.png
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 20: Line 17:
|carbohydrates=12
|carbohydrates=12
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=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 44: Line 41:


==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
|-
|rowspan="4"|chinesekitchen
|[[restaurantdisplay]]
|4
|1
|-
|[[restaurantdisplay]]
|4
|1
|-
|[[restaurantdisplay]]
|4
|2
|-
|[[restaurantdisplay]]
|4
|2
|}
Meat steam bun can often found inside [[Containers#Displays|displays]] in restaurant.
Meat steam bun can often found inside [[Containers#Displays|displays]] in restaurant.


==Code==
==Code==
'''''From items.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
    item MeatSteamBun
  | line = true
  | start = 6477
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item MeatSteamBun
{
{
DisplayName = Meat Steam Bun,
DisplayName = Meat Steam Bun,
Line 66: Line 96:
WorldStaticModel = MeatSteamBun_Ground,
WorldStaticModel = MeatSteamBun_Ground,
}
}
</pre>
}}
}}
 
==See also==
{{Navbox items|food}}


{{Navbox 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