Bagel: Difference between revisions

From PZwiki
(3d model to infobox)
(Remove extra bagels that have separate pages)
Line 10: Line 10:
|alternate_name=Bagel
|alternate_name=Bagel
|alternate_link=
|alternate_link=
|alternate_image2=BagelSesame.png
|alternate_image2=
|alternate_name2=Sesame Bagel
|alternate_name2=
|alternate_link2=
|alternate_link2=
|alternate_image3=BagelPoppy.png
|alternate_image3=
|alternate_name3=Poppy Bagel
|alternate_name3=
|alternate_link3=
|alternate_link3=
<!--GENERAL-->
<!--GENERAL-->
Line 28: Line 28:
|carbohydrates=33
|carbohydrates=33
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=''See [[#Item IDs|Item IDs]]''
|class_name=Base.BagelPlain
}}
}}
'''Bagel''' is a [[Food#Perishable|perishable]] food [[items|item]] which can come in 3 different variations.
'''Bagel''' is a [[Food#Perishable|perishable]] food [[items|item]] which can come in 3 different variations.
Line 51: Line 51:
Bagel can be found in bakery [[Containers#Displays|display counters]].
Bagel can be found in bakery [[Containers#Displays|display counters]].


==Gallery==
<gallery>
Bagel Model.png|Model for: [[File:BagelPlain.png]]
BagelPoppySeeds Model.png|Model for: [[File:BagelPoppy.png]]
BagelSesameSeeds Model.png|Model for: [[File:BagelSesame.png]]
</gallery>
==Item IDs==
{| class="pztable" style="width:30%; text-align:center;"
! style="width:25%" | Name
! style="width:25%" | Icon
! style="width:50%" | Base ID
|-
| Bagel
| [[File:BagelPlain.png]]
| {{ID|Base.BagelPlain}}
|-
| Poppy Bagel
| [[File:BagelPoppy.png]]
| {{ID|Base.BagelPoppy}}
|-
| Sesame Bagel
| [[File:BagelSesame.png]]
| {{ID|Base.BagelSesame}}
|}
<div class="mw-collapsible mw-collapsed">
==Code==
==Code==
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
Bagel [[File:BagelPlain.png]]
Bagel [[File:BagelPlain.png|32px]]
{{Retrieved|version=41|incver=73}}
{{Retrieved|version=41|incver=73}}
<pre>
<pre>
Line 101: Line 73:
     }
     }
</pre>
</pre>
Poppy Bagel [[File:BagelPoppy.png|32px]]
 
{{Retrieved|version=41|incver=73}}
==See also==
<pre>
*[[Poppy Bagel]]
    item BagelPoppy
*[[Sesame Bagel]]
    {
DisplayName = Poppy Bagel,
DisplayCategory = Food,
Type = Food,
Weight = 0.1,
Icon = BagelPoppy,
DaysFresh = 1,
DaysTotallyRotten = 2,
HungerChange = -10,
Calories = 177,
Carbohydrates = 33,
Lipids = 2.22,
Proteins = 5.9,
WorldStaticModel = BagelPoppy_Ground,
Tags = FitsToaster,
    }
</pre>
Sesame Bagel [[File:BagelSesame.png|32px]]
{{Retrieved|version=41|incver=73}}
<pre>
    item BagelSesame
    {
DisplayName = Sesame Bagel,
DisplayCategory = Food,
Type = Food,
Weight = 0.1,
Icon = BagelSesame,
DaysFresh = 1,
DaysTotallyRotten = 2,
HungerChange = -10,
Calories = 177,
Carbohydrates = 33,
Lipids = 2.22,
Proteins = 5.9,
WorldStaticModel = BagelSesame_Ground,
Tags = FitsToaster,
    }
</pre>
</div>


{{Navbox food}}
{{Navbox food}}

Revision as of 19:48, 19 December 2023

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

Bagel is a perishable food item which can come in 3 different variations.

Usage

Consumable properties

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

Fresh Stale Rotten

File:Bagel Anim.png
Hunger: -10


File:Bagel Anim.png
Hunger: -7
Boredom: +20
Unhappiness: +20

File:Bagel Anim.png
Hunger: -4
Boredom: +20
Unhappiness: +20
Dangerous, will cause sickness.

Distribution

Bagel can be found in bakery display counters.

Code

Bagel BagelPlain.png Retrieved: Build 41.73

    item BagelPlain
    {
 		DisplayName = Bagel,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = BagelPlain,
		DaysFresh = 1,
		DaysTotallyRotten = 2,
		HungerChange = -10,
		Calories = 177,
		Carbohydrates = 33,
		Lipids = 2.22,
		Proteins = 5.9,
		WorldStaticModel = Bagel_Ground,
		Tags = FitsToaster,
    }

See also