Cooking: Difference between revisions
mNo edit summary |
mNo edit summary Tag: Reverted |
||
| Line 10: | Line 10: | ||
|group by=Name | |group by=Name | ||
|format=table | |format=table | ||
|fields=CONCAT('[[File:',Name,'.png{{!}}60px{{!}}link=',Name,']]')=Image,_pageName=Name,CONCAT('{{((}}recipe{{!}}',Mat1,'{{!}}',Amt1,'{{!}}',Mat2,'{{!}}',Amt2,'{{!}}',Mat3,'{{!}}',Amt3,'{{!}}',Mat4,'{{!}}',Amt4,'{{))}}')=Recipe,CONCAT('{{((}}Machine check{{!}}',Machine,'{{))}}')=Machine,CONCAT('{{((}}recipe book check{{!}}',Collection,'{{))}}')=Collection,CONCAT('{{((}}formatnum:',SellPrice,'{{))}}{{coin}}')=Sell Price | |fields=CONCAT('[[File:',Name,'.png{{!}}60px{{!}}link=',Name,']]')=Image,_pageName=Name,CONCAT('{{((}}recipe{{!}}',Mat1,'{{!}}',Amt1,'{{!}}',Mat2,'{{!}}',Amt2,'{{!}}',Mat3,'{{!}}',Amt3,'{{!}}',Mat4,'{{!}}',Amt4,'{{!}}',Mat1Alt,'{{!}}',Amt1Alt,'{{!}}',Mat2Alt,'{{!}}',Amt2Alt,'{{))}}')=Recipe,CONCAT('{{((}}Machine check{{!}}',Machine,'{{))}}')=Machine,CONCAT('{{((}}recipe book check{{!}}',Collection,'{{))}}')=Collection,CONCAT('{{((}}formatnum:',SellPrice,'{{))}}{{coin}}')=Sell Price | ||
|order by=SortIndex,Name ASC | |order by=SortIndex,Name ASC | ||
}} | }} | ||
[[Category:Content]][[Category:Game mechanics]] | [[Category:Content]][[Category:Game mechanics]] | ||
Revision as of 13:33, 20 July 2024
| This article or section is a stub. You can help Everafter Falls Wiki by expanding it. Comment: testing cargo, a proper page to be written later -K |
Cooking is a process of combining raw and processed ingredients using kitchen equipment. The created food can be donated to the Bakery collections or sold for profit.
Starting out
Cooking mechanic is not available at the start of the game and requires purchasing kitchen station at Hersha's Bakery. In addition to cooking stations, the Bakery also offers recipe books for sale; however, the player does not need to own recipe books to successfully cook, they are only used for reference.
Recipes
Function: CargoSQLQuery::run
Query: SELECT CONCAT('File:',Name,'.png') AS `Image`,`_pageName` AS `Name`,CONCAT('{{recipe|',Mat1,'|',Amt1,'|',Mat2,'|',Amt2,'|',Mat3,'|',Amt3,'|',Mat4,'|',Amt4,'|',Mat1Alt,'|',Amt1Alt,'|',Mat2Alt,'|',Amt2Alt,'}}') AS `Recipe`,CONCAT('{{Machine check|',Machine,'}}') AS `Machine`,CONCAT('{{recipe book check|',Collection,'}}') AS `Collection`,CONCAT('{{formatnum:',SellPrice,'}}
') AS `Sell Price` FROM `mwex_cargo__Items` WHERE type="Cooked food" GROUP BY `Name` ORDER BY `SortIndex`,`Name` LIMIT 100
