Difference between revisions of "Recipes"

From AAGRINDER wiki
Jump to navigationJump to search
imported>Maze
(Created page with "* To craft 1 of t (tiny tree), you need: 20 of A (leaves) * To craft 1 of O (button), you need: 1 of B (stone) and 1 of = (cable) * To craft 1 of S (switch), you need: 1 of O...")
 
m (Fix broken link)
 
(9 intermediate revisions by 5 users not shown)
Line 1: Line 1:
* To craft 1 of t (tiny tree), you need: 20 of A (leaves)
+
The recipe list was removed from this wiki because it changes too often for the wiki to keep up.
* To craft 1 of O (button), you need: 1 of B (stone) and 1 of = (cable)
+
 
* To craft 1 of S (switch), you need: 1 of O (button) and 2 of = (cable)
+
You can find the recipe list for the most recent game version in [https://gitlab.com/MRAAGH/aagrinder/-/blob/main/shared/inventory.js?ref_type=heads#L278 inventory.js]. Search for '''recipes''' and you will find the beginning of the list. Each recipe is in one line of code, specifying which items you need and what amount, and which item you get and what amount. To find out the meaning of each item code, use the item list which is in the same file as the recipe list.
* To craft 1 of M (motor), you need: 32 of = (cable)
 
* To craft 1 of G (grinder), you need: 1 of M (motor) and 1 of D (diamond)
 
* To craft 1 of G# (GRINDER), you need: 1 of G (grinder) and 20 of # (spooky)
 
* To craft 16 of = (cable), you need: 1 of R (ruby) and 16 of - (vine/grass)
 
* To craft 1 of % (crossing), you need: 2 of = (cable)
 

Latest revision as of 23:37, 20 January 2024

The recipe list was removed from this wiki because it changes too often for the wiki to keep up.

You can find the recipe list for the most recent game version in inventory.js. Search for recipes and you will find the beginning of the list. Each recipe is in one line of code, specifying which items you need and what amount, and which item you get and what amount. To find out the meaning of each item code, use the item list which is in the same file as the recipe list.