Bagel: Difference between revisions

From PZwiki
mNo edit summary
m (Remove 120px, minor fixes)
Line 1: Line 1:
{{languages|Bagel}}
{{Languages}}{{Header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{header|The Game World|Items|Food|Perishable Food|type=Food|version=Version 41|incver=73}}<!--
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
|display_name=Bagel
|display_name=Bagel
|name_colour=Food
|name_colour=Food
|name_text_colour=Food
|name_text_colour=Food
|image=Item BagelPlain 120px.png
|image=BagelPlain.png
|alternate_image=BagelPoppy.png
|alternate_image=BagelPoppy.png
|alternate_name=Poppy Bagel
|alternate_name=Poppy Bagel
Line 26: Line 23:
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=''See [[#Item IDs|Item IDs]]''
|class_name=''See [[#Item IDs|Item IDs]]''
}}<!--COMMENT: General introductory for the item-->
}}'''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.
 
==Usage==


== Usage ==
===Consumable properties===
===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.
Bagel can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
Line 45: Line 42:
}}
}}


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


Line 75: Line 72:


<div class="mw-collapsible mw-collapsed">
<div class="mw-collapsible mw-collapsed">
== Code ==
==Code==
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
<div class="mw-collapsible-content">'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
Bagel [[File:BagelPlain.png|32px]]
Bagel [[File:BagelPlain.png|32px]]

Revision as of 01:34, 20 February 2023

Bagel
Bagel
Poppy Bagel Sesame 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 See Item IDs

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. Template:Consumables2

Distribution

Bagel can be found in bakery display counters.

Gallery

Item IDs

Name Icon Base ID
Bagel BagelPlain.png Base.BagelPlain
Poppy Bagel BagelPoppy.png Base.BagelPoppy
Sesame Bagel BagelSesame.png Base.BagelSesame

Code

From items_food.txt (Project Zomboid directory/media/scripts/)

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,
    }

Poppy Bagel BagelPoppy.png Retrieved: Build 41.73

    item BagelPoppy
    {
		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,
    }

Sesame Bagel BagelSesame.png Retrieved: Build 41.73

    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,
    }