Fix parts

This commit is contained in:
ALongStringOfNumbers
2021-03-27 01:26:29 -07:00
parent f1d50eca1a
commit 6878bfa4b0
174 changed files with 630 additions and 583 deletions
@@ -0,0 +1,36 @@
package appeng.recipes.factories.conditions;
import appeng.core.Api;
import appeng.core.AppEng;
import com.google.gson.JsonObject;
import net.minecraft.util.JsonUtils;
import net.minecraftforge.common.crafting.IConditionFactory;
import net.minecraftforge.common.crafting.JsonContext;
import java.util.function.BooleanSupplier;
public class PartExists implements IConditionFactory {
private static final String JSON_MATERIAL_KEY = "part";
@Override
public BooleanSupplier parse(JsonContext jsonContext, JsonObject jsonObject )
{
final boolean result;
if( JsonUtils.isString( jsonObject, JSON_MATERIAL_KEY ) )
{
final String part = JsonUtils.getString( jsonObject, JSON_MATERIAL_KEY );
final Object item = Api.INSTANCE.registries().recipes().resolveItem( AppEng.MOD_ID, part );
result = item != null;
}
else
{
result = false;
}
return () -> result;
}
}
@@ -1,7 +1,8 @@
{
"conditions": {
"material_exists": "appeng.recipes.factories.conditions.MaterialExists",
"features": "appeng.recipes.factories.conditions.Features"
"features": "appeng.recipes.factories.conditions.Features",
"part_exists": "appeng.recipes.factories.conditions.PartExists"
},
"ingredients": {
"part": "appeng.recipes.factories.ingredients.PartIngredientFactory"
@@ -1,8 +1,8 @@
{
"conditions": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:crystal_seed.certus"
"type": "appliedenergistics2:part_exists",
"part": "crystal_seed.certus"
}
],
"result": {
@@ -1,8 +1,8 @@
{
"conditions": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:crystal_seed.fluix"
"type": "appliedenergistics2:part_exists",
"part": "crystal_seed.fluix"
}
],
"result": {
@@ -1,8 +1,8 @@
{
"conditions": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:crystal_seed.nether"
"type": "appliedenergistics2:part_exists",
"part": "crystal_seed.nether"
}
],
"result": {
@@ -12,8 +12,8 @@
"item": "appliedenergistics2:quartz_glass"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
},
{
"type": "minecraft:item_exists",
@@ -16,8 +16,8 @@
"material": "material.logic_processor"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -16,8 +16,8 @@
"material": "material.engineering_processor"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
},
{
"type": "appliedenergistics2:material_exists",
@@ -20,8 +20,8 @@
"material": "material.engineering_processor"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -16,8 +16,8 @@
"material": "material.engineering_processor"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -12,8 +12,8 @@
"item": "appliedenergistics2:quartz_glass"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -8,8 +8,8 @@
"item": "appliedenergistics2:chest"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -8,8 +8,8 @@
"item": "appliedenergistics2:drive"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
},
{
"type": "appliedenergistics2:material_exists",
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.brown"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.brown"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.cyan"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.cyan"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.green"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.green"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.light_blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.light_blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.light_gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.light_gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.lime"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.lime"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.magenta"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.magenta"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.orange"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.orange"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.pink"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.pink"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.purple"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.purple"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.red"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.red"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.white"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.white"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.yellow"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.yellow"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.brown"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.brown"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.cyan"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.cyan"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.green"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.green"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.light_blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.light_blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.light_gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.light_gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.lime"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.lime"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.magenta"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.magenta"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.orange"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.orange"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.pink"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.pink"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.purple"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.purple"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.red"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.red"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.white"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.white"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.yellow"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.yellow"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.brown"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.brown"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.cyan"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.cyan"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_covered.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_covered.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.green"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.green"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.light_blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.light_blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.light_gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.light_gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.lime"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.lime"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.magenta"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.magenta"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.orange"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.orange"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.pink"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.pink"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.purple"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.purple"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.red"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.red"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.white"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.white"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.yellow"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.yellow"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_dense_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_dense_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.brown"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.brown"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.cyan"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.cyan"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:part.quartz_fiber"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "part.quartz_fiber"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.green"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.green"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.light_blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.light_blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.light_gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.light_gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.lime"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.lime"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.magenta"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.magenta"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.orange"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.orange"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.pink"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.pink"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.purple"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.purple"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.red"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.red"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.white"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.white"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.yellow"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.yellow"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_glass.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_glass.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.black"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.brown"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.brown"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.cyan"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.cyan"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_covered.black"
"type": "appliedenergistics2:part_exists",
"part": "cable_covered.fluix"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.green"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.green"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.light_blue"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.light_blue"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.light_gray"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.light_gray"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.lime"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.lime"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.magenta"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.magenta"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.orange"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.orange"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.pink"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.pink"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}
@@ -4,12 +4,12 @@
"type": "forge:and",
"values": [
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.purple"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.purple"
},
{
"type": "minecraft:item_exists",
"item": "appliedenergistics2:part:cable_smart.fluix"
"type": "appliedenergistics2:part_exists",
"part": "cable_smart.fluix"
}
]
}

Some files were not shown because too many files have changed in this diff Show More