Sesame Bagel: Difference between revisions

From PZwiki
(PZ Updater automated execution(task: fix infobox based on file, eid: 6b56cb5d))
m (Cleanups)
Line 1: Line 1:
{{languages|{{PAGENAME}}}}
{{Languages}}
 
{{Header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=65}}
{{header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=65}}<!--
Comment: This section is for the infobox which will be positioned on the right of the page. The information can be pulled from the items/newitems.txt file in [Zomboid Folder\media\scripts]. For more info on how to use the infobox, see: https://pzwiki.net/wiki/Template:Infobox_food. Image.png is the default question mark image-->
{{Infobox food
{{Infobox food
|display_name=Sesame Bagel
|display_name=Sesame Bagel
Line 21: Line 19:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.BagelSesame
|class_name=Base.BagelSesame
}}<!--COMMENT: General introductory for the item-->
}}
A '''Sesame Bagel''' is a [[Food#Perishable|perishable]] food [[items|item]]
A '''sesame Bagel''' is a [[Food#Perishable|perishable]] food [[items|item]]
 
<!--COMMENT: This is where the 'Table Of Contents' will go if it is needed-->
__TOC__


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


=== Consumable properties ===
===Consumable properties===
<!--COMMENT: This section explains how the food values alter over time, ranging from fresh uncooked, to burnt, to rotten, fill in details as appropriate. Example used is Chicken -->
{{Consumables
{{Consumables2
|image = BagelSesame.png
|image = BagelSesame.png
|hunger = -10
|hunger = -10
Line 47: Line 41:
}}
}}


== Distribution ==
==Distribution==
Sesame Bagels can be found in bakery [[Containers#Displays|display counters]].
Sesame Bagels can be found in bakery [[Containers#Displays|display counters]].


== Code ==
==Code==
<pre>   item BagelSesame
<pre>
    item BagelSesame
     {
     {
         HungerChange = -10,
         HungerChange = -10,
Line 64: Line 59:
         Lipids = 2.22,
         Lipids = 2.22,
         Calories = 177,
         Calories = 177,
         WorldStaticModel = BagelSesame_Ground,</pre>
         WorldStaticModel = BagelSesame_Ground,
</pre>





Revision as of 19:30, 2 September 2023

Sesame Bagel
Sesame Bagel
General
Category Food
Encumbrance
Heavy Load
0.1
Days until stale 1 days
Days until rotten 6 days
Nutrition
Hunger
Hunger
-10
Calories
Calories
177
Carbohydrates
Carbohydrates
33
Proteins
Proteins
5.9
Fat
Fat
2.22
Technical details
Item ID Base.BagelSesame

A sesame Bagel is a perishable food item

Usage

A Sesame Bagel 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

BagelSesame.png
Hunger: -10


BagelSesame.png
Hunger: -7
Boredom: +10
Unhappiness: +10

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

Distribution

Sesame Bagels can be found in bakery display counters.

Code

    item BagelSesame
    {
        HungerChange	=	-10,
        Weight	=	0.1,
        Type	=	Food,
        DaysTotallyRotten	=	2,
        DisplayName	=	Sesame Bagel,
        Icon	=	BagelSesame,
        DaysFresh	=	1,
        Carbohydrates = 33,
        Proteins = 5.9,
        Lipids = 2.22,
        Calories = 177,
        WorldStaticModel = BagelSesame_Ground,


See also