├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml └── workflows │ ├── build_docs.yml │ └── pr.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── Common ├── build.gradle ├── logs │ └── latest.log └── src │ ├── generated │ └── resources │ │ ├── .cache │ │ ├── 8f7cd5c924d3264b7777ef1696459761f9a70902 │ │ ├── d2fe5b6fab5fdc7ee7ca336c062752306bdf6128 │ │ └── e5c5eb35b4ba40351ecb7d9f04c3527f2f5779b0 │ │ ├── assets │ │ └── hexcasting │ │ │ ├── blockstates │ │ │ ├── akashic_bookshelf.json │ │ │ ├── akashic_connector.json │ │ │ ├── akashic_record.json │ │ │ ├── amethyst_bricks.json │ │ │ ├── amethyst_bricks_small.json │ │ │ ├── amethyst_dust_block.json │ │ │ ├── amethyst_edified_leaves.json │ │ │ ├── amethyst_pillar.json │ │ │ ├── amethyst_sconce.json │ │ │ ├── amethyst_tiles.json │ │ │ ├── ancient_scroll_paper.json │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ ├── aventurine_edified_leaves.json │ │ │ ├── citrine_edified_leaves.json │ │ │ ├── conjured_block.json │ │ │ ├── conjured_light.json │ │ │ ├── directrix │ │ │ │ ├── boolean.json │ │ │ │ ├── empty.json │ │ │ │ └── redstone.json │ │ │ ├── edified_button.json │ │ │ ├── edified_door.json │ │ │ ├── edified_fence.json │ │ │ ├── edified_fence_gate.json │ │ │ ├── edified_log.json │ │ │ ├── edified_log_amethyst.json │ │ │ ├── edified_log_aventurine.json │ │ │ ├── edified_log_citrine.json │ │ │ ├── edified_log_purple.json │ │ │ ├── edified_panel.json │ │ │ ├── edified_planks.json │ │ │ ├── edified_pressure_plate.json │ │ │ ├── edified_slab.json │ │ │ ├── edified_stairs.json │ │ │ ├── edified_tile.json │ │ │ ├── edified_trapdoor.json │ │ │ ├── edified_wood.json │ │ │ ├── impetus │ │ │ │ ├── empty.json │ │ │ │ ├── look.json │ │ │ │ ├── redstone.json │ │ │ │ └── rightclick.json │ │ │ ├── quenched_allay.json │ │ │ ├── quenched_allay_bricks.json │ │ │ ├── quenched_allay_bricks_small.json │ │ │ ├── quenched_allay_tiles.json │ │ │ ├── scroll_paper.json │ │ │ ├── scroll_paper_lantern.json │ │ │ ├── slate.json │ │ │ ├── slate_amethyst_bricks.json │ │ │ ├── slate_amethyst_bricks_small.json │ │ │ ├── slate_amethyst_pillar.json │ │ │ ├── slate_amethyst_tiles.json │ │ │ ├── slate_block.json │ │ │ ├── slate_bricks.json │ │ │ ├── slate_bricks_small.json │ │ │ ├── slate_pillar.json │ │ │ ├── slate_tiles.json │ │ │ ├── stripped_edified_log.json │ │ │ └── stripped_edified_wood.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── akashic_bookshelf.json │ │ │ ├── akashic_bookshelf_1.json │ │ │ ├── akashic_bookshelf_2.json │ │ │ ├── akashic_bookshelf_3.json │ │ │ ├── akashic_bookshelf_4.json │ │ │ ├── akashic_bookshelf_empty.json │ │ │ ├── akashic_ligature.json │ │ │ ├── akashic_record.json │ │ │ ├── amethyst_dust_block.json │ │ │ ├── amethyst_edified_leaves.json │ │ │ ├── ancient_scroll_paper.json │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ ├── aventurine_edified_leaves.json │ │ │ ├── circle │ │ │ │ ├── directrix │ │ │ │ │ ├── boolean │ │ │ │ │ │ ├── dim_false_down.json │ │ │ │ │ │ ├── dim_false_east.json │ │ │ │ │ │ ├── dim_false_north.json │ │ │ │ │ │ ├── dim_false_south.json │ │ │ │ │ │ ├── dim_false_up.json │ │ │ │ │ │ ├── dim_false_west.json │ │ │ │ │ │ ├── dim_neither_down.json │ │ │ │ │ │ ├── dim_neither_east.json │ │ │ │ │ │ ├── dim_neither_north.json │ │ │ │ │ │ ├── dim_neither_south.json │ │ │ │ │ │ ├── dim_neither_up.json │ │ │ │ │ │ ├── dim_neither_west.json │ │ │ │ │ │ ├── dim_true_down.json │ │ │ │ │ │ ├── dim_true_east.json │ │ │ │ │ │ ├── dim_true_north.json │ │ │ │ │ │ ├── dim_true_south.json │ │ │ │ │ │ ├── dim_true_up.json │ │ │ │ │ │ ├── dim_true_west.json │ │ │ │ │ │ ├── lit_false_down.json │ │ │ │ │ │ ├── lit_false_east.json │ │ │ │ │ │ ├── lit_false_north.json │ │ │ │ │ │ ├── lit_false_south.json │ │ │ │ │ │ ├── lit_false_up.json │ │ │ │ │ │ ├── lit_false_west.json │ │ │ │ │ │ ├── lit_neither_down.json │ │ │ │ │ │ ├── lit_neither_east.json │ │ │ │ │ │ ├── lit_neither_north.json │ │ │ │ │ │ ├── lit_neither_south.json │ │ │ │ │ │ ├── lit_neither_up.json │ │ │ │ │ │ ├── lit_neither_west.json │ │ │ │ │ │ ├── lit_true_down.json │ │ │ │ │ │ ├── lit_true_east.json │ │ │ │ │ │ ├── lit_true_north.json │ │ │ │ │ │ ├── lit_true_south.json │ │ │ │ │ │ ├── lit_true_up.json │ │ │ │ │ │ └── lit_true_west.json │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── dim_down.json │ │ │ │ │ │ ├── dim_east.json │ │ │ │ │ │ ├── dim_north.json │ │ │ │ │ │ ├── dim_south.json │ │ │ │ │ │ ├── dim_up.json │ │ │ │ │ │ ├── dim_west.json │ │ │ │ │ │ ├── lit_down.json │ │ │ │ │ │ ├── lit_east.json │ │ │ │ │ │ ├── lit_north.json │ │ │ │ │ │ ├── lit_south.json │ │ │ │ │ │ ├── lit_up.json │ │ │ │ │ │ └── lit_west.json │ │ │ │ │ └── redstone │ │ │ │ │ │ ├── dim_powered_down.json │ │ │ │ │ │ ├── dim_powered_east.json │ │ │ │ │ │ ├── dim_powered_north.json │ │ │ │ │ │ ├── dim_powered_south.json │ │ │ │ │ │ ├── dim_powered_up.json │ │ │ │ │ │ ├── dim_powered_west.json │ │ │ │ │ │ ├── dim_unpowered_down.json │ │ │ │ │ │ ├── dim_unpowered_east.json │ │ │ │ │ │ ├── dim_unpowered_north.json │ │ │ │ │ │ ├── dim_unpowered_south.json │ │ │ │ │ │ ├── dim_unpowered_up.json │ │ │ │ │ │ ├── dim_unpowered_west.json │ │ │ │ │ │ ├── lit_powered_down.json │ │ │ │ │ │ ├── lit_powered_east.json │ │ │ │ │ │ ├── lit_powered_north.json │ │ │ │ │ │ ├── lit_powered_south.json │ │ │ │ │ │ ├── lit_powered_up.json │ │ │ │ │ │ ├── lit_powered_west.json │ │ │ │ │ │ ├── lit_unpowered_down.json │ │ │ │ │ │ ├── lit_unpowered_east.json │ │ │ │ │ │ ├── lit_unpowered_north.json │ │ │ │ │ │ ├── lit_unpowered_south.json │ │ │ │ │ │ ├── lit_unpowered_up.json │ │ │ │ │ │ └── lit_unpowered_west.json │ │ │ │ └── impetus │ │ │ │ │ ├── empty │ │ │ │ │ ├── dim_down.json │ │ │ │ │ ├── dim_east.json │ │ │ │ │ ├── dim_north.json │ │ │ │ │ ├── dim_south.json │ │ │ │ │ ├── dim_up.json │ │ │ │ │ ├── dim_west.json │ │ │ │ │ ├── lit_down.json │ │ │ │ │ ├── lit_east.json │ │ │ │ │ ├── lit_north.json │ │ │ │ │ ├── lit_south.json │ │ │ │ │ ├── lit_up.json │ │ │ │ │ └── lit_west.json │ │ │ │ │ ├── look │ │ │ │ │ ├── dim_down.json │ │ │ │ │ ├── dim_east.json │ │ │ │ │ ├── dim_north.json │ │ │ │ │ ├── dim_south.json │ │ │ │ │ ├── dim_up.json │ │ │ │ │ ├── dim_west.json │ │ │ │ │ ├── lit_down.json │ │ │ │ │ ├── lit_east.json │ │ │ │ │ ├── lit_north.json │ │ │ │ │ ├── lit_south.json │ │ │ │ │ ├── lit_up.json │ │ │ │ │ └── lit_west.json │ │ │ │ │ ├── redstone │ │ │ │ │ ├── dim_down.json │ │ │ │ │ ├── dim_east.json │ │ │ │ │ ├── dim_north.json │ │ │ │ │ ├── dim_south.json │ │ │ │ │ ├── dim_up.json │ │ │ │ │ ├── dim_west.json │ │ │ │ │ ├── lit_down.json │ │ │ │ │ ├── lit_east.json │ │ │ │ │ ├── lit_north.json │ │ │ │ │ ├── lit_south.json │ │ │ │ │ ├── lit_up.json │ │ │ │ │ └── lit_west.json │ │ │ │ │ └── rightclick │ │ │ │ │ ├── dim_down.json │ │ │ │ │ ├── dim_east.json │ │ │ │ │ ├── dim_north.json │ │ │ │ │ ├── dim_south.json │ │ │ │ │ ├── dim_up.json │ │ │ │ │ ├── dim_west.json │ │ │ │ │ ├── lit_down.json │ │ │ │ │ ├── lit_east.json │ │ │ │ │ ├── lit_north.json │ │ │ │ │ ├── lit_south.json │ │ │ │ │ ├── lit_up.json │ │ │ │ │ └── lit_west.json │ │ │ ├── citrine_edified_leaves.json │ │ │ ├── conjured.json │ │ │ ├── deco │ │ │ │ ├── amethyst_bricks.json │ │ │ │ ├── amethyst_bricks_small.json │ │ │ │ ├── amethyst_pillar.json │ │ │ │ ├── amethyst_tiles.json │ │ │ │ ├── quenched_allay_bricks_0.json │ │ │ │ ├── quenched_allay_bricks_1.json │ │ │ │ ├── quenched_allay_bricks_2.json │ │ │ │ ├── quenched_allay_bricks_3.json │ │ │ │ ├── quenched_allay_bricks_small_0.json │ │ │ │ ├── quenched_allay_bricks_small_1.json │ │ │ │ ├── quenched_allay_bricks_small_2.json │ │ │ │ ├── quenched_allay_bricks_small_3.json │ │ │ │ ├── quenched_allay_tiles_0.json │ │ │ │ ├── quenched_allay_tiles_1.json │ │ │ │ ├── quenched_allay_tiles_2.json │ │ │ │ ├── quenched_allay_tiles_3.json │ │ │ │ ├── slate_amethyst_bricks_0.json │ │ │ │ ├── slate_amethyst_bricks_1.json │ │ │ │ ├── slate_amethyst_bricks_2.json │ │ │ │ ├── slate_amethyst_bricks_small_0.json │ │ │ │ ├── slate_amethyst_bricks_small_1.json │ │ │ │ ├── slate_amethyst_bricks_small_2.json │ │ │ │ ├── slate_amethyst_tiles.json │ │ │ │ ├── slate_bricks.json │ │ │ │ ├── slate_bricks_small.json │ │ │ │ └── slate_tiles.json │ │ │ ├── edified_button.json │ │ │ ├── edified_button_pressed.json │ │ │ ├── edified_door_bottom_left.json │ │ │ ├── edified_door_bottom_left_open.json │ │ │ ├── edified_door_bottom_right.json │ │ │ ├── edified_door_bottom_right_open.json │ │ │ ├── edified_door_top_left.json │ │ │ ├── edified_door_top_left_open.json │ │ │ ├── edified_door_top_right.json │ │ │ ├── edified_door_top_right_open.json │ │ │ ├── edified_fence_gate.json │ │ │ ├── edified_fence_gate_open.json │ │ │ ├── edified_fence_gate_wall.json │ │ │ ├── edified_fence_gate_wall_open.json │ │ │ ├── edified_fence_post.json │ │ │ ├── edified_fence_side.json │ │ │ ├── edified_log.json │ │ │ ├── edified_log_amethyst.json │ │ │ ├── edified_log_amethyst_horizontal.json │ │ │ ├── edified_log_aventurine.json │ │ │ ├── edified_log_aventurine_horizontal.json │ │ │ ├── edified_log_citrine.json │ │ │ ├── edified_log_citrine_horizontal.json │ │ │ ├── edified_log_horizontal.json │ │ │ ├── edified_log_purple.json │ │ │ ├── edified_log_purple_horizontal.json │ │ │ ├── edified_panel.json │ │ │ ├── edified_planks.json │ │ │ ├── edified_planks_2.json │ │ │ ├── edified_planks_3.json │ │ │ ├── edified_pressure_plate.json │ │ │ ├── edified_pressure_plate_down.json │ │ │ ├── edified_slab.json │ │ │ ├── edified_slab_top.json │ │ │ ├── edified_stairs.json │ │ │ ├── edified_stairs_inner.json │ │ │ ├── edified_stairs_outer.json │ │ │ ├── edified_tile.json │ │ │ ├── edified_trapdoor_bottom.json │ │ │ ├── edified_trapdoor_open.json │ │ │ ├── edified_trapdoor_top.json │ │ │ ├── edified_wood.json │ │ │ ├── edified_wood_horizontal.json │ │ │ ├── quenched_allay.json │ │ │ ├── quenched_allay_0.json │ │ │ ├── quenched_allay_1.json │ │ │ ├── quenched_allay_2.json │ │ │ ├── quenched_allay_3.json │ │ │ ├── quenched_allay_bricks.json │ │ │ ├── quenched_allay_bricks_small.json │ │ │ ├── quenched_allay_tiles.json │ │ │ ├── scroll_paper.json │ │ │ ├── scroll_paper_lantern.json │ │ │ ├── slate_amethyst_pillar.json │ │ │ ├── slate_amethyst_pillar_horizontal.json │ │ │ ├── slate_block.json │ │ │ ├── slate_pillar.json │ │ │ ├── slate_pillar_horizontal.json │ │ │ ├── stripped_edified_log.json │ │ │ ├── stripped_edified_log_horizontal.json │ │ │ ├── stripped_edified_wood.json │ │ │ └── stripped_edified_wood_horizontal.json │ │ │ ├── item │ │ │ ├── abacus.json │ │ │ ├── akashic_bookshelf.json │ │ │ ├── akashic_connector.json │ │ │ ├── akashic_record.json │ │ │ ├── amethyst_bricks.json │ │ │ ├── amethyst_bricks_small.json │ │ │ ├── amethyst_dust.json │ │ │ ├── amethyst_dust_block.json │ │ │ ├── amethyst_edified_leaves.json │ │ │ ├── amethyst_pillar.json │ │ │ ├── amethyst_sconce.json │ │ │ ├── amethyst_tiles.json │ │ │ ├── ancient_cypher.json │ │ │ ├── ancient_cypher_0_filled.json │ │ │ ├── ancient_cypher_1.json │ │ │ ├── ancient_cypher_1_filled.json │ │ │ ├── ancient_cypher_2.json │ │ │ ├── ancient_cypher_2_filled.json │ │ │ ├── ancient_cypher_3.json │ │ │ ├── ancient_cypher_3_filled.json │ │ │ ├── ancient_cypher_4.json │ │ │ ├── ancient_cypher_4_filled.json │ │ │ ├── ancient_cypher_5.json │ │ │ ├── ancient_cypher_5_filled.json │ │ │ ├── ancient_cypher_6.json │ │ │ ├── ancient_cypher_6_filled.json │ │ │ ├── ancient_cypher_7.json │ │ │ ├── ancient_cypher_7_filled.json │ │ │ ├── ancient_scroll_paper.json │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ ├── artifact.json │ │ │ ├── artifact_0_filled.json │ │ │ ├── artifact_1.json │ │ │ ├── artifact_1_filled.json │ │ │ ├── artifact_2.json │ │ │ ├── artifact_2_filled.json │ │ │ ├── artifact_3.json │ │ │ ├── artifact_3_filled.json │ │ │ ├── artifact_4.json │ │ │ ├── artifact_4_filled.json │ │ │ ├── artifact_5.json │ │ │ ├── artifact_5_filled.json │ │ │ ├── artifact_6.json │ │ │ ├── artifact_6_filled.json │ │ │ ├── artifact_7.json │ │ │ ├── artifact_7_filled.json │ │ │ ├── aventurine_edified_leaves.json │ │ │ ├── battery.json │ │ │ ├── charged_amethyst.json │ │ │ ├── cherry_staff.json │ │ │ ├── citrine_edified_leaves.json │ │ │ ├── conjured_block.json │ │ │ ├── conjured_light.json │ │ │ ├── creative_unlocker.json │ │ │ ├── cypher.json │ │ │ ├── cypher_0_filled.json │ │ │ ├── cypher_1.json │ │ │ ├── cypher_1_filled.json │ │ │ ├── cypher_2.json │ │ │ ├── cypher_2_filled.json │ │ │ ├── cypher_3.json │ │ │ ├── cypher_3_filled.json │ │ │ ├── cypher_4.json │ │ │ ├── cypher_4_filled.json │ │ │ ├── cypher_5.json │ │ │ ├── cypher_5_filled.json │ │ │ ├── cypher_6.json │ │ │ ├── cypher_6_filled.json │ │ │ ├── cypher_7.json │ │ │ ├── cypher_7_filled.json │ │ │ ├── default_colorizer.json │ │ │ ├── directrix │ │ │ │ ├── boolean.json │ │ │ │ ├── empty.json │ │ │ │ └── redstone.json │ │ │ ├── dye_colorizer_black.json │ │ │ ├── dye_colorizer_blue.json │ │ │ ├── dye_colorizer_brown.json │ │ │ ├── dye_colorizer_cyan.json │ │ │ ├── dye_colorizer_gray.json │ │ │ ├── dye_colorizer_green.json │ │ │ ├── dye_colorizer_light_blue.json │ │ │ ├── dye_colorizer_light_gray.json │ │ │ ├── dye_colorizer_lime.json │ │ │ ├── dye_colorizer_magenta.json │ │ │ ├── dye_colorizer_orange.json │ │ │ ├── dye_colorizer_pink.json │ │ │ ├── dye_colorizer_purple.json │ │ │ ├── dye_colorizer_red.json │ │ │ ├── dye_colorizer_white.json │ │ │ ├── dye_colorizer_yellow.json │ │ │ ├── edified_button.json │ │ │ ├── edified_door.json │ │ │ ├── edified_fence.json │ │ │ ├── edified_fence_gate.json │ │ │ ├── edified_log.json │ │ │ ├── edified_log_amethyst.json │ │ │ ├── edified_log_aventurine.json │ │ │ ├── edified_log_citrine.json │ │ │ ├── edified_log_purple.json │ │ │ ├── edified_panel.json │ │ │ ├── edified_planks.json │ │ │ ├── edified_pressure_plate.json │ │ │ ├── edified_slab.json │ │ │ ├── edified_stairs.json │ │ │ ├── edified_tile.json │ │ │ ├── edified_trapdoor.json │ │ │ ├── edified_wood.json │ │ │ ├── focus.json │ │ │ ├── focus_0_filled.json │ │ │ ├── focus_0_sealed.json │ │ │ ├── focus_1.json │ │ │ ├── focus_1_filled.json │ │ │ ├── focus_1_sealed.json │ │ │ ├── focus_2.json │ │ │ ├── focus_2_filled.json │ │ │ ├── focus_2_sealed.json │ │ │ ├── focus_3.json │ │ │ ├── focus_3_filled.json │ │ │ ├── focus_3_sealed.json │ │ │ ├── focus_4.json │ │ │ ├── focus_4_filled.json │ │ │ ├── focus_4_sealed.json │ │ │ ├── focus_5.json │ │ │ ├── focus_5_filled.json │ │ │ ├── focus_5_sealed.json │ │ │ ├── focus_6.json │ │ │ ├── focus_6_filled.json │ │ │ ├── focus_6_sealed.json │ │ │ ├── focus_7.json │ │ │ ├── focus_7_filled.json │ │ │ ├── focus_7_sealed.json │ │ │ ├── impetus │ │ │ │ ├── empty.json │ │ │ │ ├── look.json │ │ │ │ ├── redstone.json │ │ │ │ └── rightclick.json │ │ │ ├── jeweler_hammer.json │ │ │ ├── lens.json │ │ │ ├── lore_fragment.json │ │ │ ├── old_staff.json │ │ │ ├── patchouli_book.json │ │ │ ├── phial_large_0.json │ │ │ ├── phial_large_1.json │ │ │ ├── phial_large_2.json │ │ │ ├── phial_large_3.json │ │ │ ├── phial_large_4.json │ │ │ ├── phial_larger_0.json │ │ │ ├── phial_larger_1.json │ │ │ ├── phial_larger_2.json │ │ │ ├── phial_larger_3.json │ │ │ ├── phial_larger_4.json │ │ │ ├── phial_largest_0.json │ │ │ ├── phial_largest_1.json │ │ │ ├── phial_largest_2.json │ │ │ ├── phial_largest_3.json │ │ │ ├── phial_largest_4.json │ │ │ ├── phial_medium_0.json │ │ │ ├── phial_medium_1.json │ │ │ ├── phial_medium_2.json │ │ │ ├── phial_medium_3.json │ │ │ ├── phial_medium_4.json │ │ │ ├── phial_small_0.json │ │ │ ├── phial_small_1.json │ │ │ ├── phial_small_2.json │ │ │ ├── phial_small_3.json │ │ │ ├── phial_small_4.json │ │ │ ├── pride_colorizer_agender.json │ │ │ ├── pride_colorizer_aroace.json │ │ │ ├── pride_colorizer_aromantic.json │ │ │ ├── pride_colorizer_asexual.json │ │ │ ├── pride_colorizer_bisexual.json │ │ │ ├── pride_colorizer_demiboy.json │ │ │ ├── pride_colorizer_demigirl.json │ │ │ ├── pride_colorizer_gay.json │ │ │ ├── pride_colorizer_genderfluid.json │ │ │ ├── pride_colorizer_genderqueer.json │ │ │ ├── pride_colorizer_intersex.json │ │ │ ├── pride_colorizer_lesbian.json │ │ │ ├── pride_colorizer_nonbinary.json │ │ │ ├── pride_colorizer_pansexual.json │ │ │ ├── pride_colorizer_plural.json │ │ │ ├── pride_colorizer_transgender.json │ │ │ ├── quenched_allay.json │ │ │ ├── quenched_allay_bricks.json │ │ │ ├── quenched_allay_bricks_small.json │ │ │ ├── quenched_allay_shard.json │ │ │ ├── quenched_allay_tiles.json │ │ │ ├── quenched_shard_0.json │ │ │ ├── quenched_shard_1.json │ │ │ ├── quenched_shard_2.json │ │ │ ├── quenched_shard_3.json │ │ │ ├── scroll.json │ │ │ ├── scroll_ancient_large.json │ │ │ ├── scroll_ancient_medium.json │ │ │ ├── scroll_ancient_small.json │ │ │ ├── scroll_medium.json │ │ │ ├── scroll_paper.json │ │ │ ├── scroll_paper_lantern.json │ │ │ ├── scroll_pristine_large.json │ │ │ ├── scroll_pristine_medium.json │ │ │ ├── scroll_pristine_small.json │ │ │ ├── scroll_small.json │ │ │ ├── slate.json │ │ │ ├── slate_amethyst_bricks.json │ │ │ ├── slate_amethyst_bricks_small.json │ │ │ ├── slate_amethyst_pillar.json │ │ │ ├── slate_amethyst_tiles.json │ │ │ ├── slate_blank.json │ │ │ ├── slate_block.json │ │ │ ├── slate_bricks.json │ │ │ ├── slate_bricks_small.json │ │ │ ├── slate_pillar.json │ │ │ ├── slate_tiles.json │ │ │ ├── slate_written.json │ │ │ ├── spellbook.json │ │ │ ├── spellbook_0_filled.json │ │ │ ├── spellbook_0_sealed.json │ │ │ ├── spellbook_1.json │ │ │ ├── spellbook_1_filled.json │ │ │ ├── spellbook_1_sealed.json │ │ │ ├── spellbook_2.json │ │ │ ├── spellbook_2_filled.json │ │ │ ├── spellbook_2_sealed.json │ │ │ ├── spellbook_3.json │ │ │ ├── spellbook_3_filled.json │ │ │ ├── spellbook_3_sealed.json │ │ │ ├── spellbook_4.json │ │ │ ├── spellbook_4_filled.json │ │ │ ├── spellbook_4_sealed.json │ │ │ ├── spellbook_5.json │ │ │ ├── spellbook_5_filled.json │ │ │ ├── spellbook_5_sealed.json │ │ │ ├── spellbook_6.json │ │ │ ├── spellbook_6_filled.json │ │ │ ├── spellbook_6_sealed.json │ │ │ ├── spellbook_7.json │ │ │ ├── spellbook_7_filled.json │ │ │ ├── spellbook_7_sealed.json │ │ │ ├── staff │ │ │ │ ├── acacia.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── birch.json │ │ │ │ ├── cherry.json │ │ │ │ ├── crimson.json │ │ │ │ ├── dark_oak.json │ │ │ │ ├── edified.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mangrove.json │ │ │ │ ├── mindsplice.json │ │ │ │ ├── oak.json │ │ │ │ ├── quenched.json │ │ │ │ ├── quenched_0.json │ │ │ │ ├── quenched_1.json │ │ │ │ ├── quenched_2.json │ │ │ │ ├── quenched_3.json │ │ │ │ ├── spruce.json │ │ │ │ └── warped.json │ │ │ ├── stripped_edified_log.json │ │ │ ├── stripped_edified_wood.json │ │ │ ├── sub_sandwich.json │ │ │ ├── thought_knot.json │ │ │ ├── thought_knot_written.json │ │ │ ├── trinket.json │ │ │ ├── trinket_0_filled.json │ │ │ ├── trinket_1.json │ │ │ ├── trinket_1_filled.json │ │ │ ├── trinket_2.json │ │ │ ├── trinket_2_filled.json │ │ │ ├── trinket_3.json │ │ │ ├── trinket_3_filled.json │ │ │ ├── trinket_4.json │ │ │ ├── trinket_4_filled.json │ │ │ ├── trinket_5.json │ │ │ ├── trinket_5_filled.json │ │ │ ├── trinket_6.json │ │ │ ├── trinket_6_filled.json │ │ │ ├── trinket_7.json │ │ │ ├── trinket_7_filled.json │ │ │ └── uuid_colorizer.json │ │ │ └── staff │ │ │ ├── acacia.json │ │ │ ├── bamboo.json │ │ │ ├── birch.json │ │ │ ├── cherry.json │ │ │ ├── crimson.json │ │ │ ├── dark_oak.json │ │ │ ├── edified.json │ │ │ ├── jungle.json │ │ │ ├── mangrove.json │ │ │ ├── mindsplice.json │ │ │ ├── oak.json │ │ │ ├── spruce.json │ │ │ └── warped.json │ │ └── data │ │ ├── hexcasting │ │ ├── advancements │ │ │ ├── aaa_wasteful_cast.json │ │ │ ├── aab_big_cast.json │ │ │ ├── creative_unlocker.json │ │ │ ├── enlightenment.json │ │ │ ├── lore.json │ │ │ ├── lore │ │ │ │ ├── cardamom1.json │ │ │ │ ├── cardamom2.json │ │ │ │ ├── cardamom3.json │ │ │ │ ├── cardamom4.json │ │ │ │ ├── cardamom5.json │ │ │ │ ├── experiment1.json │ │ │ │ ├── experiment2.json │ │ │ │ └── inventory.json │ │ │ ├── opened_eyes.json │ │ │ ├── root.json │ │ │ └── y_u_no_cast_angy.json │ │ └── damage_type │ │ │ └── overcast.json │ │ └── minecraft │ │ └── tags │ │ └── damage_type │ │ ├── bypasses_armor.json │ │ ├── bypasses_effects.json │ │ └── bypasses_shield.json │ ├── main │ ├── java │ │ └── at │ │ │ └── petrak │ │ │ └── hexcasting │ │ │ ├── README.md │ │ │ ├── annotations │ │ │ └── SoftImplement.java │ │ │ ├── api │ │ │ ├── HexAPI.java │ │ │ ├── addldata │ │ │ │ ├── ADHexHolder.java │ │ │ │ ├── ADIotaHolder.java │ │ │ │ ├── ADMediaHolder.java │ │ │ │ ├── ADPigment.java │ │ │ │ ├── ADVariantItem.java │ │ │ │ ├── ItemDelegatingEntityIotaHolder.java │ │ │ │ └── package-info.java │ │ │ ├── advancements │ │ │ │ ├── FailToCastGreatSpellTrigger.java │ │ │ │ ├── HexAdvancementTriggers.java │ │ │ │ ├── MinMaxLongs.java │ │ │ │ ├── OvercastTrigger.java │ │ │ │ └── SpendMediaTrigger.java │ │ │ ├── block │ │ │ │ ├── HexBlockEntity.java │ │ │ │ └── circle │ │ │ │ │ ├── BlockAbstractImpetus.java │ │ │ │ │ └── BlockCircleComponent.java │ │ │ ├── casting │ │ │ │ ├── ActionRegistryEntry.java │ │ │ │ ├── ActionUtils.kt │ │ │ │ ├── ParticleSpray.kt │ │ │ │ ├── PatternShapeMatch.java │ │ │ │ ├── RenderedSpell.kt │ │ │ │ ├── SpellList.kt │ │ │ │ ├── arithmetic │ │ │ │ │ ├── Arithmetic.java │ │ │ │ │ ├── IterPair.java │ │ │ │ │ ├── TripleIterable.java │ │ │ │ │ ├── engine │ │ │ │ │ │ ├── ArithmeticEngine.java │ │ │ │ │ │ ├── HashCons.java │ │ │ │ │ │ ├── InvalidOperatorException.java │ │ │ │ │ │ └── NoOperatorCandidatesException.java │ │ │ │ │ ├── operator │ │ │ │ │ │ ├── Operator.kt │ │ │ │ │ │ ├── OperatorBasic.kt │ │ │ │ │ │ ├── OperatorBinary.java │ │ │ │ │ │ └── OperatorUnary.java │ │ │ │ │ └── predicates │ │ │ │ │ │ ├── IotaMultiPredicate.java │ │ │ │ │ │ └── IotaPredicate.java │ │ │ │ ├── castables │ │ │ │ │ ├── Action.kt │ │ │ │ │ ├── ConstMediaAction.kt │ │ │ │ │ ├── OperationAction.kt │ │ │ │ │ ├── SpecialHandler.java │ │ │ │ │ └── SpellAction.kt │ │ │ │ ├── circles │ │ │ │ │ ├── BlockEntityAbstractImpetus.java │ │ │ │ │ ├── CircleExecutionState.java │ │ │ │ │ └── ICircleComponent.java │ │ │ │ ├── eval │ │ │ │ │ ├── CastResult.kt │ │ │ │ │ ├── CastingEnvironment.java │ │ │ │ │ ├── CastingEnvironmentComponent.java │ │ │ │ │ ├── ExecutionClientView.kt │ │ │ │ │ ├── MishapEnvironment.java │ │ │ │ │ ├── OperationResult.kt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── ResolvedPattern.kt │ │ │ │ │ ├── ResolvedPatternType.kt │ │ │ │ │ ├── SpecialPatterns.java │ │ │ │ │ ├── SpellCircleContext.kt │ │ │ │ │ ├── env │ │ │ │ │ │ ├── CircleCastEnv.java │ │ │ │ │ │ ├── CircleMishapEnv.java │ │ │ │ │ │ ├── PackagedItemCastEnv.java │ │ │ │ │ │ ├── PlayerBasedCastEnv.java │ │ │ │ │ │ ├── PlayerBasedMishapEnv.java │ │ │ │ │ │ ├── StaffCastEnv.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── sideeffects │ │ │ │ │ │ ├── EvalSound.java │ │ │ │ │ │ └── OperatorSideEffect.kt │ │ │ │ │ └── vm │ │ │ │ │ │ ├── CastingImage.kt │ │ │ │ │ │ ├── CastingVM.kt │ │ │ │ │ │ ├── ContinuationFrame.kt │ │ │ │ │ │ ├── FrameEvaluate.kt │ │ │ │ │ │ ├── FrameFinishEval.kt │ │ │ │ │ │ ├── FrameForEach.kt │ │ │ │ │ │ ├── FunctionalData.kt │ │ │ │ │ │ └── SpellContinuation.kt │ │ │ │ ├── iota │ │ │ │ │ ├── BooleanIota.java │ │ │ │ │ ├── ContinuationIota.java │ │ │ │ │ ├── DoubleIota.java │ │ │ │ │ ├── EntityIota.java │ │ │ │ │ ├── GarbageIota.java │ │ │ │ │ ├── Iota.java │ │ │ │ │ ├── IotaType.java │ │ │ │ │ ├── ListIota.java │ │ │ │ │ ├── NullIota.java │ │ │ │ │ ├── PatternIota.java │ │ │ │ │ └── Vec3Iota.java │ │ │ │ ├── math │ │ │ │ │ ├── EulerPathFinder.kt │ │ │ │ │ ├── HexAngle.kt │ │ │ │ │ ├── HexCoord.kt │ │ │ │ │ ├── HexDir.kt │ │ │ │ │ └── HexPattern.kt │ │ │ │ └── mishaps │ │ │ │ │ ├── Mishap.kt │ │ │ │ │ ├── MishapAlreadyBrainswept.kt │ │ │ │ │ ├── MishapBadBlock.kt │ │ │ │ │ ├── MishapBadBrainsweep.kt │ │ │ │ │ ├── MishapBadCaster.kt │ │ │ │ │ ├── MishapBadEntity.kt │ │ │ │ │ ├── MishapBadItem.kt │ │ │ │ │ ├── MishapBadLocation.kt │ │ │ │ │ ├── MishapBadOffhandItem.kt │ │ │ │ │ ├── MishapDisallowedSpell.kt │ │ │ │ │ ├── MishapDivideByZero.kt │ │ │ │ │ ├── MishapEntityTooFarAway.kt │ │ │ │ │ ├── MishapEvalTooMuch.kt │ │ │ │ │ ├── MishapImmuneEntity.kt │ │ │ │ │ ├── MishapInternalException.kt │ │ │ │ │ ├── MishapInvalidIota.kt │ │ │ │ │ ├── MishapInvalidOperatorArgs.kt │ │ │ │ │ ├── MishapInvalidPattern.kt │ │ │ │ │ ├── MishapInvalidSpellDatumType.kt │ │ │ │ │ ├── MishapLocationInWrongDimension.kt │ │ │ │ │ ├── MishapNoAkashicRecord.kt │ │ │ │ │ ├── MishapNotEnoughArgs.kt │ │ │ │ │ ├── MishapNotEnoughMedia.kt │ │ │ │ │ ├── MishapOthersName.kt │ │ │ │ │ ├── MishapStackSize.kt │ │ │ │ │ ├── MishapTooManyCloseParens.kt │ │ │ │ │ ├── MishapUnenlightened.kt │ │ │ │ │ ├── MishapUnescapedValue.kt │ │ │ │ │ └── circle │ │ │ │ │ ├── MishapBoolDirectrixEmptyStack.kt │ │ │ │ │ ├── MishapBoolDirectrixNotBool.kt │ │ │ │ │ └── MishapNoSpellCircle.kt │ │ │ ├── client │ │ │ │ ├── ClientCastingStack.kt │ │ │ │ ├── ClientRenderHelper.kt │ │ │ │ ├── HexPatternRenderHolder.kt │ │ │ │ └── ScryingLensOverlayRegistry.java │ │ │ ├── item │ │ │ │ ├── HexHolderItem.java │ │ │ │ ├── IotaHolderItem.java │ │ │ │ ├── MediaHolderItem.java │ │ │ │ ├── PigmentItem.java │ │ │ │ └── VariantItem.java │ │ │ ├── misc │ │ │ │ ├── DiscoveryHandlers.java │ │ │ │ ├── MediaConstants.java │ │ │ │ ├── Result.java │ │ │ │ └── TriPredicate.java │ │ │ ├── mod │ │ │ │ ├── HexApiMessages.java │ │ │ │ ├── HexConfig.java │ │ │ │ ├── HexStatistics.java │ │ │ │ └── HexTags.java │ │ │ ├── pigment │ │ │ │ ├── ColorProvider.java │ │ │ │ └── FrozenPigment.java │ │ │ ├── player │ │ │ │ ├── AltioraAbility.java │ │ │ │ ├── FlightAbility.java │ │ │ │ └── Sentinel.java │ │ │ └── utils │ │ │ │ ├── HexUtils.kt │ │ │ │ ├── MathUtils.kt │ │ │ │ ├── MediaHelper.kt │ │ │ │ ├── NBTDsl.kt │ │ │ │ └── NBTHelper.kt │ │ │ ├── client │ │ │ ├── ClientTickCounter.java │ │ │ ├── PatternShapeMatcher.java │ │ │ ├── RegisterClientStuff.java │ │ │ ├── ShiftScrollListener.java │ │ │ ├── entity │ │ │ │ └── WallScrollRenderer.java │ │ │ ├── gui │ │ │ │ ├── GuiSpellcasting.kt │ │ │ │ └── PatternTooltipComponent.java │ │ │ ├── ktxt │ │ │ │ └── ClientAccessorWrappers.kt │ │ │ ├── model │ │ │ │ ├── AltioraLayer.java │ │ │ │ ├── HexModelLayers.java │ │ │ │ ├── HexRobesModels.java │ │ │ │ └── MyOwnArmorModelWithBlackjackAndHookers.java │ │ │ ├── particles │ │ │ │ └── ConjureParticle.java │ │ │ ├── render │ │ │ │ ├── GaslightingTracker.java │ │ │ │ ├── HexAdditionalRenderers.java │ │ │ │ ├── HexPatternLike.java │ │ │ │ ├── HexPatternPoints.java │ │ │ │ ├── PATTERN_RENDER_LORE.md │ │ │ │ ├── PatternColors.java │ │ │ │ ├── PatternRenderer.java │ │ │ │ ├── PatternSettings.java │ │ │ │ ├── PatternTextureManager.java │ │ │ │ ├── RenderLib.kt │ │ │ │ ├── ScryingLensOverlays.java │ │ │ │ ├── VCDrawHelper.kt │ │ │ │ ├── WorldlyPatternRenderHelpers.java │ │ │ │ ├── be │ │ │ │ │ ├── BlockEntityAkashicBookshelfRenderer.java │ │ │ │ │ ├── BlockEntityQuenchedAllayRenderer.java │ │ │ │ │ └── BlockEntitySlateRenderer.java │ │ │ │ └── shader │ │ │ │ │ ├── FakeBufferSource.java │ │ │ │ │ ├── HexRenderTypes.java │ │ │ │ │ └── HexShaders.java │ │ │ └── sound │ │ │ │ └── GridSoundInstance.kt │ │ │ ├── common │ │ │ ├── blocks │ │ │ │ ├── BlockConjured.java │ │ │ │ ├── BlockConjuredLight.java │ │ │ │ ├── BlockFlammable.java │ │ │ │ ├── BlockQuenchedAllay.java │ │ │ │ ├── akashic │ │ │ │ │ ├── AkashicFloodfiller.java │ │ │ │ │ ├── BlockAkashicBookshelf.java │ │ │ │ │ ├── BlockAkashicLigature.java │ │ │ │ │ ├── BlockAkashicRecord.java │ │ │ │ │ └── BlockEntityAkashicBookshelf.java │ │ │ │ ├── behavior │ │ │ │ │ ├── HexComposting.java │ │ │ │ │ └── HexStrippables.java │ │ │ │ ├── circles │ │ │ │ │ ├── BlockEmptyImpetus.java │ │ │ │ │ ├── BlockEntitySlate.java │ │ │ │ │ ├── BlockSlate.java │ │ │ │ │ ├── directrix │ │ │ │ │ │ ├── BlockBooleanDirectrix.java │ │ │ │ │ │ ├── BlockEmptyDirectrix.java │ │ │ │ │ │ └── BlockRedstoneDirectrix.java │ │ │ │ │ └── impetuses │ │ │ │ │ │ ├── BlockEntityLookingImpetus.java │ │ │ │ │ │ ├── BlockEntityRedstoneImpetus.java │ │ │ │ │ │ ├── BlockEntityRightClickImpetus.java │ │ │ │ │ │ ├── BlockLookingImpetus.java │ │ │ │ │ │ ├── BlockRedstoneImpetus.java │ │ │ │ │ │ └── BlockRightClickImpetus.java │ │ │ │ ├── decoration │ │ │ │ │ ├── BlockAkashicLeaves.java │ │ │ │ │ ├── BlockAkashicLog.java │ │ │ │ │ ├── BlockAmethystDirectional.java │ │ │ │ │ ├── BlockAxis.java │ │ │ │ │ ├── BlockHexDoor.java │ │ │ │ │ ├── BlockHexFence.java │ │ │ │ │ ├── BlockHexFenceGate.java │ │ │ │ │ ├── BlockHexPressurePlate.java │ │ │ │ │ ├── BlockHexSlab.java │ │ │ │ │ ├── BlockHexStairs.java │ │ │ │ │ ├── BlockHexTrapdoor.java │ │ │ │ │ ├── BlockHexWoodButton.java │ │ │ │ │ └── BlockSconce.java │ │ │ │ └── entity │ │ │ │ │ ├── BlockEntityConjured.java │ │ │ │ │ └── BlockEntityQuenchedAllay.java │ │ │ ├── casting │ │ │ │ ├── PatternRegistryManifest.java │ │ │ │ ├── actions │ │ │ │ │ ├── akashic │ │ │ │ │ │ ├── OpAkashicRead.kt │ │ │ │ │ │ └── OpAkashicWrite.kt │ │ │ │ │ ├── circles │ │ │ │ │ │ ├── OpCircleBounds.kt │ │ │ │ │ │ ├── OpImpetusDir.kt │ │ │ │ │ │ └── OpImpetusPos.kt │ │ │ │ │ ├── eval │ │ │ │ │ │ ├── OpEval.kt │ │ │ │ │ │ ├── OpEvalBreakable.kt │ │ │ │ │ │ ├── OpForEach.kt │ │ │ │ │ │ ├── OpHalt.kt │ │ │ │ │ │ └── OpThanos.kt │ │ │ │ │ ├── lists │ │ │ │ │ │ ├── OpAppend.kt │ │ │ │ │ │ ├── OpConcat.kt │ │ │ │ │ │ ├── OpCons.kt │ │ │ │ │ │ ├── OpEmptyList.kt │ │ │ │ │ │ ├── OpIndex.kt │ │ │ │ │ │ ├── OpIndexOf.kt │ │ │ │ │ │ ├── OpLastNToList.kt │ │ │ │ │ │ ├── OpListSize.kt │ │ │ │ │ │ ├── OpModifyInPlace.kt │ │ │ │ │ │ ├── OpRemove.kt │ │ │ │ │ │ ├── OpReverski.kt │ │ │ │ │ │ ├── OpSingleton.kt │ │ │ │ │ │ ├── OpSlice.kt │ │ │ │ │ │ ├── OpSplat.kt │ │ │ │ │ │ └── OpUnCons.kt │ │ │ │ │ ├── local │ │ │ │ │ │ ├── OpPeekLocal.kt │ │ │ │ │ │ └── OpPushLocal.kt │ │ │ │ │ ├── math │ │ │ │ │ │ ├── OpAbsLen.kt │ │ │ │ │ │ ├── OpAdd.kt │ │ │ │ │ │ ├── OpCeil.kt │ │ │ │ │ │ ├── OpCoerceToAxial.kt │ │ │ │ │ │ ├── OpConstructVec.kt │ │ │ │ │ │ ├── OpDeconstructVec.kt │ │ │ │ │ │ ├── OpDivCross.kt │ │ │ │ │ │ ├── OpFloor.kt │ │ │ │ │ │ ├── OpLog.kt │ │ │ │ │ │ ├── OpModulo.kt │ │ │ │ │ │ ├── OpMulDot.kt │ │ │ │ │ │ ├── OpPowProj.kt │ │ │ │ │ │ ├── OpRandom.kt │ │ │ │ │ │ ├── OpSub.kt │ │ │ │ │ │ ├── SpecialHandlerNumberLiteral.kt │ │ │ │ │ │ ├── bit │ │ │ │ │ │ │ ├── OpAnd.kt │ │ │ │ │ │ │ ├── OpNot.kt │ │ │ │ │ │ │ ├── OpOr.kt │ │ │ │ │ │ │ ├── OpToSet.kt │ │ │ │ │ │ │ └── OpXor.kt │ │ │ │ │ │ ├── logic │ │ │ │ │ │ │ ├── OpBoolAnd.kt │ │ │ │ │ │ │ ├── OpBoolIf.kt │ │ │ │ │ │ │ ├── OpBoolNot.kt │ │ │ │ │ │ │ ├── OpBoolOr.kt │ │ │ │ │ │ │ ├── OpBoolToNumber.kt │ │ │ │ │ │ │ ├── OpBoolXor.kt │ │ │ │ │ │ │ ├── OpCoerceToBool.kt │ │ │ │ │ │ │ ├── OpCompare.kt │ │ │ │ │ │ │ └── OpEquality.kt │ │ │ │ │ │ └── trig │ │ │ │ │ │ │ ├── OpArcCos.kt │ │ │ │ │ │ │ ├── OpArcSin.kt │ │ │ │ │ │ │ ├── OpArcTan.kt │ │ │ │ │ │ │ ├── OpArcTan2.kt │ │ │ │ │ │ │ ├── OpCos.kt │ │ │ │ │ │ │ ├── OpSin.kt │ │ │ │ │ │ │ └── OpTan.kt │ │ │ │ │ ├── queryentity │ │ │ │ │ │ ├── OpCanEntityHexFly.kt │ │ │ │ │ │ ├── OpEntityHeight.kt │ │ │ │ │ │ ├── OpEntityLook.kt │ │ │ │ │ │ ├── OpEntityPos.kt │ │ │ │ │ │ └── OpEntityVelocity.kt │ │ │ │ │ ├── raycast │ │ │ │ │ │ ├── OpBlockAxisRaycast.kt │ │ │ │ │ │ ├── OpBlockRaycast.kt │ │ │ │ │ │ └── OpEntityRaycast.kt │ │ │ │ │ ├── rw │ │ │ │ │ │ ├── OpRead.kt │ │ │ │ │ │ ├── OpReadable.kt │ │ │ │ │ │ ├── OpTheCoolerRead.kt │ │ │ │ │ │ ├── OpTheCoolerReadable.kt │ │ │ │ │ │ ├── OpTheCoolerWritable.kt │ │ │ │ │ │ ├── OpTheCoolerWrite.kt │ │ │ │ │ │ ├── OpWritable.kt │ │ │ │ │ │ └── OpWrite.kt │ │ │ │ │ ├── selectors │ │ │ │ │ │ ├── OpGetCaster.kt │ │ │ │ │ │ ├── OpGetEntitiesBy.kt │ │ │ │ │ │ └── OpGetEntityAt.kt │ │ │ │ │ ├── spells │ │ │ │ │ │ ├── OpAddMotion.kt │ │ │ │ │ │ ├── OpBeep.kt │ │ │ │ │ │ ├── OpBlink.kt │ │ │ │ │ │ ├── OpBreakBlock.kt │ │ │ │ │ │ ├── OpColorize.kt │ │ │ │ │ │ ├── OpConjureBlock.kt │ │ │ │ │ │ ├── OpCreateFluid.kt │ │ │ │ │ │ ├── OpCycleVariant.kt │ │ │ │ │ │ ├── OpDestroyFluid.kt │ │ │ │ │ │ ├── OpEdifySapling.kt │ │ │ │ │ │ ├── OpErase.kt │ │ │ │ │ │ ├── OpExplode.kt │ │ │ │ │ │ ├── OpExtinguish.kt │ │ │ │ │ │ ├── OpFlight.kt │ │ │ │ │ │ ├── OpIgnite.kt │ │ │ │ │ │ ├── OpMakeBattery.kt │ │ │ │ │ │ ├── OpMakePackagedSpell.kt │ │ │ │ │ │ ├── OpPlaceBlock.kt │ │ │ │ │ │ ├── OpPotionEffect.kt │ │ │ │ │ │ ├── OpPrint.kt │ │ │ │ │ │ ├── OpRecharge.kt │ │ │ │ │ │ ├── OpTheOnlyReasonAnyoneDownloadedPsi.kt │ │ │ │ │ │ ├── great │ │ │ │ │ │ │ ├── OpAltiora.kt │ │ │ │ │ │ │ ├── OpBrainsweep.kt │ │ │ │ │ │ │ ├── OpLightning.kt │ │ │ │ │ │ │ ├── OpTeleport.kt │ │ │ │ │ │ │ └── OpWeather.kt │ │ │ │ │ │ └── sentinel │ │ │ │ │ │ │ ├── OpCreateSentinel.kt │ │ │ │ │ │ │ ├── OpDestroySentinel.kt │ │ │ │ │ │ │ ├── OpGetSentinelPos.kt │ │ │ │ │ │ │ └── OpGetSentinelWayfind.kt │ │ │ │ │ └── stack │ │ │ │ │ │ ├── OpAlwinfyHasAscendedToABeingOfPureMath.kt │ │ │ │ │ │ ├── OpDuplicateN.kt │ │ │ │ │ │ ├── OpFisherman.kt │ │ │ │ │ │ ├── OpFishermanButItCopies.kt │ │ │ │ │ │ ├── OpMask.kt │ │ │ │ │ │ ├── OpStackSize.kt │ │ │ │ │ │ ├── OpTwiddling.kt │ │ │ │ │ │ └── SpecialHandlerMask.kt │ │ │ │ └── arithmetic │ │ │ │ │ ├── BitwiseSetArithmetic.kt │ │ │ │ │ ├── BoolArithmetic.kt │ │ │ │ │ ├── DoubleArithmetic.kt │ │ │ │ │ ├── ListArithmetic.kt │ │ │ │ │ ├── ListSetArithmetic.kt │ │ │ │ │ ├── Vec3Arithmetic.java │ │ │ │ │ └── operator │ │ │ │ │ ├── OperatorLog.kt │ │ │ │ │ ├── OperatorUtils.kt │ │ │ │ │ ├── list │ │ │ │ │ ├── OperatorAppend.kt │ │ │ │ │ ├── OperatorIndex.kt │ │ │ │ │ ├── OperatorIndexOf.kt │ │ │ │ │ ├── OperatorRemove.kt │ │ │ │ │ ├── OperatorReplace.kt │ │ │ │ │ ├── OperatorSlice.kt │ │ │ │ │ ├── OperatorUnCons.kt │ │ │ │ │ ├── OperatorUnappend.kt │ │ │ │ │ └── OperatorUnique.kt │ │ │ │ │ └── vec │ │ │ │ │ ├── OperatorPack.java │ │ │ │ │ ├── OperatorUnpack.java │ │ │ │ │ └── OperatorVec3Delegating.java │ │ │ ├── command │ │ │ │ ├── BrainsweepCommand.java │ │ │ │ ├── ListPerWorldPatternsCommand.java │ │ │ │ ├── PatternResLocArgument.java │ │ │ │ ├── PatternTexturesCommand.java │ │ │ │ └── RecalcPatternsCommand.java │ │ │ ├── entities │ │ │ │ ├── EntityWallScroll.java │ │ │ │ └── HexEntities.java │ │ │ ├── impl │ │ │ │ └── HexAPIImpl.java │ │ │ ├── items │ │ │ │ ├── HexBaubleItem.java │ │ │ │ ├── ItemJewelerHammer.java │ │ │ │ ├── ItemLens.java │ │ │ │ ├── ItemLoreFragment.java │ │ │ │ ├── ItemStaff.java │ │ │ │ ├── armor │ │ │ │ │ └── ItemRobes.java │ │ │ │ ├── magic │ │ │ │ │ ├── DebugUnlockerHolder.java │ │ │ │ │ ├── ItemAncientCypher.java │ │ │ │ │ ├── ItemArtifact.java │ │ │ │ │ ├── ItemCreativeUnlocker.java │ │ │ │ │ ├── ItemCypher.java │ │ │ │ │ ├── ItemMediaBattery.java │ │ │ │ │ ├── ItemMediaHolder.java │ │ │ │ │ ├── ItemPackagedHex.java │ │ │ │ │ └── ItemTrinket.java │ │ │ │ ├── pigment │ │ │ │ │ ├── ItemAmethystAndCopperPigment.java │ │ │ │ │ ├── ItemDyePigment.java │ │ │ │ │ ├── ItemPridePigment.java │ │ │ │ │ └── ItemUUIDPigment.java │ │ │ │ └── storage │ │ │ │ │ ├── ItemAbacus.java │ │ │ │ │ ├── ItemFocus.java │ │ │ │ │ ├── ItemScroll.java │ │ │ │ │ ├── ItemSlate.java │ │ │ │ │ ├── ItemSpellbook.java │ │ │ │ │ └── ItemThoughtKnot.java │ │ │ ├── lib │ │ │ │ ├── HexAttributes.java │ │ │ │ ├── HexBlockEntities.java │ │ │ │ ├── HexBlockSetTypes.java │ │ │ │ ├── HexBlocks.java │ │ │ │ ├── HexCommands.java │ │ │ │ ├── HexConfiguredFeatures.java │ │ │ │ ├── HexCreativeTabs.java │ │ │ │ ├── HexDamageTypes.java │ │ │ │ ├── HexFeatureConfigs.java │ │ │ │ ├── HexItems.java │ │ │ │ ├── HexLootFunctions.java │ │ │ │ ├── HexMobEffects.java │ │ │ │ ├── HexParticles.java │ │ │ │ ├── HexPotions.java │ │ │ │ ├── HexRegistries.java │ │ │ │ ├── HexSounds.java │ │ │ │ └── hex │ │ │ │ │ ├── HexActions.java │ │ │ │ │ ├── HexArithmetics.java │ │ │ │ │ ├── HexContinuationTypes.java │ │ │ │ │ ├── HexEvalSounds.java │ │ │ │ │ ├── HexIotaTypes.java │ │ │ │ │ ├── HexSpecialHandlers.java │ │ │ │ │ └── package-info.java │ │ │ ├── loot │ │ │ │ ├── AddHexToAncientCypherFunc.java │ │ │ │ ├── AddPerWorldPatternToScrollFunc.java │ │ │ │ ├── AmethystReducerFunc.java │ │ │ │ └── HexLootHandler.java │ │ │ ├── misc │ │ │ │ ├── AkashicTreeGrower.java │ │ │ │ ├── BrainsweepingEvents.java │ │ │ │ ├── HexMobEffect.java │ │ │ │ ├── PatternTooltip.java │ │ │ │ ├── PlayerPositionRecorder.java │ │ │ │ └── RegisterMisc.java │ │ │ ├── msgs │ │ │ │ ├── IMessage.java │ │ │ │ ├── MsgBeepS2C.java │ │ │ │ ├── MsgBlinkS2C.java │ │ │ │ ├── MsgCastParticleS2C.java │ │ │ │ ├── MsgClearSpiralPatternsS2C.java │ │ │ │ ├── MsgNewSpellPatternC2S.java │ │ │ │ ├── MsgNewSpellPatternS2C.java │ │ │ │ ├── MsgNewSpiralPatternsS2C.java │ │ │ │ ├── MsgNewWallScrollS2C.java │ │ │ │ ├── MsgOpenSpellGuiS2C.java │ │ │ │ ├── MsgRecalcWallScrollDisplayS2C.java │ │ │ │ └── MsgShiftScrollC2S.java │ │ │ ├── particles │ │ │ │ └── ConjureParticleOptions.java │ │ │ └── recipe │ │ │ │ ├── BrainsweepRecipe.java │ │ │ │ ├── HexRecipeStuffRegistry.java │ │ │ │ ├── RecipeSerializerBase.java │ │ │ │ ├── SealSpellbookRecipe.java │ │ │ │ ├── SealThingsRecipe.java │ │ │ │ └── ingredient │ │ │ │ ├── StateIngredient.java │ │ │ │ ├── StateIngredientBlock.java │ │ │ │ ├── StateIngredientBlockState.java │ │ │ │ ├── StateIngredientBlocks.java │ │ │ │ ├── StateIngredientHelper.java │ │ │ │ ├── StateIngredientTag.java │ │ │ │ ├── StateIngredientTagExcluding.java │ │ │ │ └── brainsweep │ │ │ │ ├── BrainsweepeeIngredient.java │ │ │ │ ├── EntityTagIngredient.java │ │ │ │ ├── EntityTypeIngredient.java │ │ │ │ └── VillagerIngredient.java │ │ │ ├── datagen │ │ │ ├── HexAdvancements.java │ │ │ ├── HexLootTables.java │ │ │ ├── IXplatConditionsBuilder.java │ │ │ ├── IXplatIngredients.java │ │ │ ├── recipe │ │ │ │ ├── HexplatRecipes.java │ │ │ │ └── builders │ │ │ │ │ ├── BrainsweepRecipeBuilder.java │ │ │ │ │ ├── CompatIngredientValue.java │ │ │ │ │ ├── CompatProcessingOutput.java │ │ │ │ │ ├── CreateCrushingRecipeBuilder.java │ │ │ │ │ ├── FarmersDelightCuttingRecipeBuilder.java │ │ │ │ │ ├── FarmersDelightToolIngredient.java │ │ │ │ │ ├── ItemProcessingOutput.java │ │ │ │ │ └── ProcessingOutput.java │ │ │ └── tag │ │ │ │ ├── HexActionTagProvider.java │ │ │ │ ├── HexBlockTagProvider.java │ │ │ │ ├── HexDamageTypeTagProvider.java │ │ │ │ └── HexItemTagProvider.java │ │ │ ├── interop │ │ │ ├── HexInterop.java │ │ │ ├── inline │ │ │ │ ├── HexPatternMatcher.java │ │ │ │ ├── InlineHex.java │ │ │ │ ├── InlineHexClient.java │ │ │ │ ├── InlinePatternData.java │ │ │ │ └── InlinePatternRenderer.java │ │ │ ├── patchouli │ │ │ │ ├── AbstractPatternComponent.java │ │ │ │ ├── BrainsweepProcessor.java │ │ │ │ ├── CustomComponentTooltip.java │ │ │ │ ├── LookupPatternComponent.java │ │ │ │ ├── ManualPatternComponent.java │ │ │ │ ├── MultiCraftingProcessor.java │ │ │ │ ├── PatchouliUtils.java │ │ │ │ └── PatternProcessor.java │ │ │ ├── pehkui │ │ │ │ ├── OpGetScale.kt │ │ │ │ ├── OpSetScale.kt │ │ │ │ └── PehkuiInterop.java │ │ │ └── utils │ │ │ │ ├── PatternDrawingUtil.java │ │ │ │ ├── PatternEntry.java │ │ │ │ └── PhialRecipeStackBuilder.java │ │ │ ├── ktxt │ │ │ └── AccessorWrappers.kt │ │ │ ├── mixin │ │ │ ├── MixinAbstractVillager.java │ │ │ ├── MixinLivingEntity.java │ │ │ ├── MixinMob.java │ │ │ ├── MixinRaider.java │ │ │ ├── MixinVillager.java │ │ │ ├── MixinWanderingTrader.java │ │ │ ├── MixinWitch.java │ │ │ ├── accessor │ │ │ │ ├── AccessorAbstractArrow.java │ │ │ │ ├── AccessorEntity.java │ │ │ │ ├── AccessorLivingEntity.java │ │ │ │ ├── AccessorLootTable.java │ │ │ │ ├── AccessorPotionBrewing.java │ │ │ │ ├── AccessorUseOnContext.java │ │ │ │ ├── AccessorVillager.java │ │ │ │ ├── CriteriaTriggersAccessor.java │ │ │ │ └── client │ │ │ │ │ ├── AccessorBlockEntityRenderDispatcher.java │ │ │ │ │ ├── AccessorCompositeRenderType.java │ │ │ │ │ ├── AccessorEmptyTextureStateShard.java │ │ │ │ │ ├── AccessorMouseHandler.java │ │ │ │ │ ├── AccessorRenderStateShard.java │ │ │ │ │ └── AccessorRenderType.java │ │ │ └── client │ │ │ │ ├── MixinClientLevel.java │ │ │ │ └── MixinPlayerRenderer.java │ │ │ ├── server │ │ │ └── ScrungledPatternsSave.java │ │ │ └── xplat │ │ │ ├── IClientXplatAbstractions.java │ │ │ ├── IForgeLikeBlock.java │ │ │ ├── IXplatAbstractions.java │ │ │ ├── IXplatTags.java │ │ │ └── Platform.java │ └── resources │ │ ├── assets │ │ ├── hexcasting │ │ │ ├── lang │ │ │ │ ├── en_us.flatten.json5 │ │ │ │ ├── ru_ru.flatten.json5 │ │ │ │ └── zh_cn.flatten.json5 │ │ │ ├── models │ │ │ │ └── block │ │ │ │ │ ├── amethyst_sconce.json │ │ │ │ │ ├── cube_half_mirrored.json │ │ │ │ │ ├── edified_fence_inventory.json │ │ │ │ │ └── slate.json │ │ │ ├── particles │ │ │ │ └── conjure_particle.json │ │ │ ├── patchouli_books │ │ │ │ └── thehexbook │ │ │ │ │ └── en_us │ │ │ │ │ ├── categories │ │ │ │ │ ├── basics.json │ │ │ │ │ ├── casting.json │ │ │ │ │ ├── creative_unlocker.json │ │ │ │ │ ├── greatwork.json │ │ │ │ │ ├── interop.json │ │ │ │ │ ├── items.json │ │ │ │ │ ├── lore.json │ │ │ │ │ ├── patterns.json │ │ │ │ │ └── patterns │ │ │ │ │ │ ├── great_spells.json │ │ │ │ │ │ └── spells.json │ │ │ │ │ ├── entries │ │ │ │ │ ├── basics │ │ │ │ │ │ ├── couldnt_cast.json │ │ │ │ │ │ ├── geodes.json │ │ │ │ │ │ ├── media.json │ │ │ │ │ │ └── start_to_see.json │ │ │ │ │ ├── casting │ │ │ │ │ │ ├── 101.json │ │ │ │ │ │ ├── influences.json │ │ │ │ │ │ ├── mishaps.json │ │ │ │ │ │ ├── mishaps2.json │ │ │ │ │ │ ├── naming.json │ │ │ │ │ │ ├── stack.json │ │ │ │ │ │ └── vectors.json │ │ │ │ │ ├── creative_unlocker │ │ │ │ │ │ └── media_cube.json │ │ │ │ │ ├── greatwork │ │ │ │ │ │ ├── akashiclib.json │ │ │ │ │ │ ├── brainsweeping.json │ │ │ │ │ │ ├── directrix.json │ │ │ │ │ │ ├── fanciful_staves.json │ │ │ │ │ │ ├── impetus.json │ │ │ │ │ │ ├── quenching_allays.json │ │ │ │ │ │ ├── spellcircles.json │ │ │ │ │ │ └── the_work.json │ │ │ │ │ ├── interop │ │ │ │ │ │ ├── interop.json │ │ │ │ │ │ └── pehkui.json │ │ │ │ │ ├── items │ │ │ │ │ │ ├── abacus.json │ │ │ │ │ │ ├── amethyst.json │ │ │ │ │ │ ├── ancient_cyphers.json │ │ │ │ │ │ ├── decoration.json │ │ │ │ │ │ ├── edified.json │ │ │ │ │ │ ├── focus.json │ │ │ │ │ │ ├── hexcasting.json │ │ │ │ │ │ ├── jeweler_hammer.json │ │ │ │ │ │ ├── lens.json │ │ │ │ │ │ ├── phials.json │ │ │ │ │ │ ├── pigments.json │ │ │ │ │ │ ├── potions.json │ │ │ │ │ │ ├── scroll.json │ │ │ │ │ │ ├── slate.json │ │ │ │ │ │ ├── spellbook.json │ │ │ │ │ │ ├── staff.json │ │ │ │ │ │ └── thought_knot.json │ │ │ │ │ ├── lore │ │ │ │ │ │ ├── cardamom1.json │ │ │ │ │ │ ├── cardamom2.json │ │ │ │ │ │ ├── cardamom3.json │ │ │ │ │ │ ├── cardamom4.json │ │ │ │ │ │ ├── cardamom5.json │ │ │ │ │ │ ├── experiment1.json │ │ │ │ │ │ ├── experiment2.json │ │ │ │ │ │ └── inventory.json │ │ │ │ │ └── patterns │ │ │ │ │ │ ├── advanced_math.json │ │ │ │ │ │ ├── akashic_patterns.json │ │ │ │ │ │ ├── basics.json │ │ │ │ │ │ ├── circle.json │ │ │ │ │ │ ├── consts.json │ │ │ │ │ │ ├── entities.json │ │ │ │ │ │ ├── great_spells │ │ │ │ │ │ ├── altiora.json │ │ │ │ │ │ ├── brainsweep.json │ │ │ │ │ │ ├── create_lava.json │ │ │ │ │ │ ├── greater_sentinel.json │ │ │ │ │ │ ├── make_battery.json │ │ │ │ │ │ ├── teleport.json │ │ │ │ │ │ ├── weather_manip.json │ │ │ │ │ │ └── zeniths.json │ │ │ │ │ │ ├── lists.json │ │ │ │ │ │ ├── logic.json │ │ │ │ │ │ ├── math.json │ │ │ │ │ │ ├── meta.json │ │ │ │ │ │ ├── numbers.json │ │ │ │ │ │ ├── patterns_as_iotas.json │ │ │ │ │ │ ├── readers_guide.json │ │ │ │ │ │ ├── readwrite.json │ │ │ │ │ │ ├── sets.json │ │ │ │ │ │ ├── spells │ │ │ │ │ │ ├── basic.json │ │ │ │ │ │ ├── blockworks.json │ │ │ │ │ │ ├── colorize.json │ │ │ │ │ │ ├── cyclevariant.json │ │ │ │ │ │ ├── flight.json │ │ │ │ │ │ ├── hexcasting.json │ │ │ │ │ │ ├── itempicking.json │ │ │ │ │ │ ├── nadirs.json │ │ │ │ │ │ └── sentinels.json │ │ │ │ │ │ └── stackmanip.json │ │ │ │ │ └── templates │ │ │ │ │ ├── brainsweep.json │ │ │ │ │ ├── crafting_multi.json │ │ │ │ │ ├── manual_pattern.json │ │ │ │ │ ├── manual_pattern_nosig.json │ │ │ │ │ └── pattern.json │ │ │ ├── sounds.json5 │ │ │ ├── sounds │ │ │ │ ├── abacus1.ogg │ │ │ │ ├── abacus2.ogg │ │ │ │ ├── abacus3.ogg │ │ │ │ ├── abacus_shake.ogg │ │ │ │ ├── add_segment.ogg │ │ │ │ ├── cast │ │ │ │ │ ├── fail.ogg │ │ │ │ │ ├── hermes.ogg │ │ │ │ │ ├── normal.ogg │ │ │ │ │ ├── spell.ogg │ │ │ │ │ └── thoth.ogg │ │ │ │ └── casting_ambiance.ogg │ │ │ └── textures │ │ │ │ ├── armor │ │ │ │ ├── funny.png │ │ │ │ ├── robes1.png │ │ │ │ ├── robes2.png │ │ │ │ └── robes3.png │ │ │ │ ├── block │ │ │ │ ├── akashic_bookshelf.png │ │ │ │ ├── akashic_bookshelf_horiz.png │ │ │ │ ├── akashic_bookshelf_overlay_1.png │ │ │ │ ├── akashic_bookshelf_overlay_2.png │ │ │ │ ├── akashic_bookshelf_overlay_3.png │ │ │ │ ├── akashic_bookshelf_overlay_4.png │ │ │ │ ├── akashic_bookshelf_vert.png │ │ │ │ ├── akashic_ligature.png │ │ │ │ ├── akashic_record.png │ │ │ │ ├── akashic_record_inner.png │ │ │ │ ├── amethyst_bricks.png │ │ │ │ ├── amethyst_bricks_small.png │ │ │ │ ├── amethyst_chiseled.png │ │ │ │ ├── amethyst_dust_block.png │ │ │ │ ├── amethyst_edified_leaves.png │ │ │ │ ├── amethyst_polished.png │ │ │ │ ├── amethyst_tiles.png │ │ │ │ ├── ancient_scroll_paper.png │ │ │ │ ├── ancient_scroll_paper_lantern.png │ │ │ │ ├── ancient_scroll_paper_lantern_bottom.png │ │ │ │ ├── ancient_scroll_paper_lantern_side.png │ │ │ │ ├── ancient_scroll_paper_lantern_top.png │ │ │ │ ├── aventurine_edified_leaves.png │ │ │ │ ├── circle │ │ │ │ │ ├── bottom.png │ │ │ │ │ ├── directrix │ │ │ │ │ │ ├── boolean │ │ │ │ │ │ │ ├── back_dim_true.png │ │ │ │ │ │ │ ├── back_lit_true.png │ │ │ │ │ │ │ ├── back_not_true.png │ │ │ │ │ │ │ ├── front_dim_false.png │ │ │ │ │ │ │ ├── front_lit_false.png │ │ │ │ │ │ │ ├── front_not_false.png │ │ │ │ │ │ │ ├── left_false.png │ │ │ │ │ │ │ ├── left_neither.png │ │ │ │ │ │ │ ├── left_true.png │ │ │ │ │ │ │ ├── right_false.png │ │ │ │ │ │ │ ├── right_neither.png │ │ │ │ │ │ │ ├── right_true.png │ │ │ │ │ │ │ ├── top_false.png │ │ │ │ │ │ │ ├── top_neither.png │ │ │ │ │ │ │ └── top_true.png │ │ │ │ │ │ ├── empty │ │ │ │ │ │ │ ├── back_dim.png │ │ │ │ │ │ │ ├── back_lit.png │ │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ │ └── top_lit.png │ │ │ │ │ │ └── redstone │ │ │ │ │ │ │ ├── back_dim_powered.png │ │ │ │ │ │ │ ├── back_dim_unpowered.png │ │ │ │ │ │ │ ├── back_lit_unpowered.png │ │ │ │ │ │ │ ├── front_dim_powered.png │ │ │ │ │ │ │ ├── front_dim_unpowered.png │ │ │ │ │ │ │ ├── front_lit_powered.png │ │ │ │ │ │ │ ├── left_powered.png │ │ │ │ │ │ │ ├── left_unpowered.png │ │ │ │ │ │ │ ├── right_powered.png │ │ │ │ │ │ │ ├── right_unpowered.png │ │ │ │ │ │ │ ├── top_powered.png │ │ │ │ │ │ │ └── top_unpowered.png │ │ │ │ │ └── impetus │ │ │ │ │ │ ├── back_dim.png │ │ │ │ │ │ ├── back_lit.png │ │ │ │ │ │ ├── empty │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ └── top_lit.png │ │ │ │ │ │ ├── look │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ └── top_lit.png │ │ │ │ │ │ ├── redstone │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ └── top_lit.png │ │ │ │ │ │ ├── rightclick │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ └── top_lit.png │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── front_dim.png │ │ │ │ │ │ ├── front_lit.png │ │ │ │ │ │ ├── left_dim.png │ │ │ │ │ │ ├── left_lit.png │ │ │ │ │ │ ├── right_dim.png │ │ │ │ │ │ ├── right_lit.png │ │ │ │ │ │ ├── top_dim.png │ │ │ │ │ │ └── top_lit.png │ │ │ │ ├── citrine_edified_leaves.png │ │ │ │ ├── deco │ │ │ │ │ ├── amethyst_bricks.png │ │ │ │ │ ├── amethyst_bricks_small.png │ │ │ │ │ ├── amethyst_pillar_bottom.png │ │ │ │ │ ├── amethyst_pillar_side.png │ │ │ │ │ ├── amethyst_pillar_top.png │ │ │ │ │ ├── amethyst_tiles.png │ │ │ │ │ ├── edified_log_amethyst.png │ │ │ │ │ ├── edified_log_aventurine.png │ │ │ │ │ ├── edified_log_citrine.png │ │ │ │ │ ├── edified_log_purple.png │ │ │ │ │ ├── quenched_allay_bricks_0.png │ │ │ │ │ ├── quenched_allay_bricks_1.png │ │ │ │ │ ├── quenched_allay_bricks_2.png │ │ │ │ │ ├── quenched_allay_bricks_3.png │ │ │ │ │ ├── quenched_allay_bricks_small_0.png │ │ │ │ │ ├── quenched_allay_bricks_small_1.png │ │ │ │ │ ├── quenched_allay_bricks_small_2.png │ │ │ │ │ ├── quenched_allay_bricks_small_3.png │ │ │ │ │ ├── quenched_allay_tiles_0.png │ │ │ │ │ ├── quenched_allay_tiles_1.png │ │ │ │ │ ├── quenched_allay_tiles_2.png │ │ │ │ │ ├── quenched_allay_tiles_3.png │ │ │ │ │ ├── slate_amethyst_bricks_0.png │ │ │ │ │ ├── slate_amethyst_bricks_1.png │ │ │ │ │ ├── slate_amethyst_bricks_2.png │ │ │ │ │ ├── slate_amethyst_bricks_small_0.png │ │ │ │ │ ├── slate_amethyst_bricks_small_1.png │ │ │ │ │ ├── slate_amethyst_bricks_small_2.png │ │ │ │ │ ├── slate_amethyst_pillar_end.png │ │ │ │ │ ├── slate_amethyst_pillar_side.png │ │ │ │ │ ├── slate_amethyst_tiles.png │ │ │ │ │ ├── slate_bricks.png │ │ │ │ │ ├── slate_bricks_small.png │ │ │ │ │ ├── slate_pillar_end.png │ │ │ │ │ ├── slate_pillar_side.png │ │ │ │ │ └── slate_tiles.png │ │ │ │ ├── edified_door_lower.png │ │ │ │ ├── edified_door_upper.png │ │ │ │ ├── edified_log.png │ │ │ │ ├── edified_log_top.png │ │ │ │ ├── edified_panel.png │ │ │ │ ├── edified_planks.png │ │ │ │ ├── edified_planks_2.png │ │ │ │ ├── edified_planks_3.png │ │ │ │ ├── edified_tile.png │ │ │ │ ├── edified_trapdoor.png │ │ │ │ ├── quenched_allay.png │ │ │ │ ├── quenched_allay_0.png │ │ │ │ ├── quenched_allay_1.png │ │ │ │ ├── quenched_allay_2.png │ │ │ │ ├── quenched_allay_3.png │ │ │ │ ├── scroll_paper.png │ │ │ │ ├── scroll_paper_lantern.png │ │ │ │ ├── scroll_paper_lantern_bottom.png │ │ │ │ ├── scroll_paper_lantern_side.png │ │ │ │ ├── scroll_paper_lantern_top.png │ │ │ │ ├── slate.png │ │ │ │ ├── slate_directional.png │ │ │ │ ├── smooth_amethyst.png │ │ │ │ ├── stripped_edified_log.png │ │ │ │ └── stripped_edified_log_top.png │ │ │ │ ├── entity │ │ │ │ ├── scroll_ancient_large.png │ │ │ │ ├── scroll_ancient_medium.png │ │ │ │ ├── scroll_large.png │ │ │ │ ├── scroll_medium.png │ │ │ │ ├── sentinel.png │ │ │ │ ├── signs │ │ │ │ │ ├── edified.png │ │ │ │ │ └── hanging │ │ │ │ │ │ └── edified.png │ │ │ │ └── white.png │ │ │ │ ├── gui │ │ │ │ ├── brainsweep.png │ │ │ │ ├── brainsweep_emi.png │ │ │ │ ├── brainsweep_jei.png │ │ │ │ ├── edify.png │ │ │ │ ├── edify_emi.png │ │ │ │ ├── edify_jei.png │ │ │ │ ├── entries │ │ │ │ │ └── spell_circle.png │ │ │ │ ├── patchi_book.png │ │ │ │ ├── patchi_filler.png │ │ │ │ ├── phial.png │ │ │ │ ├── phial_emi.png │ │ │ │ ├── phial_jei.png │ │ │ │ ├── scroll.png │ │ │ │ ├── scroll_ancient.png │ │ │ │ ├── slate.png │ │ │ │ ├── villager_leveling.png │ │ │ │ └── villager_profession.png │ │ │ │ ├── item │ │ │ │ ├── abacus.png │ │ │ │ ├── amethyst_dust.png │ │ │ │ ├── artifact.png │ │ │ │ ├── artifact_filled.png │ │ │ │ ├── cad │ │ │ │ │ ├── 0_ancient_cypher.png │ │ │ │ │ ├── 0_ancient_cypher_overlay.png │ │ │ │ │ ├── 0_artifact.png │ │ │ │ │ ├── 0_artifact_overlay.png │ │ │ │ │ ├── 0_cypher.png │ │ │ │ │ ├── 0_cypher_overlay.png │ │ │ │ │ ├── 0_focus_empty.png │ │ │ │ │ ├── 0_focus_filled.png │ │ │ │ │ ├── 0_focus_filled_overlay.png │ │ │ │ │ ├── 0_focus_sealed.png │ │ │ │ │ ├── 0_focus_sealed_overlay.png │ │ │ │ │ ├── 0_spellbook_empty.png │ │ │ │ │ ├── 0_spellbook_empty_overlay.png │ │ │ │ │ ├── 0_spellbook_filled.png │ │ │ │ │ ├── 0_spellbook_filled_overlay.png │ │ │ │ │ ├── 0_spellbook_sealed.png │ │ │ │ │ ├── 0_spellbook_sealed_overlay.png │ │ │ │ │ ├── 0_trinket.png │ │ │ │ │ ├── 0_trinket_overlay.png │ │ │ │ │ ├── 1_ancient_cypher.png │ │ │ │ │ ├── 1_ancient_cypher_overlay.png │ │ │ │ │ ├── 1_artifact.png │ │ │ │ │ ├── 1_artifact_overlay.png │ │ │ │ │ ├── 1_cypher.png │ │ │ │ │ ├── 1_cypher_overlay.png │ │ │ │ │ ├── 1_focus_empty.png │ │ │ │ │ ├── 1_focus_filled.png │ │ │ │ │ ├── 1_focus_filled_overlay.png │ │ │ │ │ ├── 1_focus_sealed.png │ │ │ │ │ ├── 1_focus_sealed_overlay.png │ │ │ │ │ ├── 1_spellbook_empty.png │ │ │ │ │ ├── 1_spellbook_empty_overlay.png │ │ │ │ │ ├── 1_spellbook_filled.png │ │ │ │ │ ├── 1_spellbook_filled_overlay.png │ │ │ │ │ ├── 1_spellbook_sealed.png │ │ │ │ │ ├── 1_spellbook_sealed_overlay.png │ │ │ │ │ ├── 1_trinket.png │ │ │ │ │ ├── 1_trinket_overlay.png │ │ │ │ │ ├── 2_ancient_cypher.png │ │ │ │ │ ├── 2_ancient_cypher_overlay.png │ │ │ │ │ ├── 2_artifact.png │ │ │ │ │ ├── 2_artifact_overlay.png │ │ │ │ │ ├── 2_cypher.png │ │ │ │ │ ├── 2_cypher_overlay.png │ │ │ │ │ ├── 2_focus_empty.png │ │ │ │ │ ├── 2_focus_filled.png │ │ │ │ │ ├── 2_focus_filled_overlay.png │ │ │ │ │ ├── 2_focus_sealed.png │ │ │ │ │ ├── 2_focus_sealed_overlay.png │ │ │ │ │ ├── 2_spellbook_empty.png │ │ │ │ │ ├── 2_spellbook_empty_overlay.png │ │ │ │ │ ├── 2_spellbook_filled.png │ │ │ │ │ ├── 2_spellbook_filled_overlay.png │ │ │ │ │ ├── 2_spellbook_sealed.png │ │ │ │ │ ├── 2_spellbook_sealed_overlay.png │ │ │ │ │ ├── 2_trinket.png │ │ │ │ │ ├── 2_trinket_overlay.png │ │ │ │ │ ├── 3_ancient_cypher.png │ │ │ │ │ ├── 3_ancient_cypher_overlay.png │ │ │ │ │ ├── 3_artifact.png │ │ │ │ │ ├── 3_artifact_overlay.png │ │ │ │ │ ├── 3_cypher.png │ │ │ │ │ ├── 3_cypher_overlay.png │ │ │ │ │ ├── 3_focus_empty.png │ │ │ │ │ ├── 3_focus_filled.png │ │ │ │ │ ├── 3_focus_filled_overlay.png │ │ │ │ │ ├── 3_focus_sealed.png │ │ │ │ │ ├── 3_focus_sealed_overlay.png │ │ │ │ │ ├── 3_spellbook_empty.png │ │ │ │ │ ├── 3_spellbook_empty_overlay.png │ │ │ │ │ ├── 3_spellbook_filled.png │ │ │ │ │ ├── 3_spellbook_filled_overlay.png │ │ │ │ │ ├── 3_spellbook_sealed.png │ │ │ │ │ ├── 3_spellbook_sealed_overlay.png │ │ │ │ │ ├── 3_trinket.png │ │ │ │ │ ├── 3_trinket_overlay.png │ │ │ │ │ ├── 4_ancient_cypher.png │ │ │ │ │ ├── 4_ancient_cypher_overlay.png │ │ │ │ │ ├── 4_artifact.png │ │ │ │ │ ├── 4_artifact_overlay.png │ │ │ │ │ ├── 4_cypher.png │ │ │ │ │ ├── 4_cypher_overlay.png │ │ │ │ │ ├── 4_focus_empty.png │ │ │ │ │ ├── 4_focus_filled.png │ │ │ │ │ ├── 4_focus_filled_overlay.png │ │ │ │ │ ├── 4_focus_sealed.png │ │ │ │ │ ├── 4_focus_sealed_overlay.png │ │ │ │ │ ├── 4_spellbook_empty.png │ │ │ │ │ ├── 4_spellbook_empty_overlay.png │ │ │ │ │ ├── 4_spellbook_filled.png │ │ │ │ │ ├── 4_spellbook_filled_overlay.png │ │ │ │ │ ├── 4_spellbook_sealed.png │ │ │ │ │ ├── 4_spellbook_sealed_overlay.png │ │ │ │ │ ├── 4_trinket.png │ │ │ │ │ ├── 4_trinket_overlay.png │ │ │ │ │ ├── 5_ancient_cypher.png │ │ │ │ │ ├── 5_ancient_cypher_overlay.png │ │ │ │ │ ├── 5_artifact.png │ │ │ │ │ ├── 5_artifact_overlay.png │ │ │ │ │ ├── 5_cypher.png │ │ │ │ │ ├── 5_cypher_overlay.png │ │ │ │ │ ├── 5_focus_empty.png │ │ │ │ │ ├── 5_focus_filled.png │ │ │ │ │ ├── 5_focus_filled_overlay.png │ │ │ │ │ ├── 5_focus_sealed.png │ │ │ │ │ ├── 5_focus_sealed_overlay.png │ │ │ │ │ ├── 5_spellbook_empty.png │ │ │ │ │ ├── 5_spellbook_empty_overlay.png │ │ │ │ │ ├── 5_spellbook_filled.png │ │ │ │ │ ├── 5_spellbook_filled_overlay.png │ │ │ │ │ ├── 5_spellbook_sealed.png │ │ │ │ │ ├── 5_spellbook_sealed_overlay.png │ │ │ │ │ ├── 5_trinket.png │ │ │ │ │ ├── 5_trinket_overlay.png │ │ │ │ │ ├── 6_ancient_cypher.png │ │ │ │ │ ├── 6_ancient_cypher_overlay.png │ │ │ │ │ ├── 6_artifact.png │ │ │ │ │ ├── 6_artifact_overlay.png │ │ │ │ │ ├── 6_cypher.png │ │ │ │ │ ├── 6_cypher_overlay.png │ │ │ │ │ ├── 6_focus_empty.png │ │ │ │ │ ├── 6_focus_filled.png │ │ │ │ │ ├── 6_focus_filled_overlay.png │ │ │ │ │ ├── 6_focus_sealed.png │ │ │ │ │ ├── 6_focus_sealed_overlay.png │ │ │ │ │ ├── 6_spellbook_empty.png │ │ │ │ │ ├── 6_spellbook_empty_overlay.png │ │ │ │ │ ├── 6_spellbook_filled.png │ │ │ │ │ ├── 6_spellbook_filled_overlay.png │ │ │ │ │ ├── 6_spellbook_sealed.png │ │ │ │ │ ├── 6_spellbook_sealed_overlay.png │ │ │ │ │ ├── 6_trinket.png │ │ │ │ │ ├── 6_trinket_overlay.png │ │ │ │ │ ├── 7_ancient_cypher.png │ │ │ │ │ ├── 7_ancient_cypher_overlay.png │ │ │ │ │ ├── 7_artifact.png │ │ │ │ │ ├── 7_artifact_overlay.png │ │ │ │ │ ├── 7_cypher.png │ │ │ │ │ ├── 7_cypher_overlay.png │ │ │ │ │ ├── 7_focus_empty.png │ │ │ │ │ ├── 7_focus_filled.png │ │ │ │ │ ├── 7_focus_filled_overlay.png │ │ │ │ │ ├── 7_focus_sealed.png │ │ │ │ │ ├── 7_focus_sealed_overlay.png │ │ │ │ │ ├── 7_spellbook_empty.png │ │ │ │ │ ├── 7_spellbook_empty_overlay.png │ │ │ │ │ ├── 7_spellbook_filled.png │ │ │ │ │ ├── 7_spellbook_filled_overlay.png │ │ │ │ │ ├── 7_spellbook_sealed.png │ │ │ │ │ ├── 7_spellbook_sealed_overlay.png │ │ │ │ │ ├── 7_trinket.png │ │ │ │ │ └── 7_trinket_overlay.png │ │ │ │ ├── charged_amethyst.png │ │ │ │ ├── colorizer │ │ │ │ │ ├── dye_black.png │ │ │ │ │ ├── dye_black.png.mcmeta │ │ │ │ │ ├── dye_blue.png │ │ │ │ │ ├── dye_blue.png.mcmeta │ │ │ │ │ ├── dye_brown.png │ │ │ │ │ ├── dye_brown.png.mcmeta │ │ │ │ │ ├── dye_cyan.png │ │ │ │ │ ├── dye_cyan.png.mcmeta │ │ │ │ │ ├── dye_gray.png │ │ │ │ │ ├── dye_gray.png.mcmeta │ │ │ │ │ ├── dye_green.png │ │ │ │ │ ├── dye_green.png.mcmeta │ │ │ │ │ ├── dye_light_blue.png │ │ │ │ │ ├── dye_light_blue.png.mcmeta │ │ │ │ │ ├── dye_light_gray.png │ │ │ │ │ ├── dye_light_gray.png.mcmeta │ │ │ │ │ ├── dye_lime.png │ │ │ │ │ ├── dye_lime.png.mcmeta │ │ │ │ │ ├── dye_magenta.png │ │ │ │ │ ├── dye_magenta.png.mcmeta │ │ │ │ │ ├── dye_orange.png │ │ │ │ │ ├── dye_orange.png.mcmeta │ │ │ │ │ ├── dye_pink.png │ │ │ │ │ ├── dye_pink.png.mcmeta │ │ │ │ │ ├── dye_purple.png │ │ │ │ │ ├── dye_purple.png.mcmeta │ │ │ │ │ ├── dye_red.png │ │ │ │ │ ├── dye_red.png.mcmeta │ │ │ │ │ ├── dye_white.png │ │ │ │ │ ├── dye_white.png.mcmeta │ │ │ │ │ ├── dye_yellow.png │ │ │ │ │ ├── dye_yellow.png.mcmeta │ │ │ │ │ ├── pride_agender.png │ │ │ │ │ ├── pride_agender.png.mcmeta │ │ │ │ │ ├── pride_aroace.png │ │ │ │ │ ├── pride_aroace.png.mcmeta │ │ │ │ │ ├── pride_aromantic.png │ │ │ │ │ ├── pride_aromantic.png.mcmeta │ │ │ │ │ ├── pride_asexual.png │ │ │ │ │ ├── pride_asexual.png.mcmeta │ │ │ │ │ ├── pride_bisexual.png │ │ │ │ │ ├── pride_bisexual.png.mcmeta │ │ │ │ │ ├── pride_demiboy.png │ │ │ │ │ ├── pride_demiboy.png.mcmeta │ │ │ │ │ ├── pride_demigirl.png │ │ │ │ │ ├── pride_demigirl.png.mcmeta │ │ │ │ │ ├── pride_gay.png │ │ │ │ │ ├── pride_gay.png.mcmeta │ │ │ │ │ ├── pride_genderfluid.png │ │ │ │ │ ├── pride_genderfluid.png.mcmeta │ │ │ │ │ ├── pride_genderqueer.png │ │ │ │ │ ├── pride_genderqueer.png.mcmeta │ │ │ │ │ ├── pride_intersex.png │ │ │ │ │ ├── pride_intersex.png.mcmeta │ │ │ │ │ ├── pride_lesbian.png │ │ │ │ │ ├── pride_lesbian.png.mcmeta │ │ │ │ │ ├── pride_nonbinary.png │ │ │ │ │ ├── pride_nonbinary.png.mcmeta │ │ │ │ │ ├── pride_pansexual.png │ │ │ │ │ ├── pride_pansexual.png.mcmeta │ │ │ │ │ ├── pride_plural.png │ │ │ │ │ ├── pride_plural.png.mcmeta │ │ │ │ │ ├── pride_transgender.png │ │ │ │ │ ├── pride_transgender.png.mcmeta │ │ │ │ │ ├── uuid.png │ │ │ │ │ └── uuid.png.mcmeta │ │ │ │ ├── creative_unlocker.png │ │ │ │ ├── cypher.png │ │ │ │ ├── cypher_filled.png │ │ │ │ ├── edified_door.png │ │ │ │ ├── edified_sign.png │ │ │ │ ├── focus_base.png │ │ │ │ ├── focus_base_sealed.png │ │ │ │ ├── focus_empty.png │ │ │ │ ├── focus_overlay.png │ │ │ │ ├── focus_overlay_sealed.png │ │ │ │ ├── hanging_edified_sign.png │ │ │ │ ├── jeweler_hammer.png │ │ │ │ ├── lens.png │ │ │ │ ├── lore_fragment.png │ │ │ │ ├── patchouli_book.png │ │ │ │ ├── phial │ │ │ │ │ ├── phial_large_0.png │ │ │ │ │ ├── phial_large_1.png │ │ │ │ │ ├── phial_large_2.png │ │ │ │ │ ├── phial_large_3.png │ │ │ │ │ ├── phial_large_4.png │ │ │ │ │ ├── phial_larger_0.png │ │ │ │ │ ├── phial_larger_1.png │ │ │ │ │ ├── phial_larger_2.png │ │ │ │ │ ├── phial_larger_3.png │ │ │ │ │ ├── phial_larger_4.png │ │ │ │ │ ├── phial_largest_0.png │ │ │ │ │ ├── phial_largest_1.png │ │ │ │ │ ├── phial_largest_2.png │ │ │ │ │ ├── phial_largest_3.png │ │ │ │ │ ├── phial_largest_4.png │ │ │ │ │ ├── phial_medium_0.png │ │ │ │ │ ├── phial_medium_1.png │ │ │ │ │ ├── phial_medium_2.png │ │ │ │ │ ├── phial_medium_3.png │ │ │ │ │ ├── phial_medium_4.png │ │ │ │ │ ├── phial_small_0.png │ │ │ │ │ ├── phial_small_1.png │ │ │ │ │ ├── phial_small_2.png │ │ │ │ │ ├── phial_small_3.png │ │ │ │ │ └── phial_small_4.png │ │ │ │ ├── quenched_shard_0.png │ │ │ │ ├── quenched_shard_1.png │ │ │ │ ├── quenched_shard_2.png │ │ │ │ ├── quenched_shard_3.png │ │ │ │ ├── robes │ │ │ │ │ ├── 1-boots.png │ │ │ │ │ ├── 1-chestplate.png │ │ │ │ │ ├── 1-helmet.png │ │ │ │ │ ├── 1-leggings.png │ │ │ │ │ ├── 2-boots.png │ │ │ │ │ ├── 2-chestplate.png │ │ │ │ │ ├── 2-helmet.png │ │ │ │ │ ├── 2-leggings.png │ │ │ │ │ ├── 3-boots.png │ │ │ │ │ ├── 3-chestplate.png │ │ │ │ │ ├── 3-helmet.png │ │ │ │ │ └── 3-leggings.png │ │ │ │ ├── scroll_ancient_large.png │ │ │ │ ├── scroll_ancient_medium.png │ │ │ │ ├── scroll_ancient_small.png │ │ │ │ ├── scroll_pristine_large.png │ │ │ │ ├── scroll_pristine_medium.png │ │ │ │ ├── scroll_pristine_small.png │ │ │ │ ├── slate_blank.png │ │ │ │ ├── slate_written.png │ │ │ │ ├── spellbook_base.png │ │ │ │ ├── spellbook_base_sealed.png │ │ │ │ ├── spellbook_empty.png │ │ │ │ ├── spellbook_overlay.png │ │ │ │ ├── spellbook_overlay_sealed.png │ │ │ │ ├── staff │ │ │ │ │ ├── acacia.png │ │ │ │ │ ├── bamboo.png │ │ │ │ │ ├── birch.png │ │ │ │ │ ├── cherry.png │ │ │ │ │ ├── crimson.png │ │ │ │ │ ├── dark_oak.png │ │ │ │ │ ├── edified.png │ │ │ │ │ ├── jungle.png │ │ │ │ │ ├── mangrove.png │ │ │ │ │ ├── mindsplice.png │ │ │ │ │ ├── oak.png │ │ │ │ │ ├── old.png │ │ │ │ │ ├── quenched_0.png │ │ │ │ │ ├── quenched_1.png │ │ │ │ │ ├── quenched_2.png │ │ │ │ │ ├── quenched_3.png │ │ │ │ │ ├── spruce.png │ │ │ │ │ └── warped.png │ │ │ │ ├── sub_sandwich.png │ │ │ │ ├── thought_knot.png │ │ │ │ ├── thought_knot_overlay.png │ │ │ │ ├── trinket.png │ │ │ │ └── trinket_filled.png │ │ │ │ ├── main_hex.aseprite │ │ │ │ ├── misc │ │ │ │ └── altiora.png │ │ │ │ ├── mob_effect │ │ │ │ ├── enlarge_grid.png │ │ │ │ └── shrink_grid.png │ │ │ │ └── particle │ │ │ │ ├── cloud.png │ │ │ │ ├── spin_cube_1.png │ │ │ │ ├── spin_cube_2.png │ │ │ │ ├── spin_cube_3.png │ │ │ │ ├── spin_cube_4.png │ │ │ │ ├── spin_cube_5.png │ │ │ │ ├── spin_cube_6.png │ │ │ │ ├── spin_cube_7.png │ │ │ │ └── spin_cube_8.png │ │ └── minecraft │ │ │ └── shaders │ │ │ └── core │ │ │ ├── hexcasting__grayscale.fsh │ │ │ └── hexcasting__grayscale.json │ │ ├── data │ │ ├── hexcasting │ │ │ ├── advancements │ │ │ │ └── grant_patchi_book.json │ │ │ ├── item_modifiers │ │ │ │ └── amethyst_shard_reducer.json │ │ │ ├── loot_tables │ │ │ │ └── grant_patchi_book.json │ │ │ ├── patchouli_books │ │ │ │ └── thehexbook │ │ │ │ │ └── book.json │ │ │ ├── recipes │ │ │ │ └── patchi_book.json │ │ │ ├── tags │ │ │ │ └── entity_types │ │ │ │ │ ├── cannot_teleport.json │ │ │ │ │ └── sticky_teleporters.json │ │ │ └── worldgen │ │ │ │ └── configured_feature │ │ │ │ ├── amethyst_edified_tree.json │ │ │ │ ├── aventurine_edified_tree.json │ │ │ │ └── citrine_edified_tree.json │ │ └── minecraft │ │ │ └── tags │ │ │ └── items │ │ │ └── cluster_max_harvestables.json │ │ ├── hexplat.accesswidener │ │ ├── hexplat.mixins.json │ │ ├── logo.png │ │ ├── pack.mcmeta │ │ └── staticdata │ │ └── architecture_extensions │ │ ├── amethyst_bricks.json │ │ ├── edified_log.json │ │ ├── slate_block.json │ │ ├── slate_bricks.json │ │ └── small_amethyst_bricks.json │ └── test │ └── java │ ├── EulerPathFinderTest.kt │ └── WhatRangeDoTheNoisesOutputAnywaysTest.java ├── Fabric ├── build.gradle ├── gradle.properties ├── libs │ └── serialization-hooks-0.4.99999.jar └── src │ ├── generated │ └── resources │ │ ├── .cache │ │ ├── 19f2b40f78e342d65a8cb499a41e3fcb2eadaca3 │ │ ├── 2ba8da2cf2d44ff18dc72cc891b094eca6836a5c │ │ ├── 3cb4ab563deee432e7d307024048f57946bafb1c │ │ ├── 812fdb58b7018b2d5c5af7da57a2b1857fa66794 │ │ └── c70ef2fe5da52437c1f53bcc9ea0e416f16bcc0b │ │ └── data │ │ ├── c │ │ └── tags │ │ │ └── items │ │ │ ├── amethyst_dusts.json │ │ │ └── gems.json │ │ ├── create │ │ ├── recipes │ │ │ └── crushing │ │ │ │ ├── amethyst_block.json │ │ │ │ └── amethyst_cluster.json │ │ └── tags │ │ │ └── blocks │ │ │ └── brittle.json │ │ ├── hexcasting │ │ ├── advancements │ │ │ └── recipes │ │ │ │ ├── brainsweep │ │ │ │ └── brainsweep │ │ │ │ │ ├── akashic_record.json │ │ │ │ │ ├── budding_amethyst.json │ │ │ │ │ ├── directrix_boolean.json │ │ │ │ │ ├── directrix_redstone.json │ │ │ │ │ ├── impetus_look.json │ │ │ │ │ ├── impetus_rightclick.json │ │ │ │ │ ├── impetus_storedplayer.json │ │ │ │ │ └── quench_allay.json │ │ │ │ ├── building_blocks │ │ │ │ ├── amethyst_dust_packing.json │ │ │ │ ├── amethyst_dust_unpacking.json │ │ │ │ ├── amethyst_tiles.json │ │ │ │ ├── ancient_scroll_paper.json │ │ │ │ ├── edified_fence.json │ │ │ │ ├── edified_fence_gate.json │ │ │ │ ├── edified_panel.json │ │ │ │ ├── edified_planks.json │ │ │ │ ├── edified_slab.json │ │ │ │ ├── edified_stairs.json │ │ │ │ ├── edified_tile.json │ │ │ │ ├── edified_wood.json │ │ │ │ ├── scroll_paper.json │ │ │ │ ├── slate_block.json │ │ │ │ ├── slate_block_from_slates.json │ │ │ │ ├── stonecutting │ │ │ │ │ └── amethyst_tiles.json │ │ │ │ └── stripped_edified_wood.json │ │ │ │ ├── decorations │ │ │ │ ├── ageing_scroll_paper_lantern.json │ │ │ │ ├── amethyst_sconce.json │ │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ │ ├── scroll.json │ │ │ │ ├── scroll_medium.json │ │ │ │ ├── scroll_paper_lantern.json │ │ │ │ ├── scroll_small.json │ │ │ │ └── slate.json │ │ │ │ ├── food │ │ │ │ └── sub_sandwich.json │ │ │ │ ├── misc │ │ │ │ ├── decompose_quenched_shard │ │ │ │ │ ├── charged.json │ │ │ │ │ ├── dust.json │ │ │ │ │ └── shard.json │ │ │ │ ├── default_colorizer.json │ │ │ │ ├── dye_colorizer_black.json │ │ │ │ ├── dye_colorizer_blue.json │ │ │ │ ├── dye_colorizer_brown.json │ │ │ │ ├── dye_colorizer_cyan.json │ │ │ │ ├── dye_colorizer_gray.json │ │ │ │ ├── dye_colorizer_green.json │ │ │ │ ├── dye_colorizer_light_blue.json │ │ │ │ ├── dye_colorizer_light_gray.json │ │ │ │ ├── dye_colorizer_lime.json │ │ │ │ ├── dye_colorizer_magenta.json │ │ │ │ ├── dye_colorizer_orange.json │ │ │ │ ├── dye_colorizer_pink.json │ │ │ │ ├── dye_colorizer_purple.json │ │ │ │ ├── dye_colorizer_red.json │ │ │ │ ├── dye_colorizer_white.json │ │ │ │ ├── dye_colorizer_yellow.json │ │ │ │ ├── pride_colorizer_agender.json │ │ │ │ ├── pride_colorizer_aroace.json │ │ │ │ ├── pride_colorizer_aromantic.json │ │ │ │ ├── pride_colorizer_asexual.json │ │ │ │ ├── pride_colorizer_bisexual.json │ │ │ │ ├── pride_colorizer_demiboy.json │ │ │ │ ├── pride_colorizer_demigirl.json │ │ │ │ ├── pride_colorizer_gay.json │ │ │ │ ├── pride_colorizer_genderfluid.json │ │ │ │ ├── pride_colorizer_genderqueer.json │ │ │ │ ├── pride_colorizer_intersex.json │ │ │ │ ├── pride_colorizer_lesbian.json │ │ │ │ ├── pride_colorizer_nonbinary.json │ │ │ │ ├── pride_colorizer_pansexual.json │ │ │ │ ├── pride_colorizer_plural.json │ │ │ │ ├── pride_colorizer_transgender.json │ │ │ │ └── uuid_colorizer.json │ │ │ │ ├── redstone │ │ │ │ ├── akashic_bookshelf.json │ │ │ │ ├── akashic_connector.json │ │ │ │ ├── directrix │ │ │ │ │ └── empty.json │ │ │ │ ├── edified_button.json │ │ │ │ ├── edified_door.json │ │ │ │ ├── edified_pressure_plate.json │ │ │ │ ├── edified_trapdoor.json │ │ │ │ └── impetus │ │ │ │ │ └── empty.json │ │ │ │ └── tools │ │ │ │ ├── abacus.json │ │ │ │ ├── artifact.json │ │ │ │ ├── cypher.json │ │ │ │ ├── focus.json │ │ │ │ ├── focus_rotated.json │ │ │ │ ├── jeweler_hammer.json │ │ │ │ ├── lens.json │ │ │ │ ├── spellbook.json │ │ │ │ ├── staff │ │ │ │ ├── acacia.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── birch.json │ │ │ │ ├── cherry.json │ │ │ │ ├── crimson.json │ │ │ │ ├── dark_oak.json │ │ │ │ ├── edified.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mangrove.json │ │ │ │ ├── mindsplice.json │ │ │ │ ├── oak.json │ │ │ │ ├── quenched.json │ │ │ │ ├── spruce.json │ │ │ │ └── warped.json │ │ │ │ ├── thought_knot.json │ │ │ │ └── trinket.json │ │ ├── loot_tables │ │ │ ├── blocks │ │ │ │ ├── akashic_bookshelf.json │ │ │ │ ├── akashic_connector.json │ │ │ │ ├── akashic_record.json │ │ │ │ ├── amethyst_bricks.json │ │ │ │ ├── amethyst_bricks_small.json │ │ │ │ ├── amethyst_dust_block.json │ │ │ │ ├── amethyst_edified_leaves.json │ │ │ │ ├── amethyst_pillar.json │ │ │ │ ├── amethyst_sconce.json │ │ │ │ ├── amethyst_tiles.json │ │ │ │ ├── ancient_scroll_paper.json │ │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ │ ├── aventurine_edified_leaves.json │ │ │ │ ├── citrine_edified_leaves.json │ │ │ │ ├── directrix │ │ │ │ │ ├── boolean.json │ │ │ │ │ ├── empty.json │ │ │ │ │ └── redstone.json │ │ │ │ ├── edified_button.json │ │ │ │ ├── edified_door.json │ │ │ │ ├── edified_fence.json │ │ │ │ ├── edified_fence_gate.json │ │ │ │ ├── edified_log.json │ │ │ │ ├── edified_log_amethyst.json │ │ │ │ ├── edified_log_aventurine.json │ │ │ │ ├── edified_log_citrine.json │ │ │ │ ├── edified_log_purple.json │ │ │ │ ├── edified_panel.json │ │ │ │ ├── edified_planks.json │ │ │ │ ├── edified_pressure_plate.json │ │ │ │ ├── edified_slab.json │ │ │ │ ├── edified_stairs.json │ │ │ │ ├── edified_tile.json │ │ │ │ ├── edified_trapdoor.json │ │ │ │ ├── edified_wood.json │ │ │ │ ├── impetus │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── look.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ └── rightclick.json │ │ │ │ ├── quenched_allay.json │ │ │ │ ├── quenched_allay_bricks.json │ │ │ │ ├── quenched_allay_bricks_small.json │ │ │ │ ├── quenched_allay_tiles.json │ │ │ │ ├── scroll_paper.json │ │ │ │ ├── scroll_paper_lantern.json │ │ │ │ ├── slate.json │ │ │ │ ├── slate_amethyst_bricks.json │ │ │ │ ├── slate_amethyst_bricks_small.json │ │ │ │ ├── slate_amethyst_pillar.json │ │ │ │ ├── slate_amethyst_tiles.json │ │ │ │ ├── slate_block.json │ │ │ │ ├── slate_bricks.json │ │ │ │ ├── slate_bricks_small.json │ │ │ │ ├── slate_pillar.json │ │ │ │ ├── slate_tiles.json │ │ │ │ ├── stripped_edified_log.json │ │ │ │ └── stripped_edified_wood.json │ │ │ └── inject │ │ │ │ └── amethyst_cluster.json │ │ ├── recipes │ │ │ ├── abacus.json │ │ │ ├── ageing_scroll_paper_lantern.json │ │ │ ├── akashic_bookshelf.json │ │ │ ├── akashic_connector.json │ │ │ ├── amethyst_dust_packing.json │ │ │ ├── amethyst_dust_unpacking.json │ │ │ ├── amethyst_sconce.json │ │ │ ├── amethyst_tiles.json │ │ │ ├── ancient_scroll_paper.json │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ ├── artifact.json │ │ │ ├── brainsweep │ │ │ │ ├── akashic_record.json │ │ │ │ ├── budding_amethyst.json │ │ │ │ ├── directrix_boolean.json │ │ │ │ ├── directrix_redstone.json │ │ │ │ ├── impetus_look.json │ │ │ │ ├── impetus_rightclick.json │ │ │ │ ├── impetus_storedplayer.json │ │ │ │ └── quench_allay.json │ │ │ ├── compat │ │ │ │ ├── create │ │ │ │ │ └── crushing │ │ │ │ │ │ └── amethyst_shard.json │ │ │ │ └── farmersdelight │ │ │ │ │ └── cutting │ │ │ │ │ ├── akashic_door.json │ │ │ │ │ ├── akashic_trapdoor.json │ │ │ │ │ ├── akashic_wood.json │ │ │ │ │ ├── edified_log.json │ │ │ │ │ ├── edified_log_amethyst.json │ │ │ │ │ ├── edified_log_aventurine.json │ │ │ │ │ ├── edified_log_citrine.json │ │ │ │ │ └── edified_log_purple.json │ │ │ ├── cypher.json │ │ │ ├── decompose_quenched_shard │ │ │ │ ├── charged.json │ │ │ │ ├── dust.json │ │ │ │ └── shard.json │ │ │ ├── default_colorizer.json │ │ │ ├── directrix │ │ │ │ └── empty.json │ │ │ ├── dye_colorizer_black.json │ │ │ ├── dye_colorizer_blue.json │ │ │ ├── dye_colorizer_brown.json │ │ │ ├── dye_colorizer_cyan.json │ │ │ ├── dye_colorizer_gray.json │ │ │ ├── dye_colorizer_green.json │ │ │ ├── dye_colorizer_light_blue.json │ │ │ ├── dye_colorizer_light_gray.json │ │ │ ├── dye_colorizer_lime.json │ │ │ ├── dye_colorizer_magenta.json │ │ │ ├── dye_colorizer_orange.json │ │ │ ├── dye_colorizer_pink.json │ │ │ ├── dye_colorizer_purple.json │ │ │ ├── dye_colorizer_red.json │ │ │ ├── dye_colorizer_white.json │ │ │ ├── dye_colorizer_yellow.json │ │ │ ├── dynamicseal_focus.json │ │ │ ├── dynamicseal_spellbook.json │ │ │ ├── edified_button.json │ │ │ ├── edified_door.json │ │ │ ├── edified_fence.json │ │ │ ├── edified_fence_gate.json │ │ │ ├── edified_panel.json │ │ │ ├── edified_planks.json │ │ │ ├── edified_pressure_plate.json │ │ │ ├── edified_slab.json │ │ │ ├── edified_stairs.json │ │ │ ├── edified_tile.json │ │ │ ├── edified_trapdoor.json │ │ │ ├── edified_wood.json │ │ │ ├── focus.json │ │ │ ├── focus_rotated.json │ │ │ ├── impetus │ │ │ │ └── empty.json │ │ │ ├── jeweler_hammer.json │ │ │ ├── lens.json │ │ │ ├── pride_colorizer_agender.json │ │ │ ├── pride_colorizer_aroace.json │ │ │ ├── pride_colorizer_aromantic.json │ │ │ ├── pride_colorizer_asexual.json │ │ │ ├── pride_colorizer_bisexual.json │ │ │ ├── pride_colorizer_demiboy.json │ │ │ ├── pride_colorizer_demigirl.json │ │ │ ├── pride_colorizer_gay.json │ │ │ ├── pride_colorizer_genderfluid.json │ │ │ ├── pride_colorizer_genderqueer.json │ │ │ ├── pride_colorizer_intersex.json │ │ │ ├── pride_colorizer_lesbian.json │ │ │ ├── pride_colorizer_nonbinary.json │ │ │ ├── pride_colorizer_pansexual.json │ │ │ ├── pride_colorizer_plural.json │ │ │ ├── pride_colorizer_transgender.json │ │ │ ├── scroll.json │ │ │ ├── scroll_medium.json │ │ │ ├── scroll_paper.json │ │ │ ├── scroll_paper_lantern.json │ │ │ ├── scroll_small.json │ │ │ ├── slate.json │ │ │ ├── slate_block.json │ │ │ ├── slate_block_from_slates.json │ │ │ ├── spellbook.json │ │ │ ├── staff │ │ │ │ ├── acacia.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── birch.json │ │ │ │ ├── cherry.json │ │ │ │ ├── crimson.json │ │ │ │ ├── dark_oak.json │ │ │ │ ├── edified.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mangrove.json │ │ │ │ ├── mindsplice.json │ │ │ │ ├── oak.json │ │ │ │ ├── quenched.json │ │ │ │ ├── spruce.json │ │ │ │ └── warped.json │ │ │ ├── stonecutting │ │ │ │ └── amethyst_tiles.json │ │ │ ├── stripped_edified_wood.json │ │ │ ├── sub_sandwich.json │ │ │ ├── thought_knot.json │ │ │ ├── trinket.json │ │ │ └── uuid_colorizer.json │ │ └── tags │ │ │ ├── action │ │ │ ├── can_start_enlighten.json │ │ │ ├── per_world_pattern.json │ │ │ └── requires_enlightenment.json │ │ │ ├── blocks │ │ │ ├── brainswept_circle_components.json │ │ │ ├── cheap_to_break_block.json │ │ │ ├── directrices.json │ │ │ ├── edified_logs.json │ │ │ ├── edified_planks.json │ │ │ ├── impeti.json │ │ │ └── water_plants.json │ │ │ └── items │ │ │ ├── brainswept_circle_components.json │ │ │ ├── directrices.json │ │ │ ├── edified_logs.json │ │ │ ├── edified_planks.json │ │ │ ├── grants_root_advancement.json │ │ │ ├── impeti.json │ │ │ ├── phial_base.json │ │ │ ├── seal_materials.json │ │ │ └── staves.json │ │ └── minecraft │ │ └── tags │ │ ├── blocks │ │ ├── buttons.json │ │ ├── crystal_sound_blocks.json │ │ ├── doors.json │ │ ├── fence_gates.json │ │ ├── fences.json │ │ ├── leaves.json │ │ ├── logs.json │ │ ├── logs_that_burn.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── planks.json │ │ ├── pressure_plates.json │ │ ├── slabs.json │ │ ├── stairs.json │ │ ├── trapdoors.json │ │ ├── unstable_bottom_center.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ │ └── items │ │ ├── buttons.json │ │ ├── doors.json │ │ ├── leaves.json │ │ ├── logs.json │ │ ├── logs_that_burn.json │ │ ├── planks.json │ │ ├── slabs.json │ │ ├── trapdoors.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ └── wooden_trapdoors.json │ └── main │ ├── java │ └── at │ │ └── petrak │ │ └── hexcasting │ │ └── fabric │ │ ├── FabricHexClientInitializer.kt │ │ ├── FabricHexConfig.java │ │ ├── FabricHexInitializer.kt │ │ ├── cc │ │ ├── CCAltiora.java │ │ ├── CCBrainswept.java │ │ ├── CCClientCastingStack.java │ │ ├── CCFavoredPigment.java │ │ ├── CCFlight.java │ │ ├── CCPatterns.java │ │ ├── CCSentinel.java │ │ ├── CCStaffcastImage.java │ │ ├── HexCardinalComponents.java │ │ ├── adimpl │ │ │ ├── CCEntityIotaHolder.java │ │ │ ├── CCHexHolder.java │ │ │ ├── CCIotaHolder.java │ │ │ ├── CCItemIotaHolder.java │ │ │ ├── CCMediaHolder.java │ │ │ ├── CCPigment.java │ │ │ └── CCVariantItem.java │ │ └── package-info.java │ │ ├── client │ │ └── ExtendedTexture.java │ │ ├── datagen │ │ ├── HexFabricConditionsBuilder.java │ │ └── HexFabricDataGenerators.java │ │ ├── event │ │ ├── MouseScrollCallback.java │ │ └── VillagerConversionCallback.java │ │ ├── interop │ │ ├── ModMenuInterop.java │ │ ├── emi │ │ │ ├── BrainsweepeeEmiStack.java │ │ │ ├── EmiBrainsweepRecipe.java │ │ │ ├── EmiEdifyRecipe.java │ │ │ ├── EmiPhialRecipe.java │ │ │ ├── HexEMIPlugin.java │ │ │ ├── PatternRendererEMI.java │ │ │ └── TheCoolerSlotWidget.java │ │ └── trinkets │ │ │ ├── LensTrinketRenderer.java │ │ │ └── TrinketsApiInterop.java │ │ ├── loot │ │ └── FabricHexLootModJankery.java │ │ ├── mixin │ │ ├── FabricAxeItemMixin.java │ │ ├── FabricBlockBehaviorMixin.java │ │ ├── FabricClipContextMixin.java │ │ ├── FabricEnchantmentTableBlockMixin.java │ │ ├── FabricItemEntityMixin.java │ │ ├── FabricLivingEntityMixin.java │ │ ├── FabricMixinReloadableServerResources.java │ │ ├── FabricMobMixin.java │ │ ├── FabricPlayerMixin.java │ │ ├── FabricVillagerTurnIntoWitchMixin.java │ │ └── client │ │ │ ├── FabricAbstractTextureMixin.java │ │ │ ├── FabricLevelRendererMixin.java │ │ │ ├── FabricMixinGameRenderer.java │ │ │ ├── FabricModelManagerMixin.java │ │ │ ├── FabricMouseHandlerMixin.java │ │ │ ├── FabricParticleEngineMixin.java │ │ │ └── FabricPlayerRendererMixin.java │ │ ├── network │ │ └── FabricPacketHandler.java │ │ ├── recipe │ │ ├── FabricModConditionalIngredient.java │ │ └── FabricUnsealedIngredient.java │ │ ├── storage │ │ └── FabricImpetusStorage.kt │ │ └── xplat │ │ ├── FabricClientXplatImpl.java │ │ └── FabricXplatImpl.java │ └── resources │ ├── META-INF │ └── services │ │ ├── at.petrak.hexcasting.xplat.IClientXplatAbstractions │ │ └── at.petrak.hexcasting.xplat.IXplatAbstractions │ ├── assets │ └── emi │ │ └── recipe │ │ └── defaults │ │ └── hexcasting.json │ ├── data │ └── trinkets │ │ ├── entities │ │ └── hex.json │ │ └── tags │ │ └── items │ │ └── head │ │ └── face.json │ ├── fabric.mod.json │ ├── fabricasting.accesswidener │ └── fabricasting.mixins.json ├── Forge ├── build.gradle ├── gradle.properties └── src │ ├── generated │ └── resources │ │ ├── .cache │ │ ├── 0c0723c03086ecbf5bb358ff107c7d65ba4d213b │ │ ├── 50b16d832771f8a8317f4d1b88c5121208c8c4f9 │ │ ├── 59eb3dbb5f86130e09b3c62d89b9525ee01cf52d │ │ ├── 8c8364f4e83c409ec545b3c2adc7d52ce75bbb78 │ │ ├── 9fb1092f32d4fcbf9e061ffd718d4ec689c6c95e │ │ └── d4b3e6634c30118e1127c02b727ea285752e5aac │ │ └── data │ │ ├── create │ │ ├── recipes │ │ │ └── crushing │ │ │ │ ├── amethyst_block.json │ │ │ │ └── amethyst_cluster.json │ │ └── tags │ │ │ └── blocks │ │ │ └── brittle.json │ │ ├── forge │ │ ├── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ └── tags │ │ │ └── items │ │ │ ├── dusts │ │ │ └── amethyst.json │ │ │ └── gems.json │ │ ├── hexcasting │ │ ├── advancements │ │ │ └── recipes │ │ │ │ ├── brainsweep │ │ │ │ └── brainsweep │ │ │ │ │ ├── akashic_record.json │ │ │ │ │ ├── budding_amethyst.json │ │ │ │ │ ├── directrix_boolean.json │ │ │ │ │ ├── directrix_redstone.json │ │ │ │ │ ├── impetus_look.json │ │ │ │ │ ├── impetus_rightclick.json │ │ │ │ │ ├── impetus_storedplayer.json │ │ │ │ │ └── quench_allay.json │ │ │ │ ├── building_blocks │ │ │ │ ├── amethyst_dust_packing.json │ │ │ │ ├── amethyst_dust_unpacking.json │ │ │ │ ├── amethyst_tiles.json │ │ │ │ ├── ancient_scroll_paper.json │ │ │ │ ├── edified_fence.json │ │ │ │ ├── edified_fence_gate.json │ │ │ │ ├── edified_panel.json │ │ │ │ ├── edified_planks.json │ │ │ │ ├── edified_slab.json │ │ │ │ ├── edified_stairs.json │ │ │ │ ├── edified_tile.json │ │ │ │ ├── edified_wood.json │ │ │ │ ├── scroll_paper.json │ │ │ │ ├── slate_block.json │ │ │ │ ├── slate_block_from_slates.json │ │ │ │ ├── stonecutting │ │ │ │ │ └── amethyst_tiles.json │ │ │ │ └── stripped_edified_wood.json │ │ │ │ ├── decorations │ │ │ │ ├── ageing_scroll_paper_lantern.json │ │ │ │ ├── amethyst_sconce.json │ │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ │ ├── scroll.json │ │ │ │ ├── scroll_medium.json │ │ │ │ ├── scroll_paper_lantern.json │ │ │ │ ├── scroll_small.json │ │ │ │ └── slate.json │ │ │ │ ├── food │ │ │ │ └── sub_sandwich.json │ │ │ │ ├── misc │ │ │ │ ├── decompose_quenched_shard │ │ │ │ │ ├── charged.json │ │ │ │ │ ├── dust.json │ │ │ │ │ └── shard.json │ │ │ │ ├── default_colorizer.json │ │ │ │ ├── dye_colorizer_black.json │ │ │ │ ├── dye_colorizer_blue.json │ │ │ │ ├── dye_colorizer_brown.json │ │ │ │ ├── dye_colorizer_cyan.json │ │ │ │ ├── dye_colorizer_gray.json │ │ │ │ ├── dye_colorizer_green.json │ │ │ │ ├── dye_colorizer_light_blue.json │ │ │ │ ├── dye_colorizer_light_gray.json │ │ │ │ ├── dye_colorizer_lime.json │ │ │ │ ├── dye_colorizer_magenta.json │ │ │ │ ├── dye_colorizer_orange.json │ │ │ │ ├── dye_colorizer_pink.json │ │ │ │ ├── dye_colorizer_purple.json │ │ │ │ ├── dye_colorizer_red.json │ │ │ │ ├── dye_colorizer_white.json │ │ │ │ ├── dye_colorizer_yellow.json │ │ │ │ ├── pride_colorizer_agender.json │ │ │ │ ├── pride_colorizer_aroace.json │ │ │ │ ├── pride_colorizer_aromantic.json │ │ │ │ ├── pride_colorizer_asexual.json │ │ │ │ ├── pride_colorizer_bisexual.json │ │ │ │ ├── pride_colorizer_demiboy.json │ │ │ │ ├── pride_colorizer_demigirl.json │ │ │ │ ├── pride_colorizer_gay.json │ │ │ │ ├── pride_colorizer_genderfluid.json │ │ │ │ ├── pride_colorizer_genderqueer.json │ │ │ │ ├── pride_colorizer_intersex.json │ │ │ │ ├── pride_colorizer_lesbian.json │ │ │ │ ├── pride_colorizer_nonbinary.json │ │ │ │ ├── pride_colorizer_pansexual.json │ │ │ │ ├── pride_colorizer_plural.json │ │ │ │ ├── pride_colorizer_transgender.json │ │ │ │ └── uuid_colorizer.json │ │ │ │ ├── redstone │ │ │ │ ├── akashic_bookshelf.json │ │ │ │ ├── akashic_connector.json │ │ │ │ ├── directrix │ │ │ │ │ └── empty.json │ │ │ │ ├── edified_button.json │ │ │ │ ├── edified_door.json │ │ │ │ ├── edified_pressure_plate.json │ │ │ │ ├── edified_trapdoor.json │ │ │ │ └── impetus │ │ │ │ │ └── empty.json │ │ │ │ └── tools │ │ │ │ ├── abacus.json │ │ │ │ ├── artifact.json │ │ │ │ ├── cypher.json │ │ │ │ ├── focus.json │ │ │ │ ├── focus_rotated.json │ │ │ │ ├── jeweler_hammer.json │ │ │ │ ├── lens.json │ │ │ │ ├── spellbook.json │ │ │ │ ├── staff │ │ │ │ ├── acacia.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── birch.json │ │ │ │ ├── cherry.json │ │ │ │ ├── crimson.json │ │ │ │ ├── dark_oak.json │ │ │ │ ├── edified.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mangrove.json │ │ │ │ ├── mindsplice.json │ │ │ │ ├── oak.json │ │ │ │ ├── quenched.json │ │ │ │ ├── spruce.json │ │ │ │ └── warped.json │ │ │ │ ├── thought_knot.json │ │ │ │ └── trinket.json │ │ ├── loot_modifiers │ │ │ ├── amethyst_cluster.json │ │ │ ├── cypher │ │ │ │ └── minecraft │ │ │ │ │ └── chests │ │ │ │ │ ├── abandoned_mineshaft.json │ │ │ │ │ ├── ancient_city.json │ │ │ │ │ ├── desert_pyramid.json │ │ │ │ │ ├── jungle_temple.json │ │ │ │ │ ├── nether_bridge.json │ │ │ │ │ ├── simple_dungeon.json │ │ │ │ │ └── stronghold_corridor.json │ │ │ ├── lore │ │ │ │ └── minecraft │ │ │ │ │ └── chests │ │ │ │ │ ├── abandoned_mineshaft.json │ │ │ │ │ ├── pillager_outpost.json │ │ │ │ │ ├── simple_dungeon.json │ │ │ │ │ ├── stronghold_library.json │ │ │ │ │ ├── village │ │ │ │ │ ├── village_desert_house.json │ │ │ │ │ ├── village_plains_house.json │ │ │ │ │ ├── village_savanna_house.json │ │ │ │ │ ├── village_snowy_house.json │ │ │ │ │ └── village_taiga_house.json │ │ │ │ │ └── woodland_mansion.json │ │ │ └── scroll │ │ │ │ └── minecraft │ │ │ │ └── chests │ │ │ │ ├── abandoned_mineshaft.json │ │ │ │ ├── ancient_city.json │ │ │ │ ├── bastion_other.json │ │ │ │ ├── bastion_treasure.json │ │ │ │ ├── desert_pyramid.json │ │ │ │ ├── end_city_treasure.json │ │ │ │ ├── jungle_temple.json │ │ │ │ ├── nether_bridge.json │ │ │ │ ├── pillager_outpost.json │ │ │ │ ├── shipwreck_map.json │ │ │ │ ├── simple_dungeon.json │ │ │ │ ├── stronghold_library.json │ │ │ │ ├── village │ │ │ │ └── village_cartographer.json │ │ │ │ └── woodland_mansion.json │ │ ├── loot_tables │ │ │ ├── blocks │ │ │ │ ├── akashic_bookshelf.json │ │ │ │ ├── akashic_connector.json │ │ │ │ ├── akashic_record.json │ │ │ │ ├── amethyst_bricks.json │ │ │ │ ├── amethyst_bricks_small.json │ │ │ │ ├── amethyst_dust_block.json │ │ │ │ ├── amethyst_edified_leaves.json │ │ │ │ ├── amethyst_pillar.json │ │ │ │ ├── amethyst_sconce.json │ │ │ │ ├── amethyst_tiles.json │ │ │ │ ├── ancient_scroll_paper.json │ │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ │ ├── aventurine_edified_leaves.json │ │ │ │ ├── citrine_edified_leaves.json │ │ │ │ ├── directrix │ │ │ │ │ ├── boolean.json │ │ │ │ │ ├── empty.json │ │ │ │ │ └── redstone.json │ │ │ │ ├── edified_button.json │ │ │ │ ├── edified_door.json │ │ │ │ ├── edified_fence.json │ │ │ │ ├── edified_fence_gate.json │ │ │ │ ├── edified_log.json │ │ │ │ ├── edified_log_amethyst.json │ │ │ │ ├── edified_log_aventurine.json │ │ │ │ ├── edified_log_citrine.json │ │ │ │ ├── edified_log_purple.json │ │ │ │ ├── edified_panel.json │ │ │ │ ├── edified_planks.json │ │ │ │ ├── edified_pressure_plate.json │ │ │ │ ├── edified_slab.json │ │ │ │ ├── edified_stairs.json │ │ │ │ ├── edified_tile.json │ │ │ │ ├── edified_trapdoor.json │ │ │ │ ├── edified_wood.json │ │ │ │ ├── impetus │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── look.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ └── rightclick.json │ │ │ │ ├── quenched_allay.json │ │ │ │ ├── quenched_allay_bricks.json │ │ │ │ ├── quenched_allay_bricks_small.json │ │ │ │ ├── quenched_allay_tiles.json │ │ │ │ ├── scroll_paper.json │ │ │ │ ├── scroll_paper_lantern.json │ │ │ │ ├── slate.json │ │ │ │ ├── slate_amethyst_bricks.json │ │ │ │ ├── slate_amethyst_bricks_small.json │ │ │ │ ├── slate_amethyst_pillar.json │ │ │ │ ├── slate_amethyst_tiles.json │ │ │ │ ├── slate_block.json │ │ │ │ ├── slate_bricks.json │ │ │ │ ├── slate_bricks_small.json │ │ │ │ ├── slate_pillar.json │ │ │ │ ├── slate_tiles.json │ │ │ │ ├── stripped_edified_log.json │ │ │ │ └── stripped_edified_wood.json │ │ │ └── inject │ │ │ │ └── amethyst_cluster.json │ │ ├── recipes │ │ │ ├── abacus.json │ │ │ ├── ageing_scroll_paper_lantern.json │ │ │ ├── akashic_bookshelf.json │ │ │ ├── akashic_connector.json │ │ │ ├── amethyst_dust_packing.json │ │ │ ├── amethyst_dust_unpacking.json │ │ │ ├── amethyst_sconce.json │ │ │ ├── amethyst_tiles.json │ │ │ ├── ancient_scroll_paper.json │ │ │ ├── ancient_scroll_paper_lantern.json │ │ │ ├── artifact.json │ │ │ ├── brainsweep │ │ │ │ ├── akashic_record.json │ │ │ │ ├── budding_amethyst.json │ │ │ │ ├── directrix_boolean.json │ │ │ │ ├── directrix_redstone.json │ │ │ │ ├── impetus_look.json │ │ │ │ ├── impetus_rightclick.json │ │ │ │ ├── impetus_storedplayer.json │ │ │ │ └── quench_allay.json │ │ │ ├── compat │ │ │ │ ├── create │ │ │ │ │ └── crushing │ │ │ │ │ │ └── amethyst_shard.json │ │ │ │ └── farmersdelight │ │ │ │ │ └── cutting │ │ │ │ │ ├── akashic_door.json │ │ │ │ │ ├── akashic_trapdoor.json │ │ │ │ │ ├── akashic_wood.json │ │ │ │ │ ├── edified_log.json │ │ │ │ │ ├── edified_log_amethyst.json │ │ │ │ │ ├── edified_log_aventurine.json │ │ │ │ │ ├── edified_log_citrine.json │ │ │ │ │ └── edified_log_purple.json │ │ │ ├── cypher.json │ │ │ ├── decompose_quenched_shard │ │ │ │ ├── charged.json │ │ │ │ ├── dust.json │ │ │ │ └── shard.json │ │ │ ├── default_colorizer.json │ │ │ ├── directrix │ │ │ │ └── empty.json │ │ │ ├── dye_colorizer_black.json │ │ │ ├── dye_colorizer_blue.json │ │ │ ├── dye_colorizer_brown.json │ │ │ ├── dye_colorizer_cyan.json │ │ │ ├── dye_colorizer_gray.json │ │ │ ├── dye_colorizer_green.json │ │ │ ├── dye_colorizer_light_blue.json │ │ │ ├── dye_colorizer_light_gray.json │ │ │ ├── dye_colorizer_lime.json │ │ │ ├── dye_colorizer_magenta.json │ │ │ ├── dye_colorizer_orange.json │ │ │ ├── dye_colorizer_pink.json │ │ │ ├── dye_colorizer_purple.json │ │ │ ├── dye_colorizer_red.json │ │ │ ├── dye_colorizer_white.json │ │ │ ├── dye_colorizer_yellow.json │ │ │ ├── dynamicseal_focus.json │ │ │ ├── dynamicseal_spellbook.json │ │ │ ├── edified_button.json │ │ │ ├── edified_door.json │ │ │ ├── edified_fence.json │ │ │ ├── edified_fence_gate.json │ │ │ ├── edified_panel.json │ │ │ ├── edified_planks.json │ │ │ ├── edified_pressure_plate.json │ │ │ ├── edified_slab.json │ │ │ ├── edified_stairs.json │ │ │ ├── edified_tile.json │ │ │ ├── edified_trapdoor.json │ │ │ ├── edified_wood.json │ │ │ ├── focus.json │ │ │ ├── focus_rotated.json │ │ │ ├── impetus │ │ │ │ └── empty.json │ │ │ ├── jeweler_hammer.json │ │ │ ├── lens.json │ │ │ ├── pride_colorizer_agender.json │ │ │ ├── pride_colorizer_aroace.json │ │ │ ├── pride_colorizer_aromantic.json │ │ │ ├── pride_colorizer_asexual.json │ │ │ ├── pride_colorizer_bisexual.json │ │ │ ├── pride_colorizer_demiboy.json │ │ │ ├── pride_colorizer_demigirl.json │ │ │ ├── pride_colorizer_gay.json │ │ │ ├── pride_colorizer_genderfluid.json │ │ │ ├── pride_colorizer_genderqueer.json │ │ │ ├── pride_colorizer_intersex.json │ │ │ ├── pride_colorizer_lesbian.json │ │ │ ├── pride_colorizer_nonbinary.json │ │ │ ├── pride_colorizer_pansexual.json │ │ │ ├── pride_colorizer_plural.json │ │ │ ├── pride_colorizer_transgender.json │ │ │ ├── scroll.json │ │ │ ├── scroll_medium.json │ │ │ ├── scroll_paper.json │ │ │ ├── scroll_paper_lantern.json │ │ │ ├── scroll_small.json │ │ │ ├── slate.json │ │ │ ├── slate_block.json │ │ │ ├── slate_block_from_slates.json │ │ │ ├── spellbook.json │ │ │ ├── staff │ │ │ │ ├── acacia.json │ │ │ │ ├── bamboo.json │ │ │ │ ├── birch.json │ │ │ │ ├── cherry.json │ │ │ │ ├── crimson.json │ │ │ │ ├── dark_oak.json │ │ │ │ ├── edified.json │ │ │ │ ├── jungle.json │ │ │ │ ├── mangrove.json │ │ │ │ ├── mindsplice.json │ │ │ │ ├── oak.json │ │ │ │ ├── quenched.json │ │ │ │ ├── spruce.json │ │ │ │ └── warped.json │ │ │ ├── stonecutting │ │ │ │ └── amethyst_tiles.json │ │ │ ├── stripped_edified_wood.json │ │ │ ├── sub_sandwich.json │ │ │ ├── thought_knot.json │ │ │ ├── trinket.json │ │ │ └── uuid_colorizer.json │ │ └── tags │ │ │ ├── blocks │ │ │ ├── brainswept_circle_components.json │ │ │ ├── cheap_to_break_block.json │ │ │ ├── directrices.json │ │ │ ├── edified_logs.json │ │ │ ├── edified_planks.json │ │ │ ├── impeti.json │ │ │ └── water_plants.json │ │ │ ├── hexcasting │ │ │ └── action │ │ │ │ ├── can_start_enlighten.json │ │ │ │ ├── per_world_pattern.json │ │ │ │ └── requires_enlightenment.json │ │ │ └── items │ │ │ ├── brainswept_circle_components.json │ │ │ ├── directrices.json │ │ │ ├── edified_logs.json │ │ │ ├── edified_planks.json │ │ │ ├── grants_root_advancement.json │ │ │ ├── impeti.json │ │ │ ├── phial_base.json │ │ │ ├── seal_materials.json │ │ │ └── staves.json │ │ └── minecraft │ │ └── tags │ │ ├── blocks │ │ ├── buttons.json │ │ ├── crystal_sound_blocks.json │ │ ├── doors.json │ │ ├── fence_gates.json │ │ ├── fences.json │ │ ├── leaves.json │ │ ├── logs.json │ │ ├── logs_that_burn.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── planks.json │ │ ├── pressure_plates.json │ │ ├── slabs.json │ │ ├── stairs.json │ │ ├── trapdoors.json │ │ ├── unstable_bottom_center.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_fences.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ ├── wooden_stairs.json │ │ └── wooden_trapdoors.json │ │ └── items │ │ ├── buttons.json │ │ ├── doors.json │ │ ├── leaves.json │ │ ├── logs.json │ │ ├── logs_that_burn.json │ │ ├── planks.json │ │ ├── slabs.json │ │ ├── trapdoors.json │ │ ├── wooden_buttons.json │ │ ├── wooden_doors.json │ │ ├── wooden_pressure_plates.json │ │ ├── wooden_slabs.json │ │ └── wooden_trapdoors.json │ └── main │ ├── java │ └── at │ │ └── petrak │ │ └── hexcasting │ │ └── forge │ │ ├── ForgeHexClientInitializer.java │ │ ├── ForgeHexConfig.java │ │ ├── ForgeHexInitializer.java │ │ ├── cap │ │ ├── CapSyncers.java │ │ ├── ForgeCapabilityHandler.java │ │ ├── ForgeImpetusCapability.java │ │ ├── HexCapabilities.java │ │ └── adimpl │ │ │ ├── CapClientCastingStack.java │ │ │ ├── CapEntityIotaHolder.java │ │ │ ├── CapItemHexHolder.java │ │ │ ├── CapItemIotaHolder.java │ │ │ ├── CapItemMediaHolder.java │ │ │ ├── CapItemPigment.java │ │ │ ├── CapItemVariantItem.java │ │ │ ├── CapStaticIotaHolder.java │ │ │ └── CapStaticMediaHolder.java │ │ ├── datagen │ │ ├── ForgeHexConditionsBuilder.java │ │ ├── ForgeHexDataGenerators.java │ │ ├── ForgeHexLootModGen.java │ │ ├── TagsProviderEFHSetter.java │ │ └── xplat │ │ │ ├── HexBlockStatesAndModels.java │ │ │ └── HexItemModels.java │ │ ├── interop │ │ ├── curios │ │ │ ├── CuriosApiInterop.java │ │ │ ├── CuriosRenderers.java │ │ │ └── LensCurioRenderer.java │ │ └── jei │ │ │ ├── BrainsweepRecipeCategory.java │ │ │ ├── EdifyRecipeCategory.java │ │ │ ├── HexJEIPlugin.java │ │ │ ├── PatternDrawable.java │ │ │ └── PhialRecipeCategory.java │ │ ├── lib │ │ ├── ForgeHexArgumentTypeRegistry.java │ │ └── ForgeHexLootMods.java │ │ ├── loot │ │ ├── ForgeHexAmethystLootMod.java │ │ ├── ForgeHexCypherLootMod.java │ │ ├── ForgeHexLoreLootMod.java │ │ └── ForgeHexScrollLootMod.java │ │ ├── mixin │ │ ├── ForgeAccessorBuiltInRegistries.java │ │ ├── ForgeMixinBlockColors.java │ │ ├── ForgeMixinCursedRecipeSerializerBase.java │ │ ├── ForgeMixinItemColors.java │ │ └── ForgeMixinTagsProvider.java │ │ ├── network │ │ ├── ForgePacketHandler.java │ │ ├── MsgAltioraUpdateAck.java │ │ ├── MsgBrainsweepAck.java │ │ ├── MsgPigmentUpdateAck.java │ │ └── MsgSentinelStatusUpdateAck.java │ │ ├── recipe │ │ ├── ForgeModConditionalIngredient.java │ │ └── ForgeUnsealedIngredient.java │ │ └── xplat │ │ ├── ForgeClientXplatImpl.java │ │ └── ForgeXplatImpl.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ ├── mods.toml │ └── services │ │ ├── at.petrak.hexcasting.xplat.IClientXplatAbstractions │ │ └── at.petrak.hexcasting.xplat.IXplatAbstractions │ ├── data │ └── curios │ │ └── tags │ │ └── items │ │ └── head.json │ └── hexcasting_forge.mixins.json ├── Jenkinsfile ├── LICENSE.txt ├── README.md ├── art ├── banner.png ├── colorizers │ ├── 1.ase │ ├── 1.png │ ├── 1.png.mcmeta │ ├── 2.ase │ ├── 3.ase │ ├── 4.ase │ ├── 5.ase │ └── 5.gif ├── logo.png ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── slate_bg.png ├── build.gradle ├── doc ├── LICENSE.txt ├── README.md ├── hexdoc.toml ├── nodemon.json ├── resources │ ├── assets │ │ ├── farmersdelight │ │ │ ├── LICENSE │ │ │ ├── blockstates │ │ │ │ └── skillet.json │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ ├── ru_ru.json │ │ │ │ └── zh_cn.json │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ └── skillet.json │ │ │ │ └── item │ │ │ │ │ └── skillet.json │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── skillet_bottom.png │ │ │ │ ├── skillet_side.png │ │ │ │ └── skillet_top.png │ │ ├── hexcasting │ │ │ ├── lang │ │ │ │ ├── en_us.flatten.json5 │ │ │ │ ├── ru_ru.flatten.json5 │ │ │ │ └── zh_cn.flatten.json5 │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── amethyst_sconce.png │ │ │ │ ├── edified_button.png │ │ │ │ ├── edified_pressure_plate.png │ │ │ │ ├── edified_slab.png │ │ │ │ └── edified_stairs.png │ │ │ │ └── gui │ │ │ │ └── hexdoc │ │ │ │ └── brainsweep.png │ │ └── minecraft │ │ │ └── textures │ │ │ └── entities │ │ │ ├── allay.png │ │ │ └── villagers │ │ │ ├── armorer.png │ │ │ ├── butcher.png │ │ │ ├── cartographer.png │ │ │ ├── cleric.png │ │ │ ├── farmer.png │ │ │ ├── fisherman.png │ │ │ ├── fletcher.png │ │ │ ├── leatherworker.png │ │ │ ├── librarian.png │ │ │ ├── mason.png │ │ │ ├── nitwit.png │ │ │ ├── none.png │ │ │ ├── shepherd.png │ │ │ ├── toolsmith.png │ │ │ └── weaponsmith.png │ └── data │ │ └── hexdoc │ │ └── tags │ │ ├── advancements │ │ └── spoilered.json │ │ └── items │ │ └── gaslighting.json └── src │ └── hexdoc_hexcasting │ ├── __init__.py │ ├── __version__.py │ ├── _export │ └── __init__.py │ ├── _hooks.py │ ├── _templates │ ├── __init__.py │ ├── hexcasting.js.jinja │ ├── hexcasting_render.js.jinja │ ├── index.css.jinja │ ├── index.html.jinja │ ├── ingredients │ │ └── hexcasting │ │ │ └── brainsweepee │ │ │ ├── entity_tag.html.jinja │ │ │ ├── entity_type.html.jinja │ │ │ └── villager.html.jinja │ ├── pages │ │ └── hexcasting │ │ │ ├── brainsweep.html.jinja │ │ │ ├── crafting_multi.html.jinja │ │ │ ├── manual_pattern.html.jinja │ │ │ └── pattern.html.jinja │ └── recipes │ │ └── hexcasting │ │ └── brainsweep.html.jinja │ ├── book │ ├── page │ │ ├── __init__.py │ │ ├── abstract_pages.py │ │ └── pages.py │ └── recipes.py │ ├── metadata.py │ ├── py.typed │ └── utils │ ├── __init__.py │ ├── constants.py │ └── pattern.py ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pyproject.toml ├── settings.gradle └── todo.txt /Common/logs/latest.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/logs/latest.log -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/akashic_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/akashic_ligature" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/akashic_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/akashic_record" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/amethyst_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/amethyst_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/amethyst_bricks_small" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/amethyst_dust_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/amethyst_dust_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/amethyst_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/amethyst_edified_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/amethyst_tiles" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/ancient_scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/ancient_scroll_paper" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/ancient_scroll_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/ancient_scroll_paper_lantern" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/aventurine_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/aventurine_edified_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/citrine_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/citrine_edified_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/conjured_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/conjured" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/conjured_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/conjured" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/edified_panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/edified_panel" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/edified_tile.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/edified_tile" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/quenched_allay.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/quenched_allay" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/quenched_allay_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/quenched_allay_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/quenched_allay_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/quenched_allay_bricks_small" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/quenched_allay_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/quenched_allay_tiles" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/scroll_paper" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/scroll_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/scroll_paper_lantern" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/slate_amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/slate_amethyst_tiles" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/slate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/slate_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/slate_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/slate_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/slate_bricks_small" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/blockstates/slate_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "hexcasting:block/deco/slate_tiles" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/akashic_bookshelf_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_bookshelf", 3 | "textures": { 4 | "overlay": "hexcasting:block/akashic_bookshelf_overlay_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/akashic_bookshelf_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_bookshelf", 3 | "textures": { 4 | "overlay": "hexcasting:block/akashic_bookshelf_overlay_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/akashic_bookshelf_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_bookshelf", 3 | "textures": { 4 | "overlay": "hexcasting:block/akashic_bookshelf_overlay_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/akashic_bookshelf_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_bookshelf", 3 | "textures": { 4 | "overlay": "hexcasting:block/akashic_bookshelf_overlay_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/akashic_ligature.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/akashic_ligature" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/amethyst_dust_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/cube_half_mirrored", 3 | "textures": { 4 | "all": "hexcasting:block/amethyst_dust_block" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/ancient_scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/ancient_scroll_paper" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/conjured.json: -------------------------------------------------------------------------------- 1 | { 2 | "render_type": "minecraft:cutout", 3 | "textures": { 4 | "particle": "minecraft:block/amethyst_block" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/amethyst_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/amethyst_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/amethyst_bricks_small" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/amethyst_tiles" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_small_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_small_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_small_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_small_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_small_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_small_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_bricks_small_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_small_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_tiles_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_tiles_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_tiles_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_tiles_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_tiles_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_tiles_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/quenched_allay_tiles_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_tiles_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_small_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_small_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_small_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_small_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_bricks_small_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_bricks_small_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_amethyst_tiles" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_bricks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_bricks_small" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/deco/slate_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/slate_tiles" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "hexcasting:block/edified_log_top", 5 | "side": "hexcasting:block/edified_log" 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/edified_panel" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_planks_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/edified_planks_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_planks_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/edified_planks_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_up", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_pressure_plate_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/pressure_plate_down", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_tile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/edified_tile" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/edified_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "hexcasting:block/edified_log", 5 | "side": "hexcasting:block/edified_log" 6 | } 7 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/quenched_allay_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/quenched_allay_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/quenched_allay_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/quenched_allay_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/quenched_allay_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_bricks_small_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/quenched_allay_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/deco/quenched_allay_tiles_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/scroll_paper" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/block/slate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "hexcasting:block/slate" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/abacus.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/abacus" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/akashic_bookshelf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_bookshelf_empty" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/akashic_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_ligature" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/akashic_record.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/akashic_record" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/amethyst_bricks" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/amethyst_bricks_small" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_dust.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/amethyst_dust" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_dust_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/amethyst_dust_block" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/amethyst_edified_leaves" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/amethyst_pillar" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_sconce.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/amethyst_sconce" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/amethyst_tiles" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_cypher_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_ancient_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/ancient_scroll_paper" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/ancient_scroll_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/ancient_scroll_paper_lantern" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/artifact_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_artifact" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/aventurine_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/aventurine_edified_leaves" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/charged_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/charged_amethyst" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cherry_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/cherry" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/citrine_edified_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/citrine_edified_leaves" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/conjured_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "minecraft:item/amethyst_shard" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/conjured_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "minecraft:item/amethyst_shard" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/creative_unlocker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/creative_unlocker" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/cypher_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_cypher" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/default_colorizer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/uuid" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/directrix/boolean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/directrix/boolean/lit_false_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/directrix/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/directrix/empty/dim_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/directrix/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/directrix/redstone/lit_unpowered_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_black" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_blue" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_brown.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_brown" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_cyan" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_gray" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_green" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_light_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_light_blue" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_light_gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_light_gray" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_lime" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_magenta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_magenta" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_orange" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_pink.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_pink" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_purple" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_red" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_white" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/dye_colorizer_yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/dye_yellow" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/edified_door" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_fence_inventory" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_fence_gate" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_log" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_log_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_log_amethyst" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_log_aventurine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_log_aventurine" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_log_citrine.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_log_citrine" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_log_purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_log_purple" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_panel" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_planks" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_pressure_plate" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_slab" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_stairs" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_tile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_tile" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/edified_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/edified_wood" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/focus_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_focus_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/impetus/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/impetus/empty/dim_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/impetus/look.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/impetus/look/lit_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/impetus/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/impetus/redstone/lit_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/impetus/rightclick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/circle/impetus/rightclick/lit_east" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/jeweler_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "hexcasting:item/jeweler_hammer" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/lore_fragment.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/lore_fragment" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/old_staff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/old" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/patchouli_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/patchouli_book" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_large_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_large_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_large_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_large_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_large_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_large_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_large_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_large_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_large_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_large_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_larger_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_larger_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_larger_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_larger_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_larger_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_larger_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_larger_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_larger_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_larger_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_larger_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_largest_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_largest_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_largest_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_largest_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_largest_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_largest_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_largest_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_largest_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_largest_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_largest_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_medium_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_medium_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_medium_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_medium_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_medium_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_medium_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_medium_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_medium_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_medium_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_medium_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_small_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_small_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_small_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_small_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_small_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_small_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_small_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_small_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/phial_small_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/phial/phial_small_4" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_agender.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_agender" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_aroace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_aroace" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_aromantic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_aromantic" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_asexual.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_asexual" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_bisexual.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_bisexual" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_demiboy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_demiboy" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_demigirl.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_demigirl" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_gay.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_gay" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_genderfluid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_genderfluid" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_genderqueer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_genderqueer" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_intersex.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_intersex" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_lesbian.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_lesbian" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_nonbinary.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_nonbinary" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_pansexual.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_pansexual" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_plural.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_plural" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/pride_colorizer_transgender.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/pride_transgender" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/quenched_shard_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "hexcasting:item/quenched_shard_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/quenched_shard_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "hexcasting:item/quenched_shard_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/quenched_shard_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "hexcasting:item/quenched_shard_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/quenched_shard_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "hexcasting:item/quenched_shard_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_ancient_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_ancient_large" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_ancient_medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_ancient_medium" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_ancient_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_ancient_small" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/scroll_paper" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_paper_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/scroll_paper_lantern" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_pristine_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_pristine_large" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_pristine_medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_pristine_medium" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/scroll_pristine_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/scroll_pristine_small" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_amethyst_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_amethyst_bricks_0" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_amethyst_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_amethyst_bricks_small_0" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_amethyst_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/slate_amethyst_pillar" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_amethyst_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_amethyst_tiles" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_blank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/slate_blank" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/slate_block" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_bricks" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_bricks_small.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_bricks_small" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/slate_pillar" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/deco/slate_tiles" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/slate_written.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/slate_written" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/spellbook_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_spellbook_empty" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/acacia.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/acacia" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/bamboo" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/birch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/birch" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/cherry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/cherry" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/crimson.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/crimson" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/dark_oak.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/dark_oak" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/edified.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/edified" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/jungle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/jungle" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/mangrove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/mangrove" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/mindsplice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/mindsplice" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/oak.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/oak" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/quenched_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/quenched_0" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/quenched_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/quenched_1" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/quenched_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/quenched_2" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/quenched_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/quenched_3" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/spruce.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/spruce" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/staff/warped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld_rod", 3 | "textures": { 4 | "layer0": "hexcasting:item/staff/warped" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/stripped_edified_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/stripped_edified_log" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/stripped_edified_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "hexcasting:block/stripped_edified_wood" 3 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/sub_sandwich.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/sub_sandwich" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/1_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/2_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/3_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/4_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/5_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/6_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/trinket_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/cad/7_trinket" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/assets/hexcasting/models/item/uuid_colorizer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "hexcasting:item/colorizer/uuid" 5 | } 6 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/data/hexcasting/damage_type/overcast.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "hexcasting.overcast", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:overcast" 4 | ] 5 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_effects.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:overcast" 4 | ] 5 | } -------------------------------------------------------------------------------- /Common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:overcast" 4 | ] 5 | } -------------------------------------------------------------------------------- /Common/src/main/java/at/petrak/hexcasting/client/PatternShapeMatcher.java: -------------------------------------------------------------------------------- 1 | package at.petrak.hexcasting.client; 2 | 3 | public class PatternShapeMatcher { 4 | } 5 | -------------------------------------------------------------------------------- /Common/src/main/java/at/petrak/hexcasting/common/lib/hex/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Registries and such of types Hexcasting itself defines 3 | */ 4 | package at.petrak.hexcasting.common.lib.hex; -------------------------------------------------------------------------------- /Common/src/main/java/at/petrak/hexcasting/xplat/Platform.java: -------------------------------------------------------------------------------- 1 | package at.petrak.hexcasting.xplat; 2 | 3 | public enum Platform { 4 | FORGE, FABRIC 5 | } 6 | -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/models/block/edified_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "hexcasting:block/edified_planks" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/particles/conjure_particle.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "hexcasting:cloud" 4 | ] 5 | } -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/abacus1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/abacus1.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/abacus2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/abacus2.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/abacus3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/abacus3.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/abacus_shake.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/abacus_shake.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/add_segment.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/add_segment.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/cast/fail.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/cast/fail.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/cast/hermes.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/cast/hermes.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/cast/normal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/cast/normal.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/cast/spell.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/cast/spell.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/cast/thoth.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/cast/thoth.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/sounds/casting_ambiance.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/sounds/casting_ambiance.ogg -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/armor/funny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/armor/funny.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/armor/robes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/armor/robes1.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/armor/robes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/armor/robes2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/armor/robes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/armor/robes3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/akashic_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/akashic_bookshelf.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/akashic_ligature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/akashic_ligature.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/akashic_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/akashic_record.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/akashic_record_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/akashic_record_inner.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/amethyst_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/amethyst_bricks.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/amethyst_chiseled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/amethyst_chiseled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/amethyst_dust_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/amethyst_dust_block.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/amethyst_polished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/amethyst_polished.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/amethyst_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/amethyst_tiles.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/ancient_scroll_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/ancient_scroll_paper.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/circle/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/circle/bottom.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/deco/amethyst_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/deco/amethyst_bricks.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/deco/amethyst_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/deco/amethyst_tiles.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/deco/slate_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/deco/slate_bricks.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/deco/slate_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/deco/slate_tiles.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_door_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_door_lower.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_door_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_door_upper.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_log.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_log_top.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_panel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_planks.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_planks_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_planks_2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_planks_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_planks_3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_tile.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/edified_trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/edified_trapdoor.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_0.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_1.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/quenched_allay_3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/scroll_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/scroll_paper.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/scroll_paper_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/scroll_paper_lantern.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/slate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/slate_directional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/slate_directional.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/smooth_amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/smooth_amethyst.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/block/stripped_edified_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/block/stripped_edified_log.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/entity/scroll_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/entity/scroll_large.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/entity/scroll_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/entity/scroll_medium.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/entity/sentinel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/entity/sentinel.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/entity/signs/edified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/entity/signs/edified.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/entity/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/entity/white.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep_emi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep_emi.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/brainsweep_jei.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/edify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/edify.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/edify_emi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/edify_emi.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/edify_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/edify_jei.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/entries/spell_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/entries/spell_circle.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/patchi_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/patchi_book.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/patchi_filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/patchi_filler.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/phial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/phial.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/phial_emi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/phial_emi.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/phial_jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/phial_jei.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/scroll.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/scroll_ancient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/scroll_ancient.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/slate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/slate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/villager_leveling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/villager_leveling.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/gui/villager_profession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/gui/villager_profession.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/abacus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/abacus.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/amethyst_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/amethyst_dust.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/artifact_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/artifact_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_ancient_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_ancient_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_cypher_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_cypher_overlay.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_spellbook_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_spellbook_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/0_trinket_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/0_trinket_overlay.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/1_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/1_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/2_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/2_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/3_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/3_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/4_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/4_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/5_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/5_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/6_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/6_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_artifact.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_focus_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cad/7_trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cad/7_trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/charged_amethyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/charged_amethyst.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_blue.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_cyan.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_gray.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_lime.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_pink.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/dye_red.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/colorizer/uuid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/colorizer/uuid.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/creative_unlocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/creative_unlocker.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cypher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cypher.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/cypher_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/cypher_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/edified_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/edified_door.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/edified_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/edified_sign.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/focus_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/focus_base.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/focus_base_sealed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/focus_base_sealed.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/focus_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/focus_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/focus_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/focus_overlay.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/jeweler_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/jeweler_hammer.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/lens.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/lore_fragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/lore_fragment.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/patchouli_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/patchouli_book.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_0.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_1.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/quenched_shard_3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/1-boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/1-boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/1-chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/1-chestplate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/1-helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/1-helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/1-leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/1-leggings.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/2-boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/2-boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/2-chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/2-chestplate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/2-helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/2-helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/2-leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/2-leggings.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/3-boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/3-boots.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/3-chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/3-chestplate.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/3-helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/3-helmet.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/robes/3-leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/robes/3-leggings.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/slate_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/slate_blank.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/slate_written.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/slate_written.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/spellbook_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/spellbook_base.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/spellbook_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/spellbook_empty.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/spellbook_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/spellbook_overlay.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/acacia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/acacia.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/bamboo.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/birch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/birch.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/cherry.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/crimson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/crimson.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/dark_oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/dark_oak.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/edified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/edified.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/jungle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/jungle.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/mangrove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/mangrove.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/mindsplice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/mindsplice.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/oak.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/old.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_0.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_1.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/quenched_3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/spruce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/spruce.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/staff/warped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/staff/warped.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/sub_sandwich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/sub_sandwich.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/thought_knot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/thought_knot.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/trinket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/trinket.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/item/trinket_filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/item/trinket_filled.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/main_hex.aseprite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/main_hex.aseprite -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/misc/altiora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/misc/altiora.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/mob_effect/enlarge_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/mob_effect/enlarge_grid.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/mob_effect/shrink_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/mob_effect/shrink_grid.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/cloud.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_1.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_2.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_3.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_4.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_5.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_6.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_7.png -------------------------------------------------------------------------------- /Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/assets/hexcasting/textures/particle/spin_cube_8.png -------------------------------------------------------------------------------- /Common/src/main/resources/data/hexcasting/item_modifiers/amethyst_shard_reducer.json: -------------------------------------------------------------------------------- 1 | { 2 | "function": "hexcasting:amethyst_shard_reducer", 3 | "delta": -0.5 4 | } -------------------------------------------------------------------------------- /Common/src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Common/src/main/resources/logo.png -------------------------------------------------------------------------------- /Common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "examplemod resources", 4 | "pack_format": 8 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Fabric/libs/serialization-hooks-0.4.99999.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/Fabric/libs/serialization-hooks-0.4.99999.jar -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/c/tags/items/amethyst_dusts.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:amethyst_dust" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/c/tags/items/gems.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:charged_amethyst" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/create/tags/blocks/brittle.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | { 5 | "id": "#hexcasting:slate", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/recipes/dynamicseal_focus.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "hexcasting:seal_focus", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/recipes/dynamicseal_spellbook.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "hexcasting:seal_spellbook", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/blocks/brainswept_circle_components.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#hexcasting:impeti", 5 | "#hexcasting:directrices" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/blocks/cheap_to_break_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:conjured_block", 5 | "hexcasting:conjured_light" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/blocks/directrices.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:directrix/redstone", 5 | "hexcasting:directrix/boolean" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/blocks/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_planks", 5 | "hexcasting:edified_panel", 6 | "hexcasting:edified_tile" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/blocks/impeti.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:impetus/look", 5 | "hexcasting:impetus/rightclick", 6 | "hexcasting:impetus/redstone" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/brainswept_circle_components.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#hexcasting:impeti", 5 | "#hexcasting:directrices" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/directrices.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:directrix/redstone", 5 | "hexcasting:directrix/boolean" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_planks", 5 | "hexcasting:edified_panel", 6 | "hexcasting:edified_tile" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/impeti.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:impetus/look", 5 | "hexcasting:impetus/rightclick", 6 | "hexcasting:impetus/redstone" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/phial_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:glass_bottle" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/hexcasting/tags/items/seal_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:honeycomb" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_fence_gate" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:amethyst_dust_block" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_planks", 5 | "hexcasting:edified_panel", 6 | "hexcasting:edified_tile" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_stairs" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/unstable_bottom_center.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_fence_gate" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_fence", 5 | "hexcasting:edified_fence" 6 | ] 7 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_stairs" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_planks", 5 | "hexcasting:edified_panel", 6 | "hexcasting:edified_tile" 7 | ] 8 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_button" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_door" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_pressure_plate" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_slab" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/generated/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:edified_trapdoor" 5 | ] 6 | } -------------------------------------------------------------------------------- /Fabric/src/main/resources/META-INF/services/at.petrak.hexcasting.xplat.IClientXplatAbstractions: -------------------------------------------------------------------------------- 1 | at.petrak.hexcasting.fabric.xplat.FabricClientXplatImpl -------------------------------------------------------------------------------- /Fabric/src/main/resources/META-INF/services/at.petrak.hexcasting.xplat.IXplatAbstractions: -------------------------------------------------------------------------------- 1 | at.petrak.hexcasting.fabric.xplat.FabricXplatImpl -------------------------------------------------------------------------------- /Fabric/src/main/resources/data/trinkets/entities/hex.json: -------------------------------------------------------------------------------- 1 | { 2 | "entities": [ 3 | "player" 4 | ], 5 | "slots": [ 6 | "head/face" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /Fabric/src/main/resources/data/trinkets/tags/items/head/face.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:lens" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /Forge/gradle.properties: -------------------------------------------------------------------------------- 1 | forgeVersion=47.1.47 2 | 3 | kotlinForForgeVersion=4.3.0 4 | 5 | curiosVersion=5.2.0-beta.3 6 | caelusVersion=3.1.0+1.20 7 | -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/create/tags/blocks/brittle.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "#hexcasting:slate", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/forge/tags/items/dusts/amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:amethyst_dust" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/forge/tags/items/gems.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:charged_amethyst" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/recipes/dynamicseal_focus.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "hexcasting:seal_focus", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/recipes/dynamicseal_spellbook.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "hexcasting:seal_spellbook", 3 | "category": "misc" 4 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/brainswept_circle_components.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#hexcasting:impeti", 4 | "#hexcasting:directrices" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/cheap_to_break_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:conjured_block", 4 | "hexcasting:conjured_light" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/directrices.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:directrix/redstone", 4 | "hexcasting:directrix/boolean" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_planks", 4 | "hexcasting:edified_panel", 5 | "hexcasting:edified_tile" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/impeti.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:impetus/look", 4 | "hexcasting:impetus/rightclick", 5 | "hexcasting:impetus/redstone" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/blocks/water_plants.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:kelp", 4 | "minecraft:kelp_plant", 5 | "minecraft:seagrass", 6 | "minecraft:tall_seagrass" 7 | ] 8 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/brainswept_circle_components.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#hexcasting:impeti", 4 | "#hexcasting:directrices" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/directrices.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:directrix/redstone", 4 | "hexcasting:directrix/boolean" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/edified_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_planks", 4 | "hexcasting:edified_panel", 5 | "hexcasting:edified_tile" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/impeti.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:impetus/look", 4 | "hexcasting:impetus/rightclick", 5 | "hexcasting:impetus/redstone" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/phial_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:glass_bottle" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/hexcasting/tags/items/seal_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:honeycomb" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_fence_gate" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_fence" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:amethyst_edified_leaves", 4 | "hexcasting:aventurine_edified_leaves", 5 | "hexcasting:citrine_edified_leaves" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:amethyst_edified_leaves", 4 | "hexcasting:aventurine_edified_leaves", 5 | "hexcasting:citrine_edified_leaves" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:amethyst_dust_block" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_planks", 4 | "hexcasting:edified_panel", 5 | "hexcasting:edified_tile" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/unstable_bottom_center.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_fence_gate" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_fence", 4 | "hexcasting:edified_fence" 5 | ] 6 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_stairs" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:amethyst_edified_leaves", 4 | "hexcasting:aventurine_edified_leaves", 5 | "hexcasting:citrine_edified_leaves" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_planks", 4 | "hexcasting:edified_panel", 5 | "hexcasting:edified_tile" 6 | ] 7 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_button" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_door" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/wooden_pressure_plates.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_pressure_plate" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_slab" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/generated/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "hexcasting:edified_trapdoor" 4 | ] 5 | } -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/services/at.petrak.hexcasting.xplat.IClientXplatAbstractions: -------------------------------------------------------------------------------- 1 | at.petrak.hexcasting.forge.xplat.ForgeClientXplatImpl -------------------------------------------------------------------------------- /Forge/src/main/resources/META-INF/services/at.petrak.hexcasting.xplat.IXplatAbstractions: -------------------------------------------------------------------------------- 1 | at.petrak.hexcasting.forge.xplat.ForgeXplatImpl -------------------------------------------------------------------------------- /Forge/src/main/resources/data/curios/tags/items/head.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "hexcasting:lens" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /art/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/banner.png -------------------------------------------------------------------------------- /art/colorizers/1.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/1.ase -------------------------------------------------------------------------------- /art/colorizers/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/1.png -------------------------------------------------------------------------------- /art/colorizers/2.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/2.ase -------------------------------------------------------------------------------- /art/colorizers/3.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/3.ase -------------------------------------------------------------------------------- /art/colorizers/4.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/4.ase -------------------------------------------------------------------------------- /art/colorizers/5.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/5.ase -------------------------------------------------------------------------------- /art/colorizers/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/colorizers/5.gif -------------------------------------------------------------------------------- /art/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/logo.png -------------------------------------------------------------------------------- /art/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/screenshot1.png -------------------------------------------------------------------------------- /art/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/screenshot2.png -------------------------------------------------------------------------------- /art/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/screenshot3.png -------------------------------------------------------------------------------- /art/slate_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/art/slate_bg.png -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.farmersdelight.skillet": "Skillet" 3 | } -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/lang/ru_ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.farmersdelight.skillet": "Сковорода" 3 | } -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/lang/zh_cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "block.farmersdelight.skillet": "煎锅" 3 | } -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/textures/block/skillet_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/farmersdelight/textures/block/skillet_bottom.png -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/textures/block/skillet_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/farmersdelight/textures/block/skillet_side.png -------------------------------------------------------------------------------- /doc/resources/assets/farmersdelight/textures/block/skillet_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/farmersdelight/textures/block/skillet_top.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/block/amethyst_sconce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/block/amethyst_sconce.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/block/edified_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/block/edified_button.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/block/edified_pressure_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/block/edified_pressure_plate.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/block/edified_slab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/block/edified_slab.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/block/edified_stairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/block/edified_stairs.png -------------------------------------------------------------------------------- /doc/resources/assets/hexcasting/textures/gui/hexdoc/brainsweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/hexcasting/textures/gui/hexdoc/brainsweep.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/allay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/allay.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/armorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/armorer.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/butcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/butcher.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/cartographer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/cartographer.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/cleric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/cleric.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/farmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/farmer.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/fisherman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/fisherman.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/fletcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/fletcher.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/leatherworker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/leatherworker.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/librarian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/librarian.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/mason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/mason.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/nitwit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/nitwit.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/none.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/shepherd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/shepherd.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/toolsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/toolsmith.png -------------------------------------------------------------------------------- /doc/resources/assets/minecraft/textures/entities/villagers/weaponsmith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/resources/assets/minecraft/textures/entities/villagers/weaponsmith.png -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/src/hexdoc_hexcasting/__init__.py -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/__version__.py: -------------------------------------------------------------------------------- 1 | # This file is auto-generated by hatch-gradle-version. 2 | # Only the value of PY_VERSION is editable. Do not edit other values. 3 | 4 | PY_VERSION = "1.0" 5 | -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/_export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/src/hexdoc_hexcasting/_export/__init__.py -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/_templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/src/hexdoc_hexcasting/_templates/__init__.py -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/_templates/ingredients/hexcasting/brainsweepee/entity_tag.html.jinja: -------------------------------------------------------------------------------- 1 | {# TODO: implement #} 2 | -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/_templates/pages/hexcasting/crafting_multi.html.jinja: -------------------------------------------------------------------------------- 1 | {% extends "pages/patchouli/crafting.html.jinja" %} 2 | -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/_templates/pages/hexcasting/pattern.html.jinja: -------------------------------------------------------------------------------- 1 | {% extends "pages/hexcasting/manual_pattern.html.jinja" %} 2 | 3 | {% block title_attrs %} class="pattern-title"{% endblock %} 4 | -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/src/hexdoc_hexcasting/py.typed -------------------------------------------------------------------------------- /doc/src/hexdoc_hexcasting/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/doc/src/hexdoc_hexcasting/utils/__init__.py -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FallingColors/HexMod/5da1bf82464d82aa303020e3fdf1fca17b9055d1/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- 1 | [ ] Spell to breed animals, speed up babies, excite allays 2 | [ ] Sleep: 3 | - make players sleep till the next sun/moonrise 4 | - clears AI tasks of mobs (temporarily) --------------------------------------------------------------------------------