Difference between revisions of "Recipes"

From AAGRINDER wiki
Jump to navigationJump to search
(Update motor recipe)
m (Fix broken link)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
The following list specifies how [[item list|items]] can be crafted into other items.
+
The recipe list was removed from this wiki because it changes too often for the wiki to keep up.
To do this, you should open your [[inventory]], highlight the item you want to craft, then press the C key or click on the area that says "click to craft".
 
  
{| class="wikitable"
+
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.
|-
 
! Item !! Ingredients
 
|-
 
| '''t''' (tree sapling) || 20× '''A'''
 
|-
 
| '''O''' (button) || '''B''' (stone) + '''=''' ([[circuits|cable]])
 
|-
 
| '''S''' (switch) || 2×'''=''' (cable) + '''O''' (button)
 
|-
 
| '''M''' (motor) || 16×'''=''' (cable) + 8x'''m''' (magnetite)
 
|-
 
| '''G''' (grinder) || '''M''' (motor) + '''D''' (diamond)
 
|-
 
| '''G#''' (GRINDER) || '''G''' (grinder) + 20×'''#''' (spooky)
 
|-
 
| 16×'''=''' (cable) || '''R''' (ruby) + 16×'''-''' (vine/grass)
 
|-
 
| '''%''' (crossing) || 2×'''=''' (cable)
 
|-
 
| '''♐︎''' (block inspector) || '''m''' (magnetite)
 
|-
 
| '''?''' (cosmetic block shapeshifter) || 10×'''.''' (pebble)
 
|-
 
| '''▀ ''' (sign) || 10×'''.''' (pebble) + 5×'''g''' (graphite)
 
|-
 
| '''h''' (chest) || 16×'''H''' (wood)
 
|}
 

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.