-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7abb5f
commit b6671b0
Showing
23 changed files
with
287 additions
and
20 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
enderio-conduits/src/generated/resources/.cache/374ea09bacfd9990d354c87c776e153586f6906e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
enderio-machines/src/generated/resources/data/enderio/advancement/recipes/misc/vat.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parent": "minecraft:recipes/root", | ||
"criteria": { | ||
"has_ingredient": { | ||
"conditions": { | ||
"items": [ | ||
{ | ||
"items": "minecraft:barrel" | ||
} | ||
] | ||
}, | ||
"trigger": "minecraft:inventory_changed" | ||
}, | ||
"has_the_recipe": { | ||
"conditions": { | ||
"recipe": "enderio:vat" | ||
}, | ||
"trigger": "minecraft:recipe_unlocked" | ||
} | ||
}, | ||
"requirements": [ | ||
[ | ||
"has_the_recipe", | ||
"has_ingredient" | ||
] | ||
], | ||
"rewards": { | ||
"recipes": [ | ||
"enderio:vat" | ||
] | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
enderio-machines/src/generated/resources/data/enderio/data_maps/item/vat_reagent.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
enderio-machines/src/generated/resources/data/enderio/eio_soul/engine/minecraft_creeper.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"entity": "minecraft:creeper", | ||
"fluid": "enderio:fluid_rocket_fuel_still", | ||
"power/mb": 500, | ||
"tick/mb": 15 | ||
} |
14 changes: 14 additions & 0 deletions
14
...chines/src/generated/resources/data/enderio/recipe/fermenting/fluid_fire_water_still.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "enderio:vat_fermenting", | ||
"input": { | ||
"amount": 1000, | ||
"fluid": "enderio:fluid_hootch_still" | ||
}, | ||
"left_reagent": "enderio:blaze_powder", | ||
"output": { | ||
"amount": 1000, | ||
"id": "enderio:fluid_fire_water_still" | ||
}, | ||
"right_reagent": "c:dusts/redstone", | ||
"ticks": 150 | ||
} |
14 changes: 14 additions & 0 deletions
14
...s/src/generated/resources/data/enderio/recipe/fermenting/fluid_liquid_sunshine_still.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "enderio:vat_fermenting", | ||
"input": { | ||
"amount": 1000, | ||
"tag": "minecraft:water" | ||
}, | ||
"left_reagent": "enderio:natural_lights", | ||
"output": { | ||
"amount": 1000, | ||
"id": "enderio:fluid_liquid_sunshine_still" | ||
}, | ||
"right_reagent": "enderio:sunflower", | ||
"ticks": 100 | ||
} |
14 changes: 14 additions & 0 deletions
14
...generated/resources/data/enderio/recipe/fermenting/fluid_nutrient_distillation_still.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "enderio:vat_fermenting", | ||
"input": { | ||
"amount": 1000, | ||
"tag": "minecraft:water" | ||
}, | ||
"left_reagent": "minecraft:meat", | ||
"output": { | ||
"amount": 250, | ||
"id": "enderio:fluid_nutrient_distillation_still" | ||
}, | ||
"right_reagent": "c:crops", | ||
"ticks": 100 | ||
} |
14 changes: 14 additions & 0 deletions
14
...hines/src/generated/resources/data/enderio/recipe/fermenting/fluid_rocket_fuel_still.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"type": "enderio:vat_fermenting", | ||
"input": { | ||
"amount": 1000, | ||
"fluid": "enderio:fluid_hootch_still" | ||
}, | ||
"left_reagent": "enderio:explosives", | ||
"output": { | ||
"amount": 1000, | ||
"id": "enderio:fluid_rocket_fuel_still" | ||
}, | ||
"right_reagent": "c:dusts/redstone", | ||
"ticks": 150 | ||
} |
33 changes: 33 additions & 0 deletions
33
enderio-machines/src/generated/resources/data/enderio/recipe/vat.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"category": "misc", | ||
"key": { | ||
"A": { | ||
"tag": "c:ingots/copper_alloy" | ||
}, | ||
"B": { | ||
"item": "minecraft:barrel" | ||
}, | ||
"C": { | ||
"item": "enderio:void_chassis" | ||
}, | ||
"M": { | ||
"tag": "c:gears/iron" | ||
}, | ||
"R": { | ||
"tag": "c:ingots/redstone_alloy" | ||
}, | ||
"S": { | ||
"tag": "c:ingots/dark_steel" | ||
} | ||
}, | ||
"pattern": [ | ||
"SBS", | ||
"ACA", | ||
"MRM" | ||
], | ||
"result": { | ||
"count": 1, | ||
"id": "enderio:vat" | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
enderio-machines/src/generated/resources/data/enderio/tags/item/blaze_powder.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:blaze_powder" | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
enderio-machines/src/generated/resources/data/enderio/tags/item/explosives.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"values": [ | ||
"minecraft:tnt", | ||
"minecraft:firework_star", | ||
"minecraft:firework_rocket" | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
enderio-machines/src/generated/resources/data/enderio/tags/item/natural_lights.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"values": [ | ||
"minecraft:glowstone_dust", | ||
"minecraft:glowstone", | ||
"minecraft:sea_lantern", | ||
"minecraft:sea_pickle", | ||
"minecraft:glow_lichen", | ||
"minecraft:glow_berries", | ||
"minecraft:glow_ink_sac" | ||
] | ||
} |
5 changes: 5 additions & 0 deletions
5
enderio-machines/src/generated/resources/data/enderio/tags/item/sunflower.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"values": [ | ||
"minecraft:sunflower" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.