simple-tech

Minecraft: Better than Adventure! mod that adds simple blocks to automate tasks
git clone git://memoryshards.xyz/simple-tech.git
Log | Files | Refs | README | LICENSE

workbench.json (3991B)


      1 [
      2   {
      3     "name": "simpletech:workbench/fan",
      4     "type": "minecraft:crafting/shaped",
      5     "pattern": [
      6       "CCC",
      7       "CIC",
      8       "CRC"
      9     ],
     10     "symbols": [
     11       {
     12         "symbol": "C",
     13         "stack": {
     14           "key": "tile.cobble.stone",
     15           "amount": 1,
     16           "meta": 0
     17         }
     18       },
     19       {
     20         "symbol": "I",
     21         "stack": {
     22           "key": "item.ingot.iron",
     23           "amount": 1,
     24           "meta": 0
     25         }
     26       },
     27       {
     28         "symbol": "R",
     29         "stack": {
     30           "key": "item.dust.redstone",
     31           "amount": 1,
     32           "meta": 0
     33         }
     34       }
     35     ],
     36     "result": {
     37       "key": "tile.simpletech.fan.unpowered",
     38       "amount": 1,
     39       "meta": 0
     40     },
     41     "consumeContainers": true
     42   },
     43   {
     44     "name": "simpletech:workbench/light_sensor",
     45     "type": "minecraft:crafting/shaped",
     46     "pattern": [
     47       "G",
     48       "Q",
     49       "S"
     50     ],
     51     "symbols": [
     52       {
     53         "symbol": "G",
     54         "stack": {
     55           "key": "tile.glass",
     56           "amount": 1,
     57           "meta": 0
     58         }
     59       },
     60       {
     61         "symbol": "Q",
     62         "stack": {
     63           "key": "item.quartz",
     64           "amount": 1,
     65           "meta": 0
     66         }
     67       },
     68       {
     69         "symbol": "S",
     70         "stack": {
     71           "key": "tile.slab.planks.oak",
     72           "amount": 1,
     73           "meta": 0
     74         }
     75       }
     76     ],
     77     "result": {
     78       "key": "tile.simpletech.lightsensor",
     79       "amount": 1,
     80       "meta": 0
     81     },
     82     "consumeContainers": true
     83   },
     84   {
     85     "name": "simpletech:workbench/allocator",
     86     "type": "minecraft:crafting/shaped",
     87     "pattern": [
     88       "CRC",
     89       "CGC",
     90       "CRC"
     91     ],
     92     "symbols": [
     93       {
     94         "symbol": "C",
     95         "stack": {
     96           "key": "tile.cobble.stone",
     97           "amount": 1,
     98           "meta": 0
     99         }
    100       },
    101       {
    102         "symbol": "R",
    103         "stack": {
    104           "key": "item.dust.redstone",
    105           "amount": 1,
    106           "meta": 0
    107         }
    108       },
    109       {
    110         "symbol": "G",
    111         "stack": {
    112           "key": "item.ingot.gold",
    113           "amount": 1,
    114           "meta": 0
    115         }
    116       }
    117     ],
    118     "result": {
    119       "key": "tile.simpletech.allocator",
    120       "amount": 1,
    121       "meta": 0
    122     },
    123     "consumeContainers": true
    124   },
    125   {
    126     "name": "simpletech:workbench/jump_pad",
    127     "type": "minecraft:crafting/shapeless",
    128     "inputs": [
    129       {
    130         "stack": {
    131           "key": "item.slimeball",
    132           "amount": 1,
    133           "meta": 0
    134         }
    135       },
    136       {
    137         "stack": {
    138           "key": "tile.slab.planks.oak",
    139           "amount": 1,
    140           "meta": 0
    141         }
    142       }
    143     ],
    144     "result": {
    145       "key": "tile.simpletech.jumppad",
    146       "amount": 1,
    147       "meta": 0
    148     }
    149   },
    150   {
    151     "name": "simpletech:workbench/trapped_chest",
    152     "type": "minecraft:crafting/shapeless",
    153     "inputs": [
    154       {
    155         "stack": {
    156           "key": "tile.chest.planks.oak",
    157           "amount": 1,
    158           "meta": 0
    159         }
    160       },
    161       {
    162         "stack": {
    163           "key": "item.dust.redstone",
    164           "amount": 1,
    165           "meta": 0
    166         }
    167       }
    168     ],
    169     "result": {
    170       "key": "tile.simpletech.chest.trapped",
    171       "amount": 1,
    172       "meta": 0
    173     }
    174   },
    175   {
    176     "name": "simpletech:workbench/not_gate",
    177     "type": "minecraft:crafting/shaped",
    178     "pattern": [
    179       "   ",
    180       "RRT",
    181       "SSS"
    182     ],
    183     "symbols": [
    184       {
    185         "symbol": "T",
    186         "stack": {
    187           "key": "tile.torch.redstone.active",
    188           "amount": 1,
    189           "meta": 0
    190         }
    191       },
    192       {
    193         "symbol": "S",
    194         "stack": {
    195           "key": "tile.stone",
    196           "amount": 1,
    197           "meta": 0
    198         }
    199       },
    200       {
    201         "symbol": "R",
    202         "stack": {
    203           "key": "item.dust.redstone",
    204           "amount": 1,
    205           "meta": 0
    206         }
    207       }
    208     ],
    209     "result": {
    210       "key": "item.simpletech.not.gate",
    211       "amount": 1,
    212       "meta": 0
    213     },
    214     "consumeContainers": true
    215   }
    216 ]