Cake Batter: Difference between revisions

From PZwiki
(Update of NavBar.)
(Updated info to the current game version, and added some hyperlinks)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{languages}}
{{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 -->
<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 -->
<div style="float: right;background: #CEF2E0;border: 1px solid #A3BFB1; margin: -30pt -10.5pt">    '''Page Updated @ Version: 34.28'''    </div><!-- Code for Version Tag at top -->
<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 -->
<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 -->
<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 -->
{{Consumables
{{Consumables
Line 8: Line 8:
|weight = 0.3
|weight = 0.3
}}
}}
Cake Batter is a inedible [[Food#Non_Perishable|non perishable]] food item that is crafted from flour, butter, sugar, a egg, yeast and milk. Cake Batter is the base for making a cake, which once created, ingredients can be added and cooked to create a fulfilling food.
[[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.
 
Cake Batter requires either the profession of Chef to be picked at the start, or for the player to locate a [[Recipe_Magazines|Good Cooking]] magazine and read it for the recipe to be unlocked.


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]].
<br>
== Nutritional Information ==
== Nutritional Information ==


'''It's Nutritional Values are as follows:'''<br>
'''Its Nutritional Values are as follows:'''<br>
Carbohydrates = 50 <br>
Carbohydrates = 50 <br>
Proteins = 8 <br>
Proteins = 8 <br>
Lipids = 48 <br>
Lipids = 48 <br>
Calories = 800 <br><br>
Calories = 800 <br><br>
== Crafting ==
== Crafting ==


Line 33: Line 32:




== Coded Recipe ==
== Code ==
    recipe Make Cake Batter
=== Item ===
<nowiki>
item CakeBatter
    {
Type = Normal,
DisplayName = Cake Batter,
Icon = CakeBatter,
Weight = 0.3,
        Carbohydrates = 50,
        Proteins = 8,
        Lipids = 48,
        Calories = 800,
    }
</nowiki>
=== Recipe ===
<nowiki>
recipe Make Cake Batter
    {
       Bowl,
       Bowl,
       Flour=2,
       Flour=2,
Line 41: Line 57:
       Egg/WildEggs,
       Egg/WildEggs,
       Yeast,
       Yeast,
       Milk/farming.Milk,
       Milk,


       Result:CakeBatter,
       Result:CakeBatter,
Line 47: Line 63:
       Time:50.0,
       Time:50.0,
       Category:Cooking,
       Category:Cooking,
 
      OnGiveXP:Give10CookingXP,
== Code ==
     }
<nowiki>
     item CakeBatter
Type = Normal,
DisplayName = Cake Batter,
Icon = CakeBatter,
Weight = 0.3,
        Carbohydrates = 50,
        Proteins = 8,
        Lipids = 48,
        Calories = 800,
</nowiki>
</nowiki>



Revision as of 18:32, 16 April 2018


Page Updated @ Version: 39.45

Cake batter is an inedible non-perishable food item that is crafted from flour, butter, sugar, an egg, yeast, 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.

In order to learn the pie dough recipe, the player must have either the cook trait, or read the good cooking magazine.

Nutritional Information

Its Nutritional Values are as follows:
Carbohydrates = 50
Proteins = 8
Lipids = 48
Calories = 800

Crafting

Name Recipe Description





































Code

Item

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

Recipe

recipe Make Cake Batter
    {
       Bowl,
       Flour=2,
       Butter;15,
       Sugar=3,
       Egg/WildEggs,
       Yeast,
       Milk,

       Result:CakeBatter,
       NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       OnGiveXP:Give10CookingXP,
    }

Template:Navbox/Consumables