fix bowlglimmer and ligature costs, re #360, closes #351

This commit is contained in:
petrak@ 2023-01-22 20:06:54 -06:00
parent c6c862d0f4
commit 9d2d56916a
48 changed files with 154 additions and 163 deletions

View file

@ -23,6 +23,16 @@ import net.minecraft.world.item.Items;
import java.util.function.Consumer;
public class HexAdvancements extends PaucalAdvancementProvider {
public static final OvercastTrigger.Instance ENLIGHTEN =
new OvercastTrigger.Instance(EntityPredicate.Composite.ANY,
MinMaxBounds.Ints.ANY,
// add a little bit of slop here. use 80% or more health ...
MinMaxBounds.Doubles.atLeast(0.8),
// and be left with under 1 healthpoint (half a heart)
// TODO this means if 80% of your health is less than half a heart, so if you have 2.5 hearts or
// less, you can't become enlightened.
MinMaxBounds.Doubles.between(Double.MIN_NORMAL, 1.0));
public HexAdvancements(DataGenerator generatorIn) {
super(generatorIn, HexAPI.MOD_ID);
}
@ -83,15 +93,7 @@ public class HexAdvancements extends PaucalAdvancementProvider {
null,
FrameType.CHALLENGE, true, true, true))
.parent(opened_eyes)
.addCriterion("health_used",
new OvercastTrigger.Instance(EntityPredicate.Composite.ANY,
MinMaxBounds.Ints.ANY,
// add a little bit of slop here. use 80% or more health ...
MinMaxBounds.Doubles.atLeast(0.8),
// and be left with under 1 healthpoint (half a heart)
// TODO this means if 80% of your health is less than half a heart, so if you have 2.5 hearts or
// less, you can't become enlightened.
MinMaxBounds.Doubles.between(Double.MIN_NORMAL, 1.0)))
.addCriterion("health_used", ENLIGHTEN)
.save(consumer, prefix("enlightenment"));
var loreRoot = Advancement.Builder.advancement()

View file

@ -1,7 +1,6 @@
package at.petrak.hexcasting.datagen.recipe;
import at.petrak.hexcasting.api.HexAPI;
import at.petrak.hexcasting.api.advancements.OvercastTrigger;
import at.petrak.hexcasting.api.misc.MediaConstants;
import at.petrak.hexcasting.api.mod.HexTags;
import at.petrak.hexcasting.common.items.ItemStaff;
@ -14,6 +13,7 @@ import at.petrak.hexcasting.common.recipe.ingredient.StateIngredientHelper;
import at.petrak.hexcasting.common.recipe.ingredient.brainsweep.EntityTagIngredient;
import at.petrak.hexcasting.common.recipe.ingredient.brainsweep.EntityTypeIngredient;
import at.petrak.hexcasting.common.recipe.ingredient.brainsweep.VillagerIngredient;
import at.petrak.hexcasting.datagen.HexAdvancements;
import at.petrak.hexcasting.datagen.IXplatConditionsBuilder;
import at.petrak.hexcasting.datagen.IXplatIngredients;
import at.petrak.hexcasting.datagen.recipe.builders.BrainsweepRecipeBuilder;
@ -21,8 +21,6 @@ import at.petrak.hexcasting.datagen.recipe.builders.CompatIngredientValue;
import at.petrak.hexcasting.datagen.recipe.builders.CreateCrushingRecipeBuilder;
import at.petrak.hexcasting.datagen.recipe.builders.FarmersDelightCuttingRecipeBuilder;
import at.petrak.paucal.api.datagen.PaucalRecipeProvider;
import net.minecraft.advancements.critereon.EntityPredicate;
import net.minecraft.advancements.critereon.MinMaxBounds;
import net.minecraft.core.Registry;
import net.minecraft.data.DataGenerator;
import net.minecraft.data.recipes.*;
@ -171,36 +169,35 @@ public class HexplatRecipes extends PaucalRecipeProvider {
gayRecipe(recipes, ItemPrideColorizer.Type.TRANSGENDER, Ingredient.of(Items.EGG));
ShapedRecipeBuilder.shaped(HexItems.UUID_COLORIZER)
.define('B', Items.BOWL)
.define('D', HexItems.AMETHYST_DUST)
.define('C', Items.AMETHYST_SHARD)
.pattern(" C ")
.pattern(" D ")
.pattern(" B ")
.pattern("DCD")
.pattern(" D ")
.unlockedBy("has_item", hasItem(HexItems.AMETHYST_DUST)).save(recipes);
ShapedRecipeBuilder.shaped(HexItems.SCROLL_SMOL)
.define('P', Items.PAPER)
.define('A', Items.AMETHYST_SHARD)
.define('A', HexItems.AMETHYST_DUST)
.pattern(" A")
.pattern("P ")
.unlockedBy("has_item", hasItem(Items.AMETHYST_SHARD)).save(recipes);
.unlockedBy("has_item", hasItem(HexTags.Items.STAVES)).save(recipes);
ShapedRecipeBuilder.shaped(HexItems.SCROLL_MEDIUM)
.define('P', Items.PAPER)
.define('A', Items.AMETHYST_SHARD)
.define('A', HexItems.AMETHYST_DUST)
.pattern(" A")
.pattern("PP ")
.pattern("PP ")
.unlockedBy("has_item", hasItem(Items.AMETHYST_SHARD)).save(recipes);
.unlockedBy("has_item", hasItem(HexTags.Items.STAVES)).save(recipes);
ShapedRecipeBuilder.shaped(HexItems.SCROLL_LARGE)
.define('P', Items.PAPER)
.define('A', Items.AMETHYST_SHARD)
.define('A', HexItems.AMETHYST_DUST)
.pattern("PPA")
.pattern("PPP")
.pattern("PPP")
.unlockedBy("has_item", hasItem(Items.AMETHYST_SHARD)).save(recipes);
.unlockedBy("has_item", hasItem(HexTags.Items.STAVES)).save(recipes);
ShapedRecipeBuilder.shaped(HexItems.SLATE, 6)
.define('S', Items.DEEPSLATE)
@ -325,13 +322,7 @@ public class HexplatRecipes extends PaucalRecipeProvider {
.requires(HexTags.Items.EDIFIED_PLANKS)
.unlockedBy("has_item", hasItem(HexTags.Items.EDIFIED_PLANKS)).save(recipes);
// TODO: probably should have some constant enlightenment trigger somewhere
var enlightenment = new OvercastTrigger.Instance(
EntityPredicate.Composite.ANY,
MinMaxBounds.Ints.ANY, // add a little bit of slop here
MinMaxBounds.Doubles.atLeast(0.8),
MinMaxBounds.Doubles.between(0.1, 2.05)
);
var enlightenment = HexAdvancements.ENLIGHTEN;
ShapedRecipeBuilder.shaped(HexBlocks.EMPTY_IMPETUS)
.define('B', Items.IRON_BARS)
.define('A', HexItems.CHARGED_AMETHYST)
@ -361,12 +352,14 @@ public class HexplatRecipes extends PaucalRecipeProvider {
.pattern("LPL")
.unlockedBy("enlightenment", enlightenment).save(recipes);
ShapedRecipeBuilder.shaped(HexBlocks.AKASHIC_LIGATURE)
ShapedRecipeBuilder.shaped(HexBlocks.AKASHIC_LIGATURE, 4)
.define('L', HexTags.Items.EDIFIED_LOGS)
.define('P', HexTags.Items.EDIFIED_PLANKS)
.define('C', HexItems.CHARGED_AMETHYST)
.define('1', HexItems.AMETHYST_DUST)
.define('2', Items.AMETHYST_SHARD)
.define('3', HexItems.CHARGED_AMETHYST)
.pattern("LPL")
.pattern("CCC")
.pattern("123")
.pattern("LPL")
.unlockedBy("enlightenment", enlightenment).save(recipes);

View file

@ -1,4 +1,4 @@
// 1.19.2 2023-01-22T12:42:43.342254542 Tags for minecraft:item
// 1.19.2 2023-01-22T20:01:15.102275514 Tags for minecraft:item
5928bad07d3872bb60f29ef4f3c885c8e1967c20 data/hexcasting/tags/items/phial_base.json
fdb48f194d7937ab6b423fa4b90a4d438bf6dd90 data/minecraft/tags/items/wooden_doors.json
e5df19a1dc6eadf14cd9b0f0fe45a74330b745e9 data/hexcasting/tags/items/edified_planks.json

View file

@ -1,4 +1,4 @@
// 1.19.2 2023-01-22T12:42:43.346904818 LootTables
// 1.19.2 2023-01-22T20:01:15.106418886 LootTables
01a50f557196c705c275722015cf893e0abe6425 data/hexcasting/loot_tables/inject/scroll_loot_many.json
dec1d3592e82f99d9e059d9c771530f103b2bda5 data/hexcasting/loot_tables/blocks/empty_directrix.json
2c42fc5d8c74c98ad15b8bd50f56541fccbef750 data/hexcasting/loot_tables/blocks/edified_tile.json

View file

@ -1,4 +1,4 @@
// 1.19.2 2023-01-22T12:42:43.346084202 Tags for minecraft:block
// 1.19.2 2023-01-22T20:01:15.101152195 Tags for minecraft:block
20183cd61968ff6548df2dde1100b6378d68d64b data/minecraft/tags/blocks/wooden_buttons.json
357eddf3cee6f16725bed0701d57b2ca3097d74d data/minecraft/tags/blocks/mineable/shovel.json
5216ba5c57db29b8dee9aebc63a2e3b17c97dc17 data/minecraft/tags/blocks/wooden_trapdoors.json

View file

@ -1,4 +1,4 @@
// 1.19.2 2023-01-22T12:42:43.353710487 Tags for hexcasting:action
// 1.19.2 2023-01-22T20:01:15.100005619 Tags for hexcasting:action
e5afc567ea17f035e4eb1d1d48825100b7f6ad68 data/hexcasting/tags/action/per_world_pattern.json
e5afc567ea17f035e4eb1d1d48825100b7f6ad68 data/hexcasting/tags/action/requires_enlightenment.json
e5afc567ea17f035e4eb1d1d48825100b7f6ad68 data/hexcasting/tags/action/can_start_enlighten.json

View file

@ -1,28 +1,28 @@
// 1.19.2 2023-01-22T12:42:43.349741357 Recipes
// 1.19.2 2023-01-22T20:01:15.102891719 Recipes
858dada9c41974f5aa80c66423bf371c9e176a53 data/hexcasting/recipes/pride_colorizer_demigirl.json
bb0f91c534c888d1cff8793b49986dce236c7b2d data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_white.json
9f75d3e93ecbbbf3ed9a92b2943397e09dcae1a9 data/hexcasting/recipes/dye_colorizer_light_blue.json
04569ccadfd99f203b0485d0c3e877209290f2b3 data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_pink.json
0101f5c24d8beedcc884ce87b052ad4f6884ddc4 data/hexcasting/recipes/akashic_bookshelf.json
f58700261f72cf87acacf1df0f163890c8b7ae00 data/hexcasting/advancements/recipes/brainsweep/brainsweep/directrix_redstone.json
2a9d4a0f3618abf9e9b8699b318a984d2c836913 data/hexcasting/advancements/recipes/brainsweep/brainsweep/directrix_redstone.json
1b510d32bad1a51ad6795fb8e7702d34c8c8cfbe data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_green.json
d73e5d8fec4d3f7d15888bd292f4ad9c1b37cac5 data/hexcasting/advancements/recipes/hexcasting.creative_tab/ageing_scroll_paper_lantern.json
b54339a9e990419e4820491001c4cbdb7aa9fddb data/hexcasting/recipes/artifact.json
c3f9cca50935f7abf141825d78b441033fc0dab8 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll.json
bfca15c4ef7bea4704d062c3ab690e23887e55b0 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll.json
ef5a19ab2710fd0ce836d767588fe6a54a528a48 data/hexcasting/recipes/dye_colorizer_white.json
768d70365c56ef1fbad089d3e3fd68548f964227 data/hexcasting/recipes/dye_colorizer_black.json
dfb42a8b723b37df5c8888bdef86a1be35f2de72 data/hexcasting/recipes/pride_colorizer_bisexual.json
605f921a98b5dabbd80bc762070916e7d6756df6 data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_orange.json
17aa26ce6bc9941d1477dee99e514fd66be7f664 data/hexcasting/recipes/pride_colorizer_aroace.json
6978ff90efdd067940caccdd29437d2aefd0fe1f data/hexcasting/recipes/scroll_paper.json
8d6f58c45be52e22559fdbc2806ee48ab40d133c data/hexcasting/advancements/recipes/brainsweep/brainsweep/akashic_record.json
229931adf8d62f659de5950d711afd24fb5aa535 data/hexcasting/advancements/recipes/brainsweep/brainsweep/akashic_record.json
1754e1304908edf58a70fe8548f9d0ede22a1dd3 data/hexcasting/recipes/pride_colorizer_pansexual.json
92d5ec5ddf2b35cc59f5bfe389f80443e7ee1ff8 data/hexcasting/recipes/uuid_colorizer.json
ffba0344dfc7f604e8e33a333549f74c53f3e7e6 data/hexcasting/recipes/uuid_colorizer.json
d684142c75bee35e6035d1829e271704d4ccdff3 data/hexcasting/advancements/recipes/hexcasting.creative_tab/pride_colorizer_lesbian.json
dfc171097bdd8a8f280e6787ea999286deda643e data/hexcasting/advancements/recipes/hexcasting.creative_tab/focus.json
e6ba57745f6841c2dcb537ada2475e880ea25186 data/hexcasting/recipes/dye_colorizer_green.json
a3c7f19df257ee07f0894708b48438fdf3b14a47 data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_black.json
b9202eb55254abe6cbffc6ce73ba9dcf36a84ffe data/hexcasting/advancements/recipes/brainsweep/brainsweep/budding_amethyst.json
15608e5929da4801fc933e79a9e37419ce60e18d data/hexcasting/advancements/recipes/brainsweep/brainsweep/budding_amethyst.json
a776209b64fea520f6a2fff9f1623e7086939dd9 data/hexcasting/recipes/jungle_staff.json
4ffed306e5f640054a6f269ae0e548388f087996 data/hexcasting/recipes/warped_staff.json
2b16fb3f6b4e4e31c5c507e6c0535bd12c7c63a1 data/hexcasting/recipes/dye_colorizer_brown.json
@ -56,13 +56,13 @@ f8e027860b2505a7217d1264c5d0b6f7feea0679 data/hexcasting/advancements/recipes/he
63da3af421dfb38283d750eb3b9761f42e95fb91 data/hexcasting/advancements/recipes/hexcasting.creative_tab/stripped_edified_wood.json
24984d728a5c05967c58be9c0dc1c59e986602e6 data/hexcasting/recipes/brainsweep/impetus_storedplayer.json
326925a948aeb17aabafbc25ed2562a257796d29 data/hexcasting/recipes/dye_colorizer_yellow.json
2a1021614882392be78d22cb557e43cbbd9092ca data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_rightclick.json
9f55e6ff1f2633e4ad390868e7952b700e5309a4 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_rightclick.json
4440b41499c9c32e297dc184c39da010ff82ac5e data/hexcasting/advancements/recipes/hexcasting.creative_tab/uuid_colorizer.json
5a90084c03d6e8424872870c8b65f4771b447f03 data/hexcasting/recipes/brainsweep/budding_amethyst.json
6e6c73a93e0e06ff399d95e40baf4e06f3a25a0a data/hexcasting/advancements/recipes/hexcasting.creative_tab/slate_block_from_slates.json
3662834d6e0bac03aba28f0f9d9f07f511492118 data/hexcasting/recipes/lens.json
4ba0fcb9b3142029c36cc48b250b89b0cac3f6de data/hexcasting/recipes/akashic_connector.json
eaba34eebb8cb0d8d752ab1d574752e651626c24 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/flowey_the_flower.json
638c534059597cebb9dc1e927c76a2809ddbfd42 data/hexcasting/recipes/akashic_connector.json
afbeab63d6f09200c91014b0ba2570ed2a29fc52 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/flowey_the_flower.json
1c5681b6bf354ce068c51852b51a5aba9ac2d8f9 data/hexcasting/recipes/compat/create/crushing/amethyst_shard.json
336465276c06fc59be003ccad3d6fc121fa438f5 data/hexcasting/recipes/edified_staff.json
1086a6e3f284fc3b575ee3a21d2b13d0bc62d2bb data/hexcasting/recipes/brainsweep/impetus_rightclick.json
@ -73,10 +73,10 @@ a331f4ce9b8d3565cbb154af4d63279f1e2c7a41 data/hexcasting/recipes/compat/farmersd
108421ab59fc52c69913676abda5e0a045fe1b04 data/hexcasting/recipes/pride_colorizer_gay.json
f75c21d35b926a2303d60115a297c387790bbbd9 data/hexcasting/advancements/recipes/hexcasting.creative_tab/edified_trapdoor.json
3b83dd1c1aa1bcc58e6512bca75c3a6a3b7482b3 data/hexcasting/recipes/edified_tile.json
7ae2bd282afbf2f460a6bb705fe301a2a11d7835 data/hexcasting/advancements/recipes/hexcasting.creative_tab/akashic_connector.json
ceab17c3df28bb48bc9d99097051c601f5b981f5 data/hexcasting/advancements/recipes/hexcasting.creative_tab/akashic_connector.json
d603560d9bbe0bd3e9c0ca5cd502fe874337599e data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_light_gray.json
0ee8d29cb06065a55017a8fc50576193107f958d data/hexcasting/recipes/dynamicseal_focus.json
da3c95902e93fe82e489ceccc84a56159329e091 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_look.json
f48c2df6c0981b959c2e1b0bf8ecc4739b2e034f data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_look.json
8c49c1c022cee20fb2a44046425b48cd0e6659af data/hexcasting/advancements/recipes/hexcasting.creative_tab/birch_staff.json
12e1ba1ec29bf0eadf1210d2307fab35e9685085 data/hexcasting/recipes/empty_directrix.json
898319b3a4ee7a8d7bd7a4af0313593561ed657e data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_paper.json
@ -84,7 +84,7 @@ da3c95902e93fe82e489ceccc84a56159329e091 data/hexcasting/advancements/recipes/br
64f509c0496204d39c38a4a64a1fbe0f84b9e5ae data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_magenta.json
aa6c75e8834d47b0a144dac7b6448cbaecb7df44 data/hexcasting/recipes/pride_colorizer_aromantic.json
a16ce751797baf92c3dd3f125b564e789aeec260 data/hexcasting/advancements/recipes/hexcasting.creative_tab/edified_planks.json
c8ff04819448a3efb2c031e06045be761db6a2f1 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_medium.json
7df149b266e4f7925defd3b017163698070dbcb9 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_medium.json
dc2a9bf96ca9d04ea6bdeb32249322530b5e1cbf data/hexcasting/advancements/recipes/hexcasting.creative_tab/warped_staff.json
b62b3b67e6a105e1eb47d04c2ededd8d408df7b7 data/hexcasting/advancements/recipes/hexcasting.creative_tab/ancient_scroll_paper.json
1ba5dada44ad7c008756f0e8e7adfe30e2520239 data/hexcasting/recipes/dye_colorizer_lime.json
@ -94,18 +94,18 @@ b494dc17959c76857f25368eb845e58e4f8bca92 data/hexcasting/recipes/compat/farmersd
4bff4a59e32c6d1d99bc3a8abd16cd88c51a8e73 data/hexcasting/recipes/dye_colorizer_orange.json
cba5ffa7cd89116aba040956f4a85073cedd39cf data/hexcasting/recipes/mangrove_staff.json
1f04d75a1c713d3c5ac44e62889ce834f12d6234 data/hexcasting/recipes/jeweler_hammer.json
0de6f2437a3c33a92de2f3e6b7ac6102996c8779 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/bad_to_the_bone.json
4565df318c12afe89322d2459c06bdfc34901679 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/bad_to_the_bone.json
8a9e7aa8d07556649768729348dff5305b84e1b9 data/hexcasting/recipes/edified_door.json
e52dbfc2d86bb3e87ff554fc8d5f0d43b7ff334a data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_gray.json
b6d6716724729f0530a524f92d7e4646455de344 data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_red.json
993a613fabd0ee1005bde11ebe92f8046351ba9e data/hexcasting/advancements/recipes/hexcasting.creative_tab/trinket.json
b2496e7ff3b631a148de37896eeb7dbcd2cbf04a data/hexcasting/recipes/scroll_medium.json
6e8ba1635146314810ce9181c83024c0c0a931f7 data/hexcasting/advancements/recipes/hexcasting.creative_tab/akashic_bookshelf.json
2e02e371ed43f72f101588ce4fa6e7ac8b5ef471 data/hexcasting/recipes/scroll_medium.json
99ebed784d731042da34187b829e1b9560cbebb2 data/hexcasting/advancements/recipes/hexcasting.creative_tab/akashic_bookshelf.json
bd3e10b3d468e48e72ad060b9eb0b9f8f4057bf1 data/hexcasting/recipes/ageing_scroll_paper_lantern.json
5627128775e24fb6281a0576a931cfa88a909bc0 data/hexcasting/recipes/slate_block_from_slates.json
6aa3e7825025d055a70a58acd4fd48eef0480721 data/hexcasting/recipes/edified_wood.json
783c691f24bc4259ba5da014133763dce26ee4bd data/hexcasting/recipes/crimson_staff.json
437f92b83317beda07c55c122224e6740573a05e data/hexcasting/recipes/scroll.json
446b5adea918e25bb93959fe381e4c8f3fe789f5 data/hexcasting/recipes/scroll.json
6479526ac6b8732814ea3feb97e877896c17f7b7 data/hexcasting/recipes/edified_trapdoor.json
0cb3e2e6e0be9f53811f24ad43bf711d07560210 data/hexcasting/advancements/recipes/hexcasting.creative_tab/acacia_staff.json
6641b22c79fa29fab15d414afecabd3aa7402b38 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_paper_lantern.json
@ -118,13 +118,13 @@ c93cecd3f883e57f3cce7ad3d6aad44000ed541c data/hexcasting/recipes/ancient_scroll_
ba08fd11d19f54c504ceed6f162a5d814e03d1e8 data/hexcasting/recipes/brainsweep/testing/flowey_the_flower.json
12d9ec588869179a8e8a1f4bce718175d57e4a71 data/create/recipes/crushing/amethyst_block.json
ab26481b45a7f463e2225b9a04d24a1b4d84daef data/hexcasting/recipes/abacus.json
fccc3e05b011e1fd1a41a0bfca11876d0fb16df2 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_small.json
2e943ea3077aa46f16d78c04ab417677fc326e78 data/hexcasting/advancements/recipes/hexcasting.creative_tab/scroll_small.json
38e7b64a4a15f1ce496f8c156d7262426f98fbcc data/hexcasting/recipes/acacia_staff.json
6a9a89cfa34732437996431a9c885332cf714449 data/hexcasting/advancements/recipes/hexcasting.creative_tab/mangrove_staff.json
7c7888ba95d1e2e8620a916df546a2b06b592d37 data/hexcasting/recipes/edified_planks.json
0d08dab8c9700c7b5b32ad35e7b665a2e3c2cdc7 data/hexcasting/advancements/recipes/hexcasting.creative_tab/artifact.json
0859373b9e60e80f3c8b0962a3bc94903af43d36 data/hexcasting/recipes/stripped_edified_wood.json
414d605b72164240bc308444c48ed03571cc0d61 data/hexcasting/advancements/recipes/hexcasting.creative_tab/empty_directrix.json
01f8281d0b4b1fa7116989c9a01d71a3312d8d11 data/hexcasting/advancements/recipes/hexcasting.creative_tab/empty_directrix.json
e687ceab424098d586f0b67a34fe65bee1f4dfca data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_blue.json
013a4b5603757f8610709428dad8de79bd9bd590 data/hexcasting/recipes/dye_colorizer_pink.json
202e70722198141d5dd961bb087a25873e4928af data/hexcasting/recipes/edified_stairs.json
@ -132,7 +132,7 @@ e687ceab424098d586f0b67a34fe65bee1f4dfca data/hexcasting/advancements/recipes/he
b640608755649a8bde55a434016b14522fa6d2e0 data/hexcasting/advancements/recipes/hexcasting.creative_tab/edified_wood.json
d323e21de69d0606d1fac03fa8820e5857e4e1f1 data/hexcasting/recipes/dynamicseal_spellbook.json
e0e49c8a9977fe2b0619179b11a4379b5b19ace9 data/hexcasting/advancements/recipes/hexcasting.creative_tab/sub_sandwich.json
b2dc08cc62b9a36d6b034aead99e0b328b5efecb data/hexcasting/recipes/scroll_small.json
08c200b6d3a3aacb434112aacab9851e7d5f6083 data/hexcasting/recipes/scroll_small.json
e3416c3e103fe206cbaa352eb5011f81ccfc6aca data/hexcasting/recipes/slate.json
0b8a01eab5d4ce90974c6c53b6d397f8e9398385 data/hexcasting/recipes/slate_block.json
bb42a28d7b19f8f8057630f0d2e99b371e93126a data/hexcasting/advancements/recipes/hexcasting.creative_tab/dye_colorizer_light_blue.json
@ -168,7 +168,7 @@ b7fc41f8cfd83a0d138290251d63bb6cc04e0f9a data/hexcasting/recipes/edified_pressur
a58f37bc66e65c1ac00ba7dbc4d9a7b902f42aad data/hexcasting/advancements/recipes/hexcasting.creative_tab/oak_staff.json
13d03da2cfee5c29e5432806189e18eeefb76e11 data/hexcasting/advancements/recipes/hexcasting.creative_tab/pride_colorizer_gay.json
fc0476880c79cf4458dd5b24f77fc980b02534d2 data/hexcasting/recipes/edified_button.json
a22233090497e1c44082b6eb16ad079d9acc8f7c data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_storedplayer.json
fc7fe64799c10482c01aaf467c6447503d3ffb70 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_storedplayer.json
aa4a00864f1b22835612fe60a4715250f3ab2126 data/hexcasting/advancements/recipes/hexcasting.creative_tab/edified_panel.json
6f5ee50706640e9be82810e22388fc7b2bce13b1 data/hexcasting/recipes/birch_staff.json
e35c89ccc099c511c9ab321a7490d35f2e8c9353 data/hexcasting/advancements/recipes/hexcasting.creative_tab/amethyst_dust_packing.json
@ -188,5 +188,5 @@ bc91b7e096d8a0033916101f21fa43c06b343e86 data/hexcasting/recipes/dye_colorizer_r
c9c2b33afc4b5de1f10df08d901312ee1ded1c5e data/hexcasting/advancements/recipes/hexcasting.creative_tab/pride_colorizer_pansexual.json
fa49dab810cff4f827d2662a93fc3439a8e99cba data/hexcasting/recipes/pride_colorizer_genderqueer.json
25df58c8b78028142c47deb060768d4fbfe2c38e data/hexcasting/advancements/recipes/hexcasting.creative_tab/pride_colorizer_nonbinary.json
28fa66705fcd6dbfa46ec76602497441cde579ef data/hexcasting/advancements/recipes/hexcasting.creative_tab/empty_impetus.json
3db193fa4246ffa5bbfa45ce901bbfaeada0a942 data/hexcasting/advancements/recipes/hexcasting.creative_tab/empty_impetus.json
182c2b5dd406c80ed957e1b43d554cce1b212d28 data/hexcasting/advancements/recipes/hexcasting.creative_tab/jungle_staff.json

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -1,7 +1,13 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"1": {
"item": "hexcasting:amethyst_dust"
},
"2": {
"item": "minecraft:amethyst_shard"
},
"3": {
"item": "hexcasting:charged_amethyst"
},
"L": {
@ -13,10 +19,11 @@
},
"pattern": [
"LPL",
"CCC",
"123",
"LPL"
],
"result": {
"count": 4,
"item": "hexcasting:akashic_connector"
}
}

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -1,9 +1,6 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"B": {
"item": "minecraft:bowl"
},
"C": {
"item": "minecraft:amethyst_shard"
},
@ -12,9 +9,9 @@
}
},
"pattern": [
" C ",
" D ",
" B "
"DCD",
" D "
],
"result": {
"item": "hexcasting:uuid_colorizer"

View file

@ -1,19 +1,19 @@
// 1.19.2 2023-01-22T12:41:48.311183435 Recipes
// 1.19.2 2023-01-22T19:58:44.861340174 Recipes
29056d8bbc023668564ee81f4eb8b2a11411cf4a data/create/recipes/crushing/amethyst_block.json
5bb0b70967a422bfd88c01fa1af64e9b98781fd1 data/create/recipes/crushing/amethyst_cluster.json
8d6f58c45be52e22559fdbc2806ee48ab40d133c data/hexcasting/advancements/recipes/brainsweep/brainsweep/akashic_record.json
b9202eb55254abe6cbffc6ce73ba9dcf36a84ffe data/hexcasting/advancements/recipes/brainsweep/brainsweep/budding_amethyst.json
f58700261f72cf87acacf1df0f163890c8b7ae00 data/hexcasting/advancements/recipes/brainsweep/brainsweep/directrix_redstone.json
da3c95902e93fe82e489ceccc84a56159329e091 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_look.json
2a1021614882392be78d22cb557e43cbbd9092ca data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_rightclick.json
a22233090497e1c44082b6eb16ad079d9acc8f7c data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_storedplayer.json
0de6f2437a3c33a92de2f3e6b7ac6102996c8779 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/bad_to_the_bone.json
eaba34eebb8cb0d8d752ab1d574752e651626c24 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/flowey_the_flower.json
229931adf8d62f659de5950d711afd24fb5aa535 data/hexcasting/advancements/recipes/brainsweep/brainsweep/akashic_record.json
15608e5929da4801fc933e79a9e37419ce60e18d data/hexcasting/advancements/recipes/brainsweep/brainsweep/budding_amethyst.json
2a9d4a0f3618abf9e9b8699b318a984d2c836913 data/hexcasting/advancements/recipes/brainsweep/brainsweep/directrix_redstone.json
f48c2df6c0981b959c2e1b0bf8ecc4739b2e034f data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_look.json
9f55e6ff1f2633e4ad390868e7952b700e5309a4 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_rightclick.json
fc7fe64799c10482c01aaf467c6447503d3ffb70 data/hexcasting/advancements/recipes/brainsweep/brainsweep/impetus_storedplayer.json
4565df318c12afe89322d2459c06bdfc34901679 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/bad_to_the_bone.json
afbeab63d6f09200c91014b0ba2570ed2a29fc52 data/hexcasting/advancements/recipes/brainsweep/brainsweep/testing/flowey_the_flower.json
ae2c6392cc0ec104c4e3019e1824a1e7f811f1de data/hexcasting/advancements/recipes/hexcasting/abacus.json
0cb3e2e6e0be9f53811f24ad43bf711d07560210 data/hexcasting/advancements/recipes/hexcasting/acacia_staff.json
d73e5d8fec4d3f7d15888bd292f4ad9c1b37cac5 data/hexcasting/advancements/recipes/hexcasting/ageing_scroll_paper_lantern.json
6e8ba1635146314810ce9181c83024c0c0a931f7 data/hexcasting/advancements/recipes/hexcasting/akashic_bookshelf.json
7ae2bd282afbf2f460a6bb705fe301a2a11d7835 data/hexcasting/advancements/recipes/hexcasting/akashic_connector.json
99ebed784d731042da34187b829e1b9560cbebb2 data/hexcasting/advancements/recipes/hexcasting/akashic_bookshelf.json
ceab17c3df28bb48bc9d99097051c601f5b981f5 data/hexcasting/advancements/recipes/hexcasting/akashic_connector.json
e35c89ccc099c511c9ab321a7490d35f2e8c9353 data/hexcasting/advancements/recipes/hexcasting/amethyst_dust_packing.json
62bfad9dc29406a9807ea33f866cbdfca32e7d0a data/hexcasting/advancements/recipes/hexcasting/amethyst_dust_unpacking.json
220f4dc7c8f857092bcb85b5ccf8936237ededa4 data/hexcasting/advancements/recipes/hexcasting/amethyst_sconce.json
@ -52,8 +52,8 @@ f45428f892d2064fafa29ea644eea21354e2e322 data/hexcasting/advancements/recipes/he
0ed898da60aa78cd526ff4ae0524359891dbd976 data/hexcasting/advancements/recipes/hexcasting/edified_tile.json
f75c21d35b926a2303d60115a297c387790bbbd9 data/hexcasting/advancements/recipes/hexcasting/edified_trapdoor.json
b640608755649a8bde55a434016b14522fa6d2e0 data/hexcasting/advancements/recipes/hexcasting/edified_wood.json
414d605b72164240bc308444c48ed03571cc0d61 data/hexcasting/advancements/recipes/hexcasting/empty_directrix.json
28fa66705fcd6dbfa46ec76602497441cde579ef data/hexcasting/advancements/recipes/hexcasting/empty_impetus.json
01f8281d0b4b1fa7116989c9a01d71a3312d8d11 data/hexcasting/advancements/recipes/hexcasting/empty_directrix.json
3db193fa4246ffa5bbfa45ce901bbfaeada0a942 data/hexcasting/advancements/recipes/hexcasting/empty_impetus.json
dfc171097bdd8a8f280e6787ea999286deda643e data/hexcasting/advancements/recipes/hexcasting/focus.json
48b6d3429e3536a85f3a0e9585a7d252ae0d57a3 data/hexcasting/advancements/recipes/hexcasting/jeweler_hammer.json
182c2b5dd406c80ed957e1b43d554cce1b212d28 data/hexcasting/advancements/recipes/hexcasting/jungle_staff.json
@ -76,11 +76,11 @@ d684142c75bee35e6035d1829e271704d4ccdff3 data/hexcasting/advancements/recipes/he
c9c2b33afc4b5de1f10df08d901312ee1ded1c5e data/hexcasting/advancements/recipes/hexcasting/pride_colorizer_pansexual.json
cd22886924e7aaeb62e8f7da0747cc950af9dc32 data/hexcasting/advancements/recipes/hexcasting/pride_colorizer_plural.json
be7ceaf2b55525f06178fb09070dfeeef8da1c65 data/hexcasting/advancements/recipes/hexcasting/pride_colorizer_transgender.json
c3f9cca50935f7abf141825d78b441033fc0dab8 data/hexcasting/advancements/recipes/hexcasting/scroll.json
c8ff04819448a3efb2c031e06045be761db6a2f1 data/hexcasting/advancements/recipes/hexcasting/scroll_medium.json
bfca15c4ef7bea4704d062c3ab690e23887e55b0 data/hexcasting/advancements/recipes/hexcasting/scroll.json
7df149b266e4f7925defd3b017163698070dbcb9 data/hexcasting/advancements/recipes/hexcasting/scroll_medium.json
898319b3a4ee7a8d7bd7a4af0313593561ed657e data/hexcasting/advancements/recipes/hexcasting/scroll_paper.json
6641b22c79fa29fab15d414afecabd3aa7402b38 data/hexcasting/advancements/recipes/hexcasting/scroll_paper_lantern.json
fccc3e05b011e1fd1a41a0bfca11876d0fb16df2 data/hexcasting/advancements/recipes/hexcasting/scroll_small.json
2e943ea3077aa46f16d78c04ab417677fc326e78 data/hexcasting/advancements/recipes/hexcasting/scroll_small.json
f0a77ba758e649d0c16a8e2d9964d18f95a544f4 data/hexcasting/advancements/recipes/hexcasting/slate.json
5ba498c4c19f74cbb456385bccda96d4a8d1d1cc data/hexcasting/advancements/recipes/hexcasting/slate_block.json
6e6c73a93e0e06ff399d95e40baf4e06f3a25a0a data/hexcasting/advancements/recipes/hexcasting/slate_block_from_slates.json
@ -96,7 +96,7 @@ ab26481b45a7f463e2225b9a04d24a1b4d84daef data/hexcasting/recipes/abacus.json
38e7b64a4a15f1ce496f8c156d7262426f98fbcc data/hexcasting/recipes/acacia_staff.json
d2e2b8e86799546638fd3ff90b04acb98732e9f5 data/hexcasting/recipes/ageing_scroll_paper_lantern.json
0101f5c24d8beedcc884ce87b052ad4f6884ddc4 data/hexcasting/recipes/akashic_bookshelf.json
4ba0fcb9b3142029c36cc48b250b89b0cac3f6de data/hexcasting/recipes/akashic_connector.json
638c534059597cebb9dc1e927c76a2809ddbfd42 data/hexcasting/recipes/akashic_connector.json
90088535c8e4d0beb0725878314c49ac8deb373b data/hexcasting/recipes/amethyst_dust_packing.json
5ffea2f9ccbb855ab3f5aca9cb572f57f26619ae data/hexcasting/recipes/amethyst_dust_unpacking.json
4f3d6de41aa70a73cc4ba5f56404ff0030e7eeb5 data/hexcasting/recipes/amethyst_sconce.json
@ -174,11 +174,11 @@ fa49dab810cff4f827d2662a93fc3439a8e99cba data/hexcasting/recipes/pride_colorizer
1754e1304908edf58a70fe8548f9d0ede22a1dd3 data/hexcasting/recipes/pride_colorizer_pansexual.json
db105c67babb1ffc1bcad53ed1c98d7eb2fee4b1 data/hexcasting/recipes/pride_colorizer_plural.json
dc0fb37084974cf396264d046fa6708338eb0879 data/hexcasting/recipes/pride_colorizer_transgender.json
437f92b83317beda07c55c122224e6740573a05e data/hexcasting/recipes/scroll.json
b2496e7ff3b631a148de37896eeb7dbcd2cbf04a data/hexcasting/recipes/scroll_medium.json
446b5adea918e25bb93959fe381e4c8f3fe789f5 data/hexcasting/recipes/scroll.json
2e02e371ed43f72f101588ce4fa6e7ac8b5ef471 data/hexcasting/recipes/scroll_medium.json
6978ff90efdd067940caccdd29437d2aefd0fe1f data/hexcasting/recipes/scroll_paper.json
36c3ea4547b49c7553e7024192d5ddf6f2163422 data/hexcasting/recipes/scroll_paper_lantern.json
b2dc08cc62b9a36d6b034aead99e0b328b5efecb data/hexcasting/recipes/scroll_small.json
08c200b6d3a3aacb434112aacab9851e7d5f6083 data/hexcasting/recipes/scroll_small.json
e3416c3e103fe206cbaa352eb5011f81ccfc6aca data/hexcasting/recipes/slate.json
0b8a01eab5d4ce90974c6c53b6d397f8e9398385 data/hexcasting/recipes/slate_block.json
5627128775e24fb6281a0576a931cfa88a909bc0 data/hexcasting/recipes/slate_block_from_slates.json
@ -188,5 +188,5 @@ f0852056a692d776bf537c821f3d166c2be88bd8 data/hexcasting/recipes/spruce_staff.js
0859373b9e60e80f3c8b0962a3bc94903af43d36 data/hexcasting/recipes/stripped_edified_wood.json
13ca24f9f87a6b34f7717e5c326291079e6db96f data/hexcasting/recipes/sub_sandwich.json
42ab683499c3b0f7ae594879490a37eb6aff9703 data/hexcasting/recipes/trinket.json
92d5ec5ddf2b35cc59f5bfe389f80443e7ee1ff8 data/hexcasting/recipes/uuid_colorizer.json
ffba0344dfc7f604e8e33a333549f74c53f3e7e6 data/hexcasting/recipes/uuid_colorizer.json
4ffed306e5f640054a6f269ae0e548388f087996 data/hexcasting/recipes/warped_staff.json

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -7,8 +7,8 @@
"min": 0.8
},
"mojang_i_am_begging_and_crying_please_add_an_entity_health_criterion": {
"max": 2.05,
"min": 0.1
"max": 1.0,
"min": 2.2250738585072014E-308
}
},
"trigger": "hexcasting:overcast"

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -5,9 +5,7 @@
"conditions": {
"items": [
{
"items": [
"minecraft:amethyst_shard"
]
"tag": "hexcasting:staves"
}
]
},

View file

@ -1,7 +1,13 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"1": {
"item": "hexcasting:amethyst_dust"
},
"2": {
"item": "minecraft:amethyst_shard"
},
"3": {
"item": "hexcasting:charged_amethyst"
},
"L": {
@ -13,10 +19,11 @@
},
"pattern": [
"LPL",
"CCC",
"123",
"LPL"
],
"result": {
"count": 4,
"item": "hexcasting:akashic_connector"
}
}

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -2,7 +2,7 @@
"type": "minecraft:crafting_shaped",
"key": {
"A": {
"item": "minecraft:amethyst_shard"
"item": "hexcasting:amethyst_dust"
},
"P": {
"item": "minecraft:paper"

View file

@ -1,9 +1,6 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"B": {
"item": "minecraft:bowl"
},
"C": {
"item": "minecraft:amethyst_shard"
},
@ -12,9 +9,9 @@
}
},
"pattern": [
" C ",
" D ",
" B "
"DCD",
" D "
],
"result": {
"item": "hexcasting:uuid_colorizer"