Skip to content

Commit

Permalink
Add recipes for Exposer & JAC
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyWing committed May 5, 2024
1 parent 22ff03b commit 6ca7abe
Show file tree
Hide file tree
Showing 4 changed files with 131 additions and 0 deletions.
52 changes: 52 additions & 0 deletions src/main/resources/assets/nae2/recipes/block/exposer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"conditions": [
{
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "nae2:exposer"
},
{
"type": "appliedenergistics2:material_exists",
"material": "material.formation_core"
},
{
"type": "appliedenergistics2:material_exists",
"material": "material.singularity"
},
{
"type": "appliedenergistics2:part_exists",
"part": "part.storage_bus"
}
]
}
],
"result": {
"item": "nae2:exposer"
},
"type": "forge:ore_shaped",
"pattern": [
"ibi",
"fsf",
"ibi"
],
"key": {
"i": {
"type": "forge:ore_dict",
"ore": "ingotIron"
},
"f": {
"type": "appliedenergistics2:part",
"part": "material.formation_core"
},
"s": {
"type": "appliedenergistics2:part",
"part": "material.singularity"
},
"b": {
"type": "appliedenergistics2:part",
"part": "part.storage_bus"
}
}
}
23 changes: 23 additions & 0 deletions src/main/resources/assets/nae2/recipes/block/exposer_alt.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"conditions": [
{
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "nae2:exposer"
}
]
}
],
"result": {
"item": "nae2:exposer"
},
"type": "forge:ore_shapeless",
"ingredients": [
{
"type": "nae2:part",
"name": "exposer"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"conditions": [
{
"type": "forge:and",
"values": [
{
"type": "appliedenergistics2:material_exists",
"material": "material.card_crafting"
}
]
}
],
"result": {
"item": "nae2:upgrade",
"data": 1,
"count": 1
},
"type": "forge:ore_shapeless",
"ingredients": [
{
"type": "appliedenergistics2:part",
"part": "material.card_crafting"
},
{
"type": "forge:ore_dict",
"ore": "gearWood"
}
]
}
27 changes: 27 additions & 0 deletions src/main/resources/assets/nae2/recipes/part/exposer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"conditions": [
{
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "nae2:exposer"
}
]
}
],
"result": {
"type": "part",
"name": "exposer",
"count": 1
},
"type": "nae2:shaped_recipe",
"pattern": [
"e"
],
"key": {
"e": {
"item": "nae2:exposer"
}
}
}

0 comments on commit 6ca7abe

Please sign in to comment.