Pie Dough: 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|Pie Dough}}
<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
}}
}}
Pie Dough is a inedible [[Food#Non_Perishable|non perishable]] food item that is crafted from butter, salt, water and flour. Pie Dough is the base for making a pie in a baking pan, which once created ingredients can be added and cooked to create a fulfilling food.
[[Pie Dough|Pie dough]] is an inedible [[Food#Non-Perishable|non-perishable]] food item that is crafted from [[butter]], [[salt]], [[water]] and [[flour]]. Pie dough is the base for making a pie in a [[Baking Pan|baking pan]], which once created, ingredients can be added and cooked to create a fulfilling food.
 
Pie Dough 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 29: Line 28:
{{RecipeLookup|2033}}
{{RecipeLookup|2033}}
{{RecipeLookup|2036}}
{{RecipeLookup|2036}}
{{RecipeLookup|2040}}
|}
|}




== Coded Recipe ==
== Code ==
    recipe Place Pie in Baking Pan
=== Item ===
 
<nowiki>
       PieDough,
item PieDough
       BakingPan,
    {
       keep RollingPin,
        Type = Normal,
        DisplayName = Pie Dough,
        Icon = Dough,
        Weight = 0.3,
        Carbohydrates = 50,
        Proteins = 8,
        Lipids = 48,
        Calories = 800,
    }
</nowiki>
=== Recipe ===
<nowiki>
recipe Make Pie Dough
    {
       Water=2,
      Flour=2,
       Butter;15,
       Salt;2,


       Result:PiePrep,
       Result:PieDough,
       Time:30.0,
      NeedToBeLearn:true,
       Time:50.0,
       Category:Cooking,
       Category:Cooking,
 
      OnGiveXP:Give10CookingXP,
== Code ==
    }
<nowiki>
item PieDough
        Type = Normal,
        DisplayName = Pie Dough,
        Icon = Dough,
        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
   Navigation - Main Index -> The Game World -> Items -> Consumables -> Food -> Non Perishable Foods -> Pie Dough   

Pie dough is an inedible non-perishable food item that is crafted from butter, salt, water and flour. Pie dough is the base for making a pie in a baking pan, 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 PieDough
    {
        Type		= Normal,
        DisplayName	= Pie Dough,
        Icon		= Dough,
        Weight		= 0.3,
        Carbohydrates 	= 50,
        Proteins 	= 8,
        Lipids 		= 48,
        Calories 	= 800,
    }

Recipe

recipe Make Pie Dough
    {
       Water=2,
       Flour=2,
       Butter;15,
       Salt;2,

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

Template:Navbox/Consumables