Skip to content

Commit

Permalink
forgot to push this lol
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePansmith committed May 28, 2024
1 parent 18389da commit 271b55c
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,29 @@ protected void buildRecipes(Consumer<FinishedRecipe> pWriter) {
.unlockedBy("has_ingredient", InventoryChangeTrigger.TriggerInstance.hasItems(EIOItems.CONDUIT_BINDER))
.save(pWriter);

ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, ConduitItems.SPEED_UPGRADE)
.pattern("AAA")
.pattern("IPI")
.pattern("ITI")
.define('A', EIOTags.Items.INGOTS_REDSTONE_ALLOY)
.define('I', Items.IRON_INGOT)
.define('P', Items.PISTON)
.define('T', Items.REDSTONE_TORCH)
.unlockedBy("has_ingredient", InventoryChangeTrigger.TriggerInstance.hasItems(EIOItems.CONDUIT_BINDER))
.save(pWriter);

ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, ConduitItems.SPEED_DOWNGRADE)
.pattern("AAA")
.pattern("IPI")
.pattern("ITI")
.define('A', EIOTags.Items.INGOTS_REDSTONE_ALLOY)
.define('I', Items.IRON_INGOT)
.define('P', Items.SLIME_BALL)
.define('T', Items.STICK)
.unlockedBy("has_ingredient", InventoryChangeTrigger.TriggerInstance.hasItems(EIOItems.CONDUIT_BINDER))
.save(pWriter);


ShapedRecipeBuilder.shaped(RecipeCategory.BUILDING_BLOCKS, ConduitItems.PRESSURIZED_FLUID, 8)
.pattern("BBB")
.pattern("GGG")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_ingredient": {
"conditions": {
"items": [
{
"items": [
"enderio:conduit_binder"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "enderio:extract_speed_downgrade"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_ingredient",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"enderio:extract_speed_downgrade"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_ingredient": {
"conditions": {
"items": [
{
"items": [
"enderio:conduit_binder"
]
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "enderio:extract_speed_upgrade"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_ingredient",
"has_the_recipe"
]
],
"rewards": {
"recipes": [
"enderio:extract_speed_upgrade"
]
},
"sends_telemetry_event": false
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"A": {
"tag": "forge:ingots/redstone_alloy"
},
"I": {
"item": "minecraft:iron_ingot"
},
"P": {
"item": "minecraft:slime_ball"
},
"T": {
"item": "minecraft:stick"
}
},
"pattern": [
"AAA",
"IPI",
"ITI"
],
"result": {
"item": "enderio:extract_speed_downgrade"
},
"show_notification": true
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"type": "minecraft:crafting_shaped",
"category": "building",
"key": {
"A": {
"tag": "forge:ingots/redstone_alloy"
},
"I": {
"item": "minecraft:iron_ingot"
},
"P": {
"item": "minecraft:piston"
},
"T": {
"item": "minecraft:redstone_torch"
}
},
"pattern": [
"AAA",
"IPI",
"ITI"
],
"result": {
"item": "enderio:extract_speed_upgrade"
},
"show_notification": true
}

0 comments on commit 271b55c

Please sign in to comment.