Candy Cane: Difference between revisions

From PZwiki
m (Remove 120px, minor fixes)
m (Distribution table update)
 
(24 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{Languages}}{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}{{Infobox food
{{Header|Project Zomboid|Items|Food|Sweets}}
|display_name=Candy Cane
{{Page version|41.78.16}}
|name_colour=Food
{{Infobox item
|name_text_colour=Food
|name=Candy Cane
|image=Candycane.png
|model=CandyCane_Model.png
|icon=Candycane.png
|icon_name=Candy Cane
<!--GENERAL-->
<!--GENERAL-->
|category=Food
|category=Food
Line 14: Line 16:
|carbohydrates=4.33
|carbohydrates=4.33
<!--TECHNICAL DETAILS-->
<!--TECHNICAL DETAILS-->
|class_name=Base.Candycane
|item_id=Base.Candycane
}}'''Candy cane''' is a [[Food#Non-Perishable|non-perishable]] food [[item]].  
}}
A '''candy cane''' is a non-perishable [[food]] [[Items|item]].


==Usage==
==Usage==
Line 21: Line 24:


==Distribution==
==Distribution==
The loot distributions can be found in the table(s) below.
<!--BOT FLAG|Candycane|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>Candycane distribution
        <span class="mw-customtoggle-togglebox-Candycane" title="{{int:show}} / {{int:hide}}" style="float:right; padding-right:30px; padding-top:4px; font-size:0.7em; font-weight:normal;">{{int:show}} / {{int:hide}}</span></div>
    <div class="mw-collapsible mw-collapsed" id="mw-customcollapsible-togglebox-Candycane">
    <div class="toggle-content"><div style="display: flex;"><div style="float:left;">
    {| class="wikitable theme-red" style="margin-right:15px; width:95%;"
    |+ {{ll|Containers}}
    ! Building / Room
    ! Container
    ! Rolls
    ! Chance
    |-
    | all
    | {{ll|GroceryBag1}}
    | 1
    | 1.0
    |-
    | all
    | {{ll|GroceryBag3}}
    | 1
    | 10.0
    |-
    | candystorage
    | {{ll|metal_shelves}}
    | 4
    | 10.0
    |-
    | candystore
    | {{ll|counter}}
    | 4
    | 10.0
    |-
    | grocerystorage
    | {{ll|crate}}
    | 4
    | 1.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-Candycane" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|Candycane|41.78.16-->
Candy cane can be found in candy stores, and kitchen [[Containers#Counters|counters]].
Candy cane can be found in candy stores, and kitchen [[Containers#Counters|counters]].
==Gallery==
<gallery>
File:CandyCane Model.png|Candy cane model when placed in the world.
</gallery>


==Code==
==Code==
'''''From items_food.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>    item Candycane
  | lang = java
  | line = true
  | start = 3800
  | source = items_food.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item Candycane
{
{
DisplayName = Candy Cane,
DisplayName = Candy Cane,
Line 44: Line 94:
Proteins = 0,
Proteins = 0,
WorldStaticModel = CandyCane,
WorldStaticModel = CandyCane,
}</pre>
}
}}
}}


==See also==
==See also==
Line 51: Line 103:
*[[Candy Package]]
*[[Candy Package]]


{{Navbox food}}
{{Navbox items|miscellaneous_food}}
 
 
[[Category:Non-perishable food]]

Latest revision as of 15:07, 24 April 2024

Project ZomboidItemsFoodSweetsCandy Cane
UI Tick.png
This page has been revised for the current stable version (41.78.16).
Help by adding any missing content. [edit]
Candy Cane
CandyCane Model.png
General
Category
Food
Encumbrance
Moodle Icon HeavyLoad.png
0.2
Nutrition
HungerMoodle Icon Hungry.png
-10
CaloriesCalories
16.6
CarbohydratesCarbohydrates
4.33
ProteinsProteins
0
FatFat
0
Technical
Item ID
Base.Candycane

A candy cane is a non-perishable food item.

Usage

Candy cane can be eaten, providing the player with some positive effects.

Distribution

The loot distributions can be found in the table(s) below.

Candycane distribution Show / Hide
Containers
Building / Room Container Rolls Chance
all GroceryBag1 1 1.0
all GroceryBag3 1 10.0
candystorage metal_shelves 4 10.0
candystore counter 4 10.0
grocerystorage crate 4 1.0

Candy cane can be found in candy stores, and kitchen 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 Candycane
	{
		DisplayName = Candy Cane,
		DisplayCategory = Food,
		Type = Food,
		Weight = 0.2,
		Icon = Candycane,
		HungerChange = -10,
		Calories = 16.6,
		Carbohydrates = 4.33,
		Lipids = 0,
		Proteins = 0,
		WorldStaticModel = CandyCane,
	}

See also