Corndog: Difference between revisions

From PZwiki
No edit summary
m (Automated Formatting)
(37 intermediate revisions by 9 users not shown)
Line 1: Line 1:
{{languages}}{{Notice|Short}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Page version|41.78.16}}
{{Reupload|Missing 3D Variant Model (Rotten)}}
{{Infobox item
|name=Corndog
|model=Corndog_Model.png
|icon=Corndog.png
<!--GENERAL-->
|category=Food
|weight=0.1
|days_fresh=3
|days_rotten=6
<!--NUTRITION-->
|hunger_change=-12
|calories=180
|lipids=9
|proteins=19
|carbohydrates=7
<!--TECHNICAL DETAILS-->
|item_id=Base.Corndog
}}
'''Corndog''' is a perishable [[food]] [[Items|item]].


==Usage==
===Consumable properties===
Corndog can be eaten, providing the player with some positive effects, however these will become negative the longer it's left to perish.
{{Consumables
{{Consumables
|image = SNACKCorndog.png
|image = Corndog.png
|hunger = -12
|weight = 0.1
}}
 
== Description ==
A corndog is a hotdog snack, smothered in maize-flour batter, fried, then served on a stick. It manages to reduce a small amount of hunger, but is perishable and will go rotten if left unattended.
 
== Nutritional Information ==
{{Consumables2
|image = SNACKCorndog.png
|hunger = -12
|hunger = -12
|thirst = 0
|unrotten hunger = -9
|unrotten hunger = 0
|unrotten boredom = +10
|unrotten boredom = 0
|unrotten unhappiness = +10
|unrotten unhappiness = 0
|unrotten image = Corndog.png
|unrotten thirst = 0
|rotten hunger = -5
|unrotten image = SNACKCorndog.png
|rotten boredom = +20
|rotten hunger = 0
|rotten unhappiness = +20
|rotten boredom = 0
|rotten unhappiness = 0
|rotten thirst = 0
|perishable = 1
|perishable = 1
|rotten image = SNACKCorndog.png
|rotten image = Corndog.png
}}
}}


== Code ==
==Distribution==
<nowiki>item Corndog
The loot distributions can be found in the table(s) below.
{
HungerChange = -12,
Weight = 0.1,
Type = Food,
DaysTotallyRotten = 6,
DisplayName = Corndog,
Icon = Corndog,
DaysFresh = 3,
}</nowiki>


== History ==
{| 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
{| class="wikitable" width="550" style="text-align:center;"
|-
! Building/Room
! Container
! style="width: 3.2em;" | Rolls
! style="width: 3.2em;" | Chance
|-
|bandkitchen
|[[fridge]]
|4
|4
|-
|-
! Alpha ||
|camping
|[[fridge]]
|4
|1
|-
|-
| - || -
|motelroomoccupied
|[[fridge]]
|1
|1
|}
|}
Corndog can be found inside [[refrigerator]]s and theater [[Containers#Counters|counters]].
==Code==
{{CodeBox
| {{CodeSnip
  | lang = java
  | line = true
  | start = 2274
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Corndog
{
DisplayName = Corndog,
DisplayCategory = Food,
Type = Food,
Weight = 0.1,
Icon = Corndog,
DaysFresh = 3,
DaysTotallyRotten = 6,
HungerChange = -12,
Calories = 180,
Carbohydrates = 7,
Lipids = 9,
Proteins = 19,
StaticModel = Corndog,
WorldStaticModel = Corndog_Ground,
}
}}
}}
==See also==
*[[Hotdog]]
*[[Pizza]]


==See Also==
{{Navbox items|food}}
* [[Items#Luxury Food|Luxury Food]]


{{Navbox/Consumables}}
[[Category:Perishable food]]
[[Category:Consumables]]
[[Category:Food]]
[[Category:Perishable Food]]

Revision as of 07:48, 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]
Frame.png
This article contains outdated/low-quality images.
Reason: Missing 3D Variant Model (Rotten)
Please help the PZwiki by uploading an improved/updated version of the image(s) found on this page.
Corndog
Corndog Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Days fresh
3 days
Days until rotten
6 days
Nutrition
HungerMoodle Icon Hungry.png
-12
CaloriesCalories
180
CarbohydratesCarbohydrates
7
ProteinsProteins
19
FatFat
9
Technical
Item ID
Base.Corndog

Corndog is a perishable food item.

Usage

Consumable properties

Corndog 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

Corndog.png
Hunger: -12


Corndog.png
Hunger: -9
Boredom: +10
Unhappiness: +10

Corndog.png
Hunger: -5
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
bandkitchen fridge 4 4
camping fridge 4 1
motelroomoccupied fridge 1 1

Corndog can be found inside refrigerators and theater counters.

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 Corndog
	{
		DisplayName = Corndog,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.1,
		Icon = Corndog,
		DaysFresh = 3,
		DaysTotallyRotten = 6,
		HungerChange = -12,
		Calories = 180,
		Carbohydrates = 7,
		Lipids = 9,
		Proteins = 19,
		StaticModel = Corndog,
		WorldStaticModel = Corndog_Ground,
	}

See also