Pancake Mix: Difference between revisions

From PZwiki
(-gallery + 3d image model infobox)
m (Distribution table update)
(25 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Languages}}
{{Header|Project Zomboid|Items|Food|Miscellaneous food}}
{{Header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 41|incver=73}}
{{Page version|41.78.16}}
{{Infobox drainable
{{Infobox item
|display_name=Pancake Mix
|name=Pancake Mix
|name_colour=Food
|name_text_colour=Food
|category=Cooking
|category=Cooking
|image=PancakeMix_Model.png
|model=PancakeMix_Model.png
|image_width=200px
|icon=PancakeMix.png
|alternate_image=PancakeMix.png
|weight=0.1
|weight=0.1
|max_units=4
|max_units=4
|class_name=Base.PancakeMix
|item_id=Base.PancakeMix
}}'''Pancake mix''' is a [[Food#Non-Perishable|non-perishable]] [[item]] used in [[cooking]].
}}
A '''pancake mix''' is a non-perishable [[food]] [[Items|item]] used in [[cooking]].


==Usage==
==Usage==
Line 21: Line 19:


===What it can make===
===What it can make===
{{Crafting header|type=food|ing=4}}
{{Crafting/sandbox2
{{Crafting cooking|129|ing=4}}
|pancakes_uncooked
|}
}}


==Distribution==
==Distribution==
Pancake mix can be found in [[Containers#Kitchen_Counter|kitchen counters]].  
The loot distributions can be found in the table(s) below.
 
<!--BOT FLAG|PancakeMix|41.78.16-->
{{clear}}
<div class="togglebox theme-red">
    <div>PancakeMix distribution
        <span class="mw-customtoggle-togglebox-PancakeMix" 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-PancakeMix">
    <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
    |-
    | cafeteriakitchen
    | {{ll|crate}}
    | 4
    | 20.0
    |-
    | cafeteriakitchen
    | {{ll|crate}}
    | 4
    | 10.0
    |-
    | cafeteriakitchen
    | {{ll|crate}}
    | 4
    | 50.0
    |-
    | kitchen
    | {{ll|counter}}
    | 4
    | 8.0
    |-
    | kitchen_crepe
    | {{ll|counter}}
    | 4
    | 20.0
    |-
    | kitchen_crepe
    | {{ll|counter}}
    | 4
    | 10.0
    |}
</div>
    </div><div style="clear:both;"></div>
    </div></div><div class="toggle large mw-customtoggle-togglebox-PancakeMix" title="{{int:show}}/{{int:hide}}"></div></div>
<!--END BOT FLAG|PancakeMix|41.78.16-->
Pancake mix can be found in [[Containers#Kitchen_Counter|kitchen counters]].


==Code==
==Code==
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
{{CodeBox
{{Retrieved|version=41|incver=73}}
| {{CodeSnip
<pre>
  | lang = java
item PancakeMix
  | line = true
  | start = 4678
  | source = newitems.txt
  | retrieved = true
  | version = 41.78.16
  | code =
item PancakeMix
     {
     {
         Type = Drainable,
         Type = Drainable,
         DisplayCategory         = Cooking,
         DisplayCategory = Cooking,
         DisplayName = Pancake Mix,
         DisplayName = Pancake Mix,
         Icon = PancakeMix,
         Icon = PancakeMix,
         Weight = 0.1,
         Weight = 0.1,
         UseWhileEquipped = FALSE,
         UseWhileEquipped = FALSE,
         UseDelta         = 0.25,
         UseDelta = 0.25,
         WorldStaticModel       = PancakeMix_Ground,
         WorldStaticModel = PancakeMix_Ground,
     },
     }
</pre>
}}
}}


==See also==
==See also==
*[[Recipe Ingredients]]
*[[Recipe ingredients]]
*[[Sugar]]
*[[Sugar]]
*[[Yeast]]
*[[Yeast]]


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

Revision as of 16:13, 24 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]
Pancake Mix
PancakeMix Model.png
General
Category
Cooking
Encumbrance
Moodle Icon HeavyLoad.png
0.1
Properties
Capacity
4 units
Technical
Item ID
Base.PancakeMix

A pancake mix is a non-perishable food item used in cooking.

Usage

Pancake mix can be used to make pancakes.

Crafting

Main article: Cooking

What it can make

Product Ingredients Tools Requirements Workstation XP
Pancakes.png
Pancakes (Uncooked)
One of:
Fork.png Fork ×1
Spatula.png Spatula ×1
Spoon.png Spoon ×1
Each of:
Bowl.png Empty Bowl ×1
PancakeMix.png Pancake Mix ×1 unit(s)
WaterDrop.png Water ×2 unit(s)
none none none 0.75 Cooking

Distribution

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

PancakeMix distribution Show / Hide
Containers
Building / Room Container Rolls Chance
cafeteriakitchen crate 4 20.0
cafeteriakitchen crate 4 10.0
cafeteriakitchen crate 4 50.0
kitchen counter 4 8.0
kitchen_crepe counter 4 20.0
kitchen_crepe counter 4 10.0

Pancake mix can be found in kitchen counters.

Code

Code icon.png Code snippet! This section contains source code from Project ZomboidShow / Hide

Source: ProjectZomboid\media\scripts\newitems.txt

Retrieved: Build 41.78.16
item PancakeMix
    {
        Type				= Drainable,
        DisplayCategory = Cooking,
        DisplayName			= Pancake Mix,
        Icon				= PancakeMix,
        Weight				= 0.1,
        UseWhileEquipped	=	FALSE,
        UseDelta	=	0.25,
        WorldStaticModel = PancakeMix_Ground,
    }

See also