Sesame Bagel: Difference between revisions

From PZwiki
mNo edit summary
m (Sentence case, minor fixes)
Line 22: Line 22:
|class_name=Base.BagelSesame
|class_name=Base.BagelSesame
}}
}}
A '''Sesame Bagel''' is a [[Food#Perishable|perishable]] food [[items|item]]
A '''sesame bagel''' is a [[Food#Perishable|perishable]] food [[items|item]]


==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===
Line 44: Line 44:


==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==
Line 63: Line 63:
         WorldStaticModel = BagelSesame_Ground,
         WorldStaticModel = BagelSesame_Ground,
</pre>
</pre>


==See also==
==See also==
*[[Bagel]]
*[[Bagel]]
*[[Poppy Bagel]]
*[[Poppy Bagel]]
[[Category:Food]]

Revision as of 12:55, 19 December 2023

Sesame Bagel
Sesame Bagel
BagelSesame.png
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