Cake Batter: Difference between revisions

From PZwiki
(Updated info to the current game version, and added some hyperlinks)
mNo edit summary
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
{{languages|Cake Batter}}
{{languages|Cake Batter}}
<div class="header" style="margin: 5px; align: right; background: #CEF2E0; padding: 13px; text-align: left; font-size: 100%; color:#000000; border: 1px solid #A3BFB1"> <!-- Code for Background Colour -->
{{header|Project Zomboid|Items|Food|Non-Perishable Food|type=Food|version=Version 40|incver=16}}{{Infobox food
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 39.45'''    </div><!-- Code for Version Tag at top -->
|display_name=Cake Batter
<div style="float: left;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">   '''Navigation''' - [[:Category:Main|Main Index]] -> [[:Category:The_Game_World|The Game World]] -> [[:Category:Items|Items]] -> [[:Category:Consumables|Consumables]] -> [[:Category:Food|Food]] -> [[:Category:Non-Perishable_Food|Non Perishable Foods]] -> [[{{PAGENAME}}]]   </div><!-- Code for Navigation Bar at top, special blank char's before '''Navigation''' to give space -->
|name_colour=Food
{{Consumables
|name_text_colour=Food
|image = Cake_Batter.png
|image=CakeBatter_120px.png
|weight = 0.3
|alternate_image=Cake.png
}}
|alternate_name=Cake Preparation
[[Cake Batter|Cake batter]] is an inedible [[Food#Non-Perishable|non-perishable]] food item that is crafted from [[flour]], [[butter]], [[sugar]], an [[egg]], [[yeast]], [[Milk Package|milk]] and a [[bowl]]. Cake batter is the base for making a cake, which once created, ingredients can be added and cooked to create a fulfilling food.
|alternate_link=Cake
|alternate_image2=CakeCooked.png
|alternate_name2=Cake
|alternate_link2=Cake
<!--GENERAL-->
|category=Food
|weight=0.3
<!--NUTRITION-->
|calories=800
|lipids=48
|proteins=8
|carbohydrates=50
<!--TECHNICAL DETAILS-->
|class_name=Base.CakeBatter
}}'''Cake batter''' is a [[Food#Non-Perishable|non-perishable]], inedible food [[item]].  


In order to learn the pie dough recipe, the player must have either the [[Traits#Hobbies|cook]] trait, or read the [[Recipe_Magazines|good cooking magazine]].
==Usage==
<br>
Cake batter cannot be consumed by the player, and is only used to make a [[cake]].
== Nutritional Information ==


'''Its Nutritional Values are as follows:'''<br>
Carbohydrates = 50 <br>
Proteins = 8 <br>
Lipids = 48 <br>
Calories = 800 <br><br>
== Crafting ==
== Crafting ==
===Cooking===
{{Main|Cooking}}
====How to make====
The player must first learn how to make cake batter before it is craftable. This can be done by either reading a [[Recipe Magazines#Cooking|''Good Cooking Magazine'']], or starting with the [[Occupation#Chef|chef occupation]] during character creation.
{{Cooking table header}}
{{RecipeLookup|2039}}
{{Crafting table footer}}


{| class="wikitable sortable" style="text-align:center;"
====What it can make====
|-
Cake batter is placed in a baking pan, producing a [[Cake Preparation|cake preparation]], which can have more ingredients added to it before being cooked, and producing a [[cake]].
! Name
{{Cooking table header}}
! class="unsortable" | Recipe
! class="unsortable" | Description
{{RecipeLookup|2039}}
{{RecipeLookup|2037}}
{{RecipeLookup|2037}}
{{RecipeLookup|2041}}
{{Crafting table footer}}
|}




== Code ==
== Code ==
=== Item ===
'''''From newitems.txt (Project Zomboid directory/media/scripts/)'''''
<nowiki>
{{Retrieved|version=40|incver=16}}
item CakeBatter
<pre> item CakeBatter
    {
Type = Normal,
Type = Normal,
DisplayName = Cake Batter,
DisplayName = Cake Batter,
Icon = CakeBatter,
Icon = CakeBatter,
Weight = 0.3,
Weight = 0.3,
        Carbohydrates = 50,
        Carbohydrates = 50,
        Proteins = 8,
        Proteins = 8,
        Lipids = 48,
        Lipids = 48,
        Calories = 800,</pre>
        Calories = 800,
    }
</nowiki>
=== Recipe ===
<nowiki>
recipe Make Cake Batter
    {
      Bowl,
      Flour=2,
      Butter;15,
      Sugar=3,
      Egg/WildEggs,
      Yeast,
      Milk,


      Result:CakeBatter,
==See also==
      NeedToBeLearn:true,
*[[Bread Dough]]
      Time:50.0,
*[[Pie Dough]]
      Category:Cooking,
      OnGiveXP:Give10CookingXP,
    }
</nowiki>


{{Navbox/Consumables}}
{{Navbox/Consumables}}
[[Category:Food]]
[[Category:Non-Perishable_Food]]
[[Category:Version 34.28]]

Revision as of 17:49, 20 September 2018

Cake Batter
Cake Batter
Cake Preparation Cake
General
Category Food
Encumbrance
Heavy Load
0.3
Nutrition
Calories
Calories
800
Carbohydrates
Carbohydrates
50
Proteins
Proteins
8
Fat
Fat
48
Technical details
Item ID Base.CakeBatter

Cake batter is a non-perishable, inedible food item.

Usage

Cake batter cannot be consumed by the player, and is only used to make a cake.

Crafting

Cooking

Main article: Cooking

How to make

The player must first learn how to make cake batter before it is craftable. This can be done by either reading a Good Cooking Magazine, or starting with the chef occupation during character creation. Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer

What it can make

Cake batter is placed in a baking pan, producing a cake preparation, which can have more ingredients added to it before being cooked, and producing a cake. Template:Cooking table header |- |
| | | ||
||
||
||
||
||
||
||
||
||
||
Template:Crafting table footer


Code

From newitems.txt (Project Zomboid directory/media/scripts/) Retrieved: Build 40.16

	item CakeBatter
		Type		= Normal,
		DisplayName	= Cake Batter,
		Icon		= CakeBatter,
		Weight		= 0.3,
        	Carbohydrates 	= 50,
        	Proteins 	= 8,
        	Lipids 		= 48,
        	Calories 	= 800,

See also

Template:Navbox/Consumables