ah yes this lib mod will make everything better :clueless: (Close #41)

This commit is contained in:
gamma-delta 2022-03-28 10:08:09 -05:00
parent e9496e1453
commit 6cf4523d11
4 changed files with 12 additions and 15 deletions

View file

@ -300,7 +300,7 @@ e5c835d3866e8f5ecfb03c9e7c2c134a50951d67 data/hexcasting/recipes/amethyst_tiles.
5861845c3cd84021c7c19ac4f5b3bcc8e1bd3916 data/hexcasting/recipes/brainsweep/impetus_look.json
ab5d271371323d93ff6eed18179ee4f7fd8c939c data/hexcasting/recipes/brainsweep/impetus_rightclick.json
34d21369f8879dd084c3215e709ae987a994372f data/hexcasting/recipes/brainsweep/impetus_storedplayer.json
ea32d82fc3f2cb974038c311a3538aae481ea4c0 data/hexcasting/recipes/cypher.json
bc140b6c5d999b4bc5d12c302297f56bde3b161c data/hexcasting/recipes/cypher.json
33fed8fb8e34df026e1eea0df8161c7f842a8648 data/hexcasting/recipes/dye_colorizer_black.json
c36caf44a941a4abc44a15141eba8fe634c76fb8 data/hexcasting/recipes/dye_colorizer_blue.json
91348d69c8a49eae2bbaf9fb00b9604c43716527 data/hexcasting/recipes/dye_colorizer_brown.json
@ -345,7 +345,7 @@ f3a33396e071f3afd61eadab2aabdb9acf2ae775 data/hexcasting/recipes/slate.json
4f06f5f4ae181c8bb6b993d7b6047cd9ca7afbce data/hexcasting/recipes/spellbook.json
ef936e73eea3be9d53c4ac5c78d1477675550375 data/hexcasting/recipes/stonecutting/amethyst_tiles.json
d14cf2f8f0895a5b6dc09b7582c0abf1c2514adf data/hexcasting/recipes/sub_sandwich.json
7716dd89b2c4141dd7ecdb9f6adefe694ff22d70 data/hexcasting/recipes/trinket.json
67b16cdb26f40234a7d4e49357724f24c197580a data/hexcasting/recipes/trinket.json
14d6be5d47b54676a349564ea32c045c76c39b45 data/hexcasting/recipes/uuid_colorizer.json
0521d57838cb3e9795fc02ce47aa58db3b0188f9 data/hexcasting/recipes/wand.json
f930dbc5b41d42150d388e39b29b940229658809 data/minecraft/tags/blocks/crystal_sound_blocks.json

View file

@ -1,17 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"DCD",
" C ",
"CIC",
"DCD"
" C "
],
"key": {
"C": {
"tag": "forge:ingots/copper"
},
"D": {
"tag": "forge:ingots/copper"
},
"I": {
"item": "hexcasting:amethyst_dust"
}

View file

@ -1,17 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"DCD",
" C ",
"CIC",
"DCD"
" C "
],
"key": {
"C": {
"tag": "forge:ingots/iron"
},
"D": {
"tag": "forge:ingots/iron"
},
"I": {
"item": "minecraft:amethyst_shard"
}

View file

@ -65,11 +65,14 @@ public class HexRecipes extends PaucalRecipeProvider {
.unlockedBy("has_focus", has(HexItems.FOCUS.get()))
.unlockedBy("has_chorus", has(Items.CHORUS_FRUIT)).save(recipes);
ring(HexItems.CYPHER.get(), 1, Ingredient.of(Tags.Items.INGOTS_COPPER),
ringCornerless(HexItems.CYPHER.get(), 1,
Ingredient.of(Tags.Items.INGOTS_COPPER),
Ingredient.of(HexItems.AMETHYST_DUST.get()))
.unlockedBy("has_item", has(HexItems.WAND.get())).save(recipes);
ring(HexItems.TRINKET.get(), 1, Ingredient.of(Tags.Items.INGOTS_IRON), Ingredient.of(Items.AMETHYST_SHARD))
ringCornerless(HexItems.TRINKET.get(), 1,
Ingredient.of(Tags.Items.INGOTS_IRON),
Ingredient.of(Items.AMETHYST_SHARD))
.unlockedBy("has_item", has(HexItems.WAND.get())).save(recipes);
ShapedRecipeBuilder.shaped(HexItems.ARTIFACT.get())
@ -256,7 +259,7 @@ public class HexRecipes extends PaucalRecipeProvider {
HexBlocks.DIRECTRIX_REDSTONE.get().defaultBlockState())
.unlockedBy("enlightenment", enlightenment)
.save(recipes, modLoc("brainsweep/directrix_redstone"));
new BrainsweepRecipeBuilder(StateIngredientHelper.of(Blocks.AMETHYST_BLOCK),
new VillagerIngredient(null, null, 3),
Blocks.BUDDING_AMETHYST.defaultBlockState())