├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── gradle.yml ├── .gitignore ├── CREDITS.md ├── LICENSE-ASSETS.txt ├── LICENSE.md ├── README.md ├── changelog.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── aeroblender-1.21.1-1.0.0-neoforge.jar └── aether_genesis-1.21.1-0.0.1-neoforge.jar ├── settings.gradle ├── src ├── generated │ └── resources │ │ ├── assets │ │ └── deep_aether │ │ │ ├── blockstates │ │ │ ├── aerglow_blossom_block.json │ │ │ ├── aerlavender.json │ │ │ ├── aersmog.json │ │ │ ├── aether_cattails.json │ │ │ ├── aether_coarse_dirt.json │ │ │ ├── aether_moss_block.json │ │ │ ├── aether_mud.json │ │ │ ├── aether_mud_bricks.json │ │ │ ├── aether_mud_bricks_slab.json │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ ├── aether_mud_bricks_wall.json │ │ │ ├── aseterite.json │ │ │ ├── aseterite_bricks.json │ │ │ ├── aseterite_bricks_slab.json │ │ │ ├── aseterite_bricks_stairs.json │ │ │ ├── aseterite_bricks_wall.json │ │ │ ├── aseterite_slab.json │ │ │ ├── aseterite_stairs.json │ │ │ ├── aseterite_wall.json │ │ │ ├── big_holystone_bricks.json │ │ │ ├── big_holystone_bricks_slab.json │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ ├── big_holystone_bricks_wall.json │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ ├── blightmoss_holystone_brick_wall.json │ │ │ ├── blightmoss_holystone_bricks.json │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ ├── blightmoss_holystone_tile_wall.json │ │ │ ├── blightmoss_holystone_tiles.json │ │ │ ├── blue_roseroot_leaves.json │ │ │ ├── blue_roseroot_sapling.json │ │ │ ├── boss_doorway_light_nimbus_pillar.json │ │ │ ├── boss_doorway_light_nimbus_stone.json │ │ │ ├── boss_doorway_nimbus_pillar.json │ │ │ ├── boss_doorway_nimbus_stone.json │ │ │ ├── chiseled_holystone.json │ │ │ ├── chromatic_aercloud.json │ │ │ ├── clorite.json │ │ │ ├── clorite_pillar.json │ │ │ ├── clorite_slab.json │ │ │ ├── clorite_stairs.json │ │ │ ├── clorite_wall.json │ │ │ ├── cobbled_aseterite.json │ │ │ ├── cobbled_aseterite_slab.json │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ ├── cobbled_aseterite_wall.json │ │ │ ├── combiner.json │ │ │ ├── conberry_button.json │ │ │ ├── conberry_door.json │ │ │ ├── conberry_fence.json │ │ │ ├── conberry_fence_gate.json │ │ │ ├── conberry_hanging_sign.json │ │ │ ├── conberry_leaves.json │ │ │ ├── conberry_log.json │ │ │ ├── conberry_log_wall.json │ │ │ ├── conberry_planks.json │ │ │ ├── conberry_pressure_plate.json │ │ │ ├── conberry_sapling.json │ │ │ ├── conberry_sign.json │ │ │ ├── conberry_slab.json │ │ │ ├── conberry_stairs.json │ │ │ ├── conberry_trapdoor.json │ │ │ ├── conberry_wall.json │ │ │ ├── conberry_wall_hanging_sign.json │ │ │ ├── conberry_wall_sign.json │ │ │ ├── conberry_wood.json │ │ │ ├── cruderoot_button.json │ │ │ ├── cruderoot_door.json │ │ │ ├── cruderoot_fence.json │ │ │ ├── cruderoot_fence_gate.json │ │ │ ├── cruderoot_hanging_sign.json │ │ │ ├── cruderoot_leaves.json │ │ │ ├── cruderoot_log.json │ │ │ ├── cruderoot_log_wall.json │ │ │ ├── cruderoot_planks.json │ │ │ ├── cruderoot_pressure_plate.json │ │ │ ├── cruderoot_sapling.json │ │ │ ├── cruderoot_sign.json │ │ │ ├── cruderoot_slab.json │ │ │ ├── cruderoot_stairs.json │ │ │ ├── cruderoot_trapdoor.json │ │ │ ├── cruderoot_wall.json │ │ │ ├── cruderoot_wall_hanging_sign.json │ │ │ ├── cruderoot_wall_sign.json │ │ │ ├── cruderoot_wood.json │ │ │ ├── echaisy.json │ │ │ ├── enchanted_blossom.json │ │ │ ├── feather_grass.json │ │ │ ├── flowering_blue_roseroot_leaves.json │ │ │ ├── flowering_roseroot_leaves.json │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ ├── gilded_holystone_brick_wall.json │ │ │ ├── gilded_holystone_bricks.json │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ ├── gilded_holystone_tile_wall.json │ │ │ ├── gilded_holystone_tiles.json │ │ │ ├── golden_aspess.json │ │ │ ├── highstone.json │ │ │ ├── holystone_pillar.json │ │ │ ├── holystone_tile_slab.json │ │ │ ├── holystone_tile_stairs.json │ │ │ ├── holystone_tile_wall.json │ │ │ ├── holystone_tiles.json │ │ │ ├── iaspove.json │ │ │ ├── light_nimbus_pillar.json │ │ │ ├── light_nimbus_stone.json │ │ │ ├── lightcap_mushrooms.json │ │ │ ├── locked_light_nimbus_pillar.json │ │ │ ├── locked_light_nimbus_stone.json │ │ │ ├── locked_nimbus_pillar.json │ │ │ ├── locked_nimbus_stone.json │ │ │ ├── medium_golden_grass.json │ │ │ ├── mini_golden_grass.json │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ ├── mossy_holystone_brick_wall.json │ │ │ ├── mossy_holystone_bricks.json │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ ├── mossy_holystone_tile_wall.json │ │ │ ├── mossy_holystone_tiles.json │ │ │ ├── nimbus_pillar.json │ │ │ ├── nimbus_slab.json │ │ │ ├── nimbus_stairs.json │ │ │ ├── nimbus_stone.json │ │ │ ├── nimbus_wall.json │ │ │ ├── packed_aether_mud.json │ │ │ ├── polished_aseterite.json │ │ │ ├── polished_aseterite_slab.json │ │ │ ├── polished_aseterite_stairs.json │ │ │ ├── polished_aseterite_wall.json │ │ │ ├── polished_clorite.json │ │ │ ├── polished_clorite_slab.json │ │ │ ├── polished_clorite_stairs.json │ │ │ ├── polished_clorite_wall.json │ │ │ ├── potted_aerlavender.json │ │ │ ├── potted_aether_cattails.json │ │ │ ├── potted_blue_roseroot_sapling.json │ │ │ ├── potted_conberry_sapling.json │ │ │ ├── potted_cruderoot_sapling.json │ │ │ ├── potted_echaisy.json │ │ │ ├── potted_enchanted_blossom.json │ │ │ ├── potted_golden_aspess.json │ │ │ ├── potted_iaspove.json │ │ │ ├── potted_radiant_orchid.json │ │ │ ├── potted_roseroot_sapling.json │ │ │ ├── potted_sky_tulips.json │ │ │ ├── potted_sunroot_sapling.json │ │ │ ├── potted_tall_aerlavender.json │ │ │ ├── potted_yagroot_sapling.json │ │ │ ├── radiant_orchid.json │ │ │ ├── rain_aercloud.json │ │ │ ├── raw_clorite.json │ │ │ ├── raw_clorite_slab.json │ │ │ ├── raw_clorite_stairs.json │ │ │ ├── raw_clorite_wall.json │ │ │ ├── roseroot_button.json │ │ │ ├── roseroot_door.json │ │ │ ├── roseroot_fence.json │ │ │ ├── roseroot_fence_gate.json │ │ │ ├── roseroot_hanging_sign.json │ │ │ ├── roseroot_leaves.json │ │ │ ├── roseroot_log.json │ │ │ ├── roseroot_log_wall.json │ │ │ ├── roseroot_planks.json │ │ │ ├── roseroot_pressure_plate.json │ │ │ ├── roseroot_sapling.json │ │ │ ├── roseroot_sign.json │ │ │ ├── roseroot_slab.json │ │ │ ├── roseroot_stairs.json │ │ │ ├── roseroot_trapdoor.json │ │ │ ├── roseroot_wall.json │ │ │ ├── roseroot_wall_hanging_sign.json │ │ │ ├── roseroot_wall_sign.json │ │ │ ├── roseroot_wood.json │ │ │ ├── short_golden_grass.json │ │ │ ├── sky_tulips.json │ │ │ ├── skyjade_block.json │ │ │ ├── skyjade_ore.json │ │ │ ├── squall_block.json │ │ │ ├── sterling_aercloud.json │ │ │ ├── stratus_block.json │ │ │ ├── stripped_conberry_log.json │ │ │ ├── stripped_conberry_log_wall.json │ │ │ ├── stripped_conberry_wall.json │ │ │ ├── stripped_conberry_wood.json │ │ │ ├── stripped_cruderoot_log.json │ │ │ ├── stripped_cruderoot_log_wall.json │ │ │ ├── stripped_cruderoot_wall.json │ │ │ ├── stripped_cruderoot_wood.json │ │ │ ├── stripped_roseroot_log.json │ │ │ ├── stripped_roseroot_log_wall.json │ │ │ ├── stripped_roseroot_wall.json │ │ │ ├── stripped_roseroot_wood.json │ │ │ ├── stripped_sunroot_log.json │ │ │ ├── stripped_sunroot_log_wall.json │ │ │ ├── stripped_sunroot_wall.json │ │ │ ├── stripped_sunroot_wood.json │ │ │ ├── stripped_yagroot_log.json │ │ │ ├── stripped_yagroot_log_wall.json │ │ │ ├── stripped_yagroot_wall.json │ │ │ ├── stripped_yagroot_wood.json │ │ │ ├── sunroot_button.json │ │ │ ├── sunroot_door.json │ │ │ ├── sunroot_fence.json │ │ │ ├── sunroot_fence_gate.json │ │ │ ├── sunroot_hanging_sign.json │ │ │ ├── sunroot_log.json │ │ │ ├── sunroot_log_wall.json │ │ │ ├── sunroot_planks.json │ │ │ ├── sunroot_pressure_plate.json │ │ │ ├── sunroot_sapling.json │ │ │ ├── sunroot_sign.json │ │ │ ├── sunroot_slab.json │ │ │ ├── sunroot_stairs.json │ │ │ ├── sunroot_trapdoor.json │ │ │ ├── sunroot_wall.json │ │ │ ├── sunroot_wall_hanging_sign.json │ │ │ ├── sunroot_wall_sign.json │ │ │ ├── sunroot_wood.json │ │ │ ├── tall_aerlavender.json │ │ │ ├── trapped_light_nimbus_pillar.json │ │ │ ├── trapped_light_nimbus_stone.json │ │ │ ├── trapped_nimbus_pillar.json │ │ │ ├── trapped_nimbus_stone.json │ │ │ ├── treasure_doorway_light_nimbus_pillar.json │ │ │ ├── treasure_doorway_light_nimbus_stone.json │ │ │ ├── treasure_doorway_nimbus_pillar.json │ │ │ ├── treasure_doorway_nimbus_stone.json │ │ │ ├── yagroot_button.json │ │ │ ├── yagroot_door.json │ │ │ ├── yagroot_fence.json │ │ │ ├── yagroot_fence_gate.json │ │ │ ├── yagroot_hanging_sign.json │ │ │ ├── yagroot_leaves.json │ │ │ ├── yagroot_log.json │ │ │ ├── yagroot_log_wall.json │ │ │ ├── yagroot_planks.json │ │ │ ├── yagroot_pressure_plate.json │ │ │ ├── yagroot_sapling.json │ │ │ ├── yagroot_sign.json │ │ │ ├── yagroot_slab.json │ │ │ ├── yagroot_stairs.json │ │ │ ├── yagroot_trapdoor.json │ │ │ ├── yagroot_wall.json │ │ │ ├── yagroot_wall_hanging_sign.json │ │ │ ├── yagroot_wall_sign.json │ │ │ └── yagroot_wood.json │ │ │ └── models │ │ │ ├── block │ │ │ ├── aerglow_blossom_block.json │ │ │ ├── aerlavender.json │ │ │ ├── aersmog.json │ │ │ ├── aether_cattails.json │ │ │ ├── aether_coarse_dirt.json │ │ │ ├── aether_moss_block.json │ │ │ ├── aether_mud.json │ │ │ ├── aether_mud_bricks.json │ │ │ ├── aether_mud_bricks_slab.json │ │ │ ├── aether_mud_bricks_slab_top.json │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ ├── aether_mud_bricks_stairs_inner.json │ │ │ ├── aether_mud_bricks_stairs_outer.json │ │ │ ├── aether_mud_bricks_wall_post.json │ │ │ ├── aether_mud_bricks_wall_side.json │ │ │ ├── aether_mud_bricks_wall_side_tall.json │ │ │ ├── aseterite.json │ │ │ ├── aseterite_bricks.json │ │ │ ├── aseterite_bricks_slab.json │ │ │ ├── aseterite_bricks_slab_top.json │ │ │ ├── aseterite_bricks_stairs.json │ │ │ ├── aseterite_bricks_stairs_inner.json │ │ │ ├── aseterite_bricks_stairs_outer.json │ │ │ ├── aseterite_bricks_wall_post.json │ │ │ ├── aseterite_bricks_wall_side.json │ │ │ ├── aseterite_bricks_wall_side_tall.json │ │ │ ├── aseterite_slab.json │ │ │ ├── aseterite_slab_top.json │ │ │ ├── aseterite_stairs.json │ │ │ ├── aseterite_stairs_inner.json │ │ │ ├── aseterite_stairs_outer.json │ │ │ ├── aseterite_wall_post.json │ │ │ ├── aseterite_wall_side.json │ │ │ ├── aseterite_wall_side_tall.json │ │ │ ├── big_holystone_bricks.json │ │ │ ├── big_holystone_bricks_slab.json │ │ │ ├── big_holystone_bricks_slab_top.json │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ ├── big_holystone_bricks_stairs_inner.json │ │ │ ├── big_holystone_bricks_stairs_outer.json │ │ │ ├── big_holystone_bricks_wall_post.json │ │ │ ├── big_holystone_bricks_wall_side.json │ │ │ ├── big_holystone_bricks_wall_side_tall.json │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ ├── blightmoss_holystone_brick_slab_top.json │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ ├── blightmoss_holystone_brick_stairs_inner.json │ │ │ ├── blightmoss_holystone_brick_stairs_outer.json │ │ │ ├── blightmoss_holystone_brick_wall_post.json │ │ │ ├── blightmoss_holystone_brick_wall_side.json │ │ │ ├── blightmoss_holystone_brick_wall_side_tall.json │ │ │ ├── blightmoss_holystone_bricks.json │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ ├── blightmoss_holystone_tile_slab_top.json │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ ├── blightmoss_holystone_tile_stairs_inner.json │ │ │ ├── blightmoss_holystone_tile_stairs_outer.json │ │ │ ├── blightmoss_holystone_tile_wall_post.json │ │ │ ├── blightmoss_holystone_tile_wall_side.json │ │ │ ├── blightmoss_holystone_tile_wall_side_tall.json │ │ │ ├── blightmoss_holystone_tiles.json │ │ │ ├── blue_roseroot_leaves.json │ │ │ ├── blue_roseroot_sapling.json │ │ │ ├── boss_doorway_light_nimbus_pillar.json │ │ │ ├── boss_doorway_light_nimbus_stone.json │ │ │ ├── boss_doorway_nimbus_pillar.json │ │ │ ├── boss_doorway_nimbus_stone.json │ │ │ ├── chiseled_holystone.json │ │ │ ├── chromatic_aercloud.json │ │ │ ├── clorite.json │ │ │ ├── clorite_pillar.json │ │ │ ├── clorite_pillar_horizontal.json │ │ │ ├── clorite_slab.json │ │ │ ├── clorite_slab_top.json │ │ │ ├── clorite_stairs.json │ │ │ ├── clorite_stairs_inner.json │ │ │ ├── clorite_stairs_outer.json │ │ │ ├── clorite_wall_post.json │ │ │ ├── clorite_wall_side.json │ │ │ ├── clorite_wall_side_tall.json │ │ │ ├── cobbled_aseterite.json │ │ │ ├── cobbled_aseterite_slab.json │ │ │ ├── cobbled_aseterite_slab_top.json │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ ├── cobbled_aseterite_stairs_inner.json │ │ │ ├── cobbled_aseterite_stairs_outer.json │ │ │ ├── cobbled_aseterite_wall_post.json │ │ │ ├── cobbled_aseterite_wall_side.json │ │ │ ├── cobbled_aseterite_wall_side_tall.json │ │ │ ├── combiner.json │ │ │ ├── conberry_button.json │ │ │ ├── conberry_button_pressed.json │ │ │ ├── conberry_door_bottom_left.json │ │ │ ├── conberry_door_bottom_left_open.json │ │ │ ├── conberry_door_bottom_right.json │ │ │ ├── conberry_door_bottom_right_open.json │ │ │ ├── conberry_door_top_left.json │ │ │ ├── conberry_door_top_left_open.json │ │ │ ├── conberry_door_top_right.json │ │ │ ├── conberry_door_top_right_open.json │ │ │ ├── conberry_fence_gate.json │ │ │ ├── conberry_fence_gate_open.json │ │ │ ├── conberry_fence_gate_wall.json │ │ │ ├── conberry_fence_gate_wall_open.json │ │ │ ├── conberry_fence_post.json │ │ │ ├── conberry_fence_side.json │ │ │ ├── conberry_hanging_sign.json │ │ │ ├── conberry_leaves.json │ │ │ ├── conberry_log.json │ │ │ ├── conberry_log_horizontal.json │ │ │ ├── conberry_log_wall_post.json │ │ │ ├── conberry_log_wall_post_short.json │ │ │ ├── conberry_log_wall_post_tall.json │ │ │ ├── conberry_log_wall_side.json │ │ │ ├── conberry_log_wall_side_alt.json │ │ │ ├── conberry_log_wall_side_alt_short.json │ │ │ ├── conberry_log_wall_side_short.json │ │ │ ├── conberry_log_wall_side_tall.json │ │ │ ├── conberry_log_wall_side_tall_alt.json │ │ │ ├── conberry_log_wall_side_tall_alt_short.json │ │ │ ├── conberry_log_wall_side_tall_short.json │ │ │ ├── conberry_planks.json │ │ │ ├── conberry_pressure_plate.json │ │ │ ├── conberry_pressure_plate_down.json │ │ │ ├── conberry_sapling.json │ │ │ ├── conberry_sign.json │ │ │ ├── conberry_slab.json │ │ │ ├── conberry_slab_top.json │ │ │ ├── conberry_stairs.json │ │ │ ├── conberry_stairs_inner.json │ │ │ ├── conberry_stairs_outer.json │ │ │ ├── conberry_trapdoor_bottom.json │ │ │ ├── conberry_trapdoor_open.json │ │ │ ├── conberry_trapdoor_top.json │ │ │ ├── conberry_wall_post.json │ │ │ ├── conberry_wall_side.json │ │ │ ├── conberry_wall_side_tall.json │ │ │ ├── conberry_wood.json │ │ │ ├── conberry_wood_horizontal.json │ │ │ ├── cruderoot_button.json │ │ │ ├── cruderoot_button_pressed.json │ │ │ ├── cruderoot_door_bottom_left.json │ │ │ ├── cruderoot_door_bottom_left_open.json │ │ │ ├── cruderoot_door_bottom_right.json │ │ │ ├── cruderoot_door_bottom_right_open.json │ │ │ ├── cruderoot_door_top_left.json │ │ │ ├── cruderoot_door_top_left_open.json │ │ │ ├── cruderoot_door_top_right.json │ │ │ ├── cruderoot_door_top_right_open.json │ │ │ ├── cruderoot_fence_gate.json │ │ │ ├── cruderoot_fence_gate_open.json │ │ │ ├── cruderoot_fence_gate_wall.json │ │ │ ├── cruderoot_fence_gate_wall_open.json │ │ │ ├── cruderoot_fence_post.json │ │ │ ├── cruderoot_fence_side.json │ │ │ ├── cruderoot_hanging_sign.json │ │ │ ├── cruderoot_leaves.json │ │ │ ├── cruderoot_log.json │ │ │ ├── cruderoot_log_horizontal.json │ │ │ ├── cruderoot_log_wall_post.json │ │ │ ├── cruderoot_log_wall_post_short.json │ │ │ ├── cruderoot_log_wall_post_tall.json │ │ │ ├── cruderoot_log_wall_side.json │ │ │ ├── cruderoot_log_wall_side_alt.json │ │ │ ├── cruderoot_log_wall_side_alt_short.json │ │ │ ├── cruderoot_log_wall_side_short.json │ │ │ ├── cruderoot_log_wall_side_tall.json │ │ │ ├── cruderoot_log_wall_side_tall_alt.json │ │ │ ├── cruderoot_log_wall_side_tall_alt_short.json │ │ │ ├── cruderoot_log_wall_side_tall_short.json │ │ │ ├── cruderoot_planks.json │ │ │ ├── cruderoot_pressure_plate.json │ │ │ ├── cruderoot_pressure_plate_down.json │ │ │ ├── cruderoot_sapling.json │ │ │ ├── cruderoot_sign.json │ │ │ ├── cruderoot_slab.json │ │ │ ├── cruderoot_slab_top.json │ │ │ ├── cruderoot_stairs.json │ │ │ ├── cruderoot_stairs_inner.json │ │ │ ├── cruderoot_stairs_outer.json │ │ │ ├── cruderoot_trapdoor_bottom.json │ │ │ ├── cruderoot_trapdoor_open.json │ │ │ ├── cruderoot_trapdoor_top.json │ │ │ ├── cruderoot_wall_post.json │ │ │ ├── cruderoot_wall_side.json │ │ │ ├── cruderoot_wall_side_tall.json │ │ │ ├── cruderoot_wood.json │ │ │ ├── cruderoot_wood_horizontal.json │ │ │ ├── echaisy.json │ │ │ ├── enchanted_blossom.json │ │ │ ├── feather_grass.json │ │ │ ├── flowering_blue_roseroot_leaves.json │ │ │ ├── flowering_roseroot_leaves.json │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ ├── gilded_holystone_brick_slab_top.json │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ ├── gilded_holystone_brick_stairs_inner.json │ │ │ ├── gilded_holystone_brick_stairs_outer.json │ │ │ ├── gilded_holystone_brick_wall_post.json │ │ │ ├── gilded_holystone_brick_wall_side.json │ │ │ ├── gilded_holystone_brick_wall_side_tall.json │ │ │ ├── gilded_holystone_bricks.json │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ ├── gilded_holystone_tile_slab_top.json │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ ├── gilded_holystone_tile_stairs_inner.json │ │ │ ├── gilded_holystone_tile_stairs_outer.json │ │ │ ├── gilded_holystone_tile_wall_post.json │ │ │ ├── gilded_holystone_tile_wall_side.json │ │ │ ├── gilded_holystone_tile_wall_side_tall.json │ │ │ ├── gilded_holystone_tiles.json │ │ │ ├── golden_aspess.json │ │ │ ├── highstone.json │ │ │ ├── holystone_pillar.json │ │ │ ├── holystone_pillar_horizontal.json │ │ │ ├── holystone_tile_slab.json │ │ │ ├── holystone_tile_slab_top.json │ │ │ ├── holystone_tile_stairs.json │ │ │ ├── holystone_tile_stairs_inner.json │ │ │ ├── holystone_tile_stairs_outer.json │ │ │ ├── holystone_tile_wall_post.json │ │ │ ├── holystone_tile_wall_side.json │ │ │ ├── holystone_tile_wall_side_tall.json │ │ │ ├── holystone_tiles.json │ │ │ ├── iaspove.json │ │ │ ├── light_nimbus_pillar.json │ │ │ ├── light_nimbus_pillar_horizontal.json │ │ │ ├── light_nimbus_stone.json │ │ │ ├── lightcap_mushrooms.json │ │ │ ├── medium_golden_grass.json │ │ │ ├── mini_golden_grass.json │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ ├── mossy_holystone_brick_slab_top.json │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ ├── mossy_holystone_brick_stairs_inner.json │ │ │ ├── mossy_holystone_brick_stairs_outer.json │ │ │ ├── mossy_holystone_brick_wall_post.json │ │ │ ├── mossy_holystone_brick_wall_side.json │ │ │ ├── mossy_holystone_brick_wall_side_tall.json │ │ │ ├── mossy_holystone_bricks.json │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ ├── mossy_holystone_tile_slab_top.json │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ ├── mossy_holystone_tile_stairs_inner.json │ │ │ ├── mossy_holystone_tile_stairs_outer.json │ │ │ ├── mossy_holystone_tile_wall_post.json │ │ │ ├── mossy_holystone_tile_wall_side.json │ │ │ ├── mossy_holystone_tile_wall_side_tall.json │ │ │ ├── mossy_holystone_tiles.json │ │ │ ├── nimbus_pillar.json │ │ │ ├── nimbus_pillar_horizontal.json │ │ │ ├── nimbus_slab.json │ │ │ ├── nimbus_slab_top.json │ │ │ ├── nimbus_stairs.json │ │ │ ├── nimbus_stairs_inner.json │ │ │ ├── nimbus_stairs_outer.json │ │ │ ├── nimbus_stone.json │ │ │ ├── nimbus_wall_post.json │ │ │ ├── nimbus_wall_side.json │ │ │ ├── nimbus_wall_side_tall.json │ │ │ ├── packed_aether_mud.json │ │ │ ├── polished_aseterite.json │ │ │ ├── polished_aseterite_slab.json │ │ │ ├── polished_aseterite_slab_top.json │ │ │ ├── polished_aseterite_stairs.json │ │ │ ├── polished_aseterite_stairs_inner.json │ │ │ ├── polished_aseterite_stairs_outer.json │ │ │ ├── polished_aseterite_wall_post.json │ │ │ ├── polished_aseterite_wall_side.json │ │ │ ├── polished_aseterite_wall_side_tall.json │ │ │ ├── polished_clorite.json │ │ │ ├── polished_clorite_slab.json │ │ │ ├── polished_clorite_slab_top.json │ │ │ ├── polished_clorite_stairs.json │ │ │ ├── polished_clorite_stairs_inner.json │ │ │ ├── polished_clorite_stairs_outer.json │ │ │ ├── polished_clorite_wall_post.json │ │ │ ├── polished_clorite_wall_side.json │ │ │ ├── polished_clorite_wall_side_tall.json │ │ │ ├── potted_aerlavender.json │ │ │ ├── potted_aether_cattails.json │ │ │ ├── potted_blue_roseroot_sapling.json │ │ │ ├── potted_conberry_sapling.json │ │ │ ├── potted_cruderoot_sapling.json │ │ │ ├── potted_echaisy.json │ │ │ ├── potted_enchanted_blossom.json │ │ │ ├── potted_golden_aspess.json │ │ │ ├── potted_iaspove.json │ │ │ ├── potted_radiant_orchid.json │ │ │ ├── potted_roseroot_sapling.json │ │ │ ├── potted_sky_tulips.json │ │ │ ├── potted_sunroot_sapling.json │ │ │ ├── potted_tall_aerlavender.json │ │ │ ├── potted_yagroot_sapling.json │ │ │ ├── radiant_orchid.json │ │ │ ├── rain_aercloud.json │ │ │ ├── raw_clorite.json │ │ │ ├── raw_clorite_slab.json │ │ │ ├── raw_clorite_slab_top.json │ │ │ ├── raw_clorite_stairs.json │ │ │ ├── raw_clorite_stairs_inner.json │ │ │ ├── raw_clorite_stairs_outer.json │ │ │ ├── raw_clorite_wall_post.json │ │ │ ├── raw_clorite_wall_side.json │ │ │ ├── raw_clorite_wall_side_tall.json │ │ │ ├── roseroot_button.json │ │ │ ├── roseroot_button_pressed.json │ │ │ ├── roseroot_door_bottom_left.json │ │ │ ├── roseroot_door_bottom_left_open.json │ │ │ ├── roseroot_door_bottom_right.json │ │ │ ├── roseroot_door_bottom_right_open.json │ │ │ ├── roseroot_door_top_left.json │ │ │ ├── roseroot_door_top_left_open.json │ │ │ ├── roseroot_door_top_right.json │ │ │ ├── roseroot_door_top_right_open.json │ │ │ ├── roseroot_fence_gate.json │ │ │ ├── roseroot_fence_gate_open.json │ │ │ ├── roseroot_fence_gate_wall.json │ │ │ ├── roseroot_fence_gate_wall_open.json │ │ │ ├── roseroot_fence_post.json │ │ │ ├── roseroot_fence_side.json │ │ │ ├── roseroot_hanging_sign.json │ │ │ ├── roseroot_leaves.json │ │ │ ├── roseroot_log.json │ │ │ ├── roseroot_log_horizontal.json │ │ │ ├── roseroot_log_wall_post.json │ │ │ ├── roseroot_log_wall_post_short.json │ │ │ ├── roseroot_log_wall_post_tall.json │ │ │ ├── roseroot_log_wall_side.json │ │ │ ├── roseroot_log_wall_side_alt.json │ │ │ ├── roseroot_log_wall_side_alt_short.json │ │ │ ├── roseroot_log_wall_side_short.json │ │ │ ├── roseroot_log_wall_side_tall.json │ │ │ ├── roseroot_log_wall_side_tall_alt.json │ │ │ ├── roseroot_log_wall_side_tall_alt_short.json │ │ │ ├── roseroot_log_wall_side_tall_short.json │ │ │ ├── roseroot_planks.json │ │ │ ├── roseroot_pressure_plate.json │ │ │ ├── roseroot_pressure_plate_down.json │ │ │ ├── roseroot_sapling.json │ │ │ ├── roseroot_sign.json │ │ │ ├── roseroot_slab.json │ │ │ ├── roseroot_slab_top.json │ │ │ ├── roseroot_stairs.json │ │ │ ├── roseroot_stairs_inner.json │ │ │ ├── roseroot_stairs_outer.json │ │ │ ├── roseroot_trapdoor_bottom.json │ │ │ ├── roseroot_trapdoor_open.json │ │ │ ├── roseroot_trapdoor_top.json │ │ │ ├── roseroot_wall_post.json │ │ │ ├── roseroot_wall_side.json │ │ │ ├── roseroot_wall_side_tall.json │ │ │ ├── roseroot_wood.json │ │ │ ├── roseroot_wood_horizontal.json │ │ │ ├── short_golden_grass.json │ │ │ ├── sky_tulips.json │ │ │ ├── skyjade_block.json │ │ │ ├── skyjade_ore.json │ │ │ ├── squall_block.json │ │ │ ├── sterling_aercloud.json │ │ │ ├── stratus_block.json │ │ │ ├── stripped_conberry_log.json │ │ │ ├── stripped_conberry_log_horizontal.json │ │ │ ├── stripped_conberry_log_wall_post.json │ │ │ ├── stripped_conberry_log_wall_post_short.json │ │ │ ├── stripped_conberry_log_wall_post_tall.json │ │ │ ├── stripped_conberry_log_wall_side.json │ │ │ ├── stripped_conberry_log_wall_side_alt.json │ │ │ ├── stripped_conberry_log_wall_side_alt_short.json │ │ │ ├── stripped_conberry_log_wall_side_short.json │ │ │ ├── stripped_conberry_log_wall_side_tall.json │ │ │ ├── stripped_conberry_log_wall_side_tall_alt.json │ │ │ ├── stripped_conberry_log_wall_side_tall_alt_short.json │ │ │ ├── stripped_conberry_log_wall_side_tall_short.json │ │ │ ├── stripped_conberry_wall_post.json │ │ │ ├── stripped_conberry_wall_side.json │ │ │ ├── stripped_conberry_wall_side_tall.json │ │ │ ├── stripped_conberry_wood.json │ │ │ ├── stripped_conberry_wood_horizontal.json │ │ │ ├── stripped_cruderoot_log.json │ │ │ ├── stripped_cruderoot_log_horizontal.json │ │ │ ├── stripped_cruderoot_log_wall_post.json │ │ │ ├── stripped_cruderoot_log_wall_post_short.json │ │ │ ├── stripped_cruderoot_log_wall_post_tall.json │ │ │ ├── stripped_cruderoot_log_wall_side.json │ │ │ ├── stripped_cruderoot_log_wall_side_alt.json │ │ │ ├── stripped_cruderoot_log_wall_side_alt_short.json │ │ │ ├── stripped_cruderoot_log_wall_side_short.json │ │ │ ├── stripped_cruderoot_log_wall_side_tall.json │ │ │ ├── stripped_cruderoot_log_wall_side_tall_alt.json │ │ │ ├── stripped_cruderoot_log_wall_side_tall_alt_short.json │ │ │ ├── stripped_cruderoot_log_wall_side_tall_short.json │ │ │ ├── stripped_cruderoot_wall_post.json │ │ │ ├── stripped_cruderoot_wall_side.json │ │ │ ├── stripped_cruderoot_wall_side_tall.json │ │ │ ├── stripped_cruderoot_wood.json │ │ │ ├── stripped_cruderoot_wood_horizontal.json │ │ │ ├── stripped_roseroot_log.json │ │ │ ├── stripped_roseroot_log_horizontal.json │ │ │ ├── stripped_roseroot_log_wall_post.json │ │ │ ├── stripped_roseroot_log_wall_post_short.json │ │ │ ├── stripped_roseroot_log_wall_post_tall.json │ │ │ ├── stripped_roseroot_log_wall_side.json │ │ │ ├── stripped_roseroot_log_wall_side_alt.json │ │ │ ├── stripped_roseroot_log_wall_side_alt_short.json │ │ │ ├── stripped_roseroot_log_wall_side_short.json │ │ │ ├── stripped_roseroot_log_wall_side_tall.json │ │ │ ├── stripped_roseroot_log_wall_side_tall_alt.json │ │ │ ├── stripped_roseroot_log_wall_side_tall_alt_short.json │ │ │ ├── stripped_roseroot_log_wall_side_tall_short.json │ │ │ ├── stripped_roseroot_wall_post.json │ │ │ ├── stripped_roseroot_wall_side.json │ │ │ ├── stripped_roseroot_wall_side_tall.json │ │ │ ├── stripped_roseroot_wood.json │ │ │ ├── stripped_roseroot_wood_horizontal.json │ │ │ ├── stripped_sunroot_log.json │ │ │ ├── stripped_sunroot_log_horizontal.json │ │ │ ├── stripped_sunroot_log_wall_post.json │ │ │ ├── stripped_sunroot_log_wall_post_short.json │ │ │ ├── stripped_sunroot_log_wall_post_tall.json │ │ │ ├── stripped_sunroot_log_wall_side.json │ │ │ ├── stripped_sunroot_log_wall_side_alt.json │ │ │ ├── stripped_sunroot_log_wall_side_alt_short.json │ │ │ ├── stripped_sunroot_log_wall_side_short.json │ │ │ ├── stripped_sunroot_log_wall_side_tall.json │ │ │ ├── stripped_sunroot_log_wall_side_tall_alt.json │ │ │ ├── stripped_sunroot_log_wall_side_tall_alt_short.json │ │ │ ├── stripped_sunroot_log_wall_side_tall_short.json │ │ │ ├── stripped_sunroot_wall_post.json │ │ │ ├── stripped_sunroot_wall_side.json │ │ │ ├── stripped_sunroot_wall_side_tall.json │ │ │ ├── stripped_sunroot_wood.json │ │ │ ├── stripped_sunroot_wood_horizontal.json │ │ │ ├── stripped_yagroot_log.json │ │ │ ├── stripped_yagroot_log_horizontal.json │ │ │ ├── stripped_yagroot_log_wall_post.json │ │ │ ├── stripped_yagroot_log_wall_post_short.json │ │ │ ├── stripped_yagroot_log_wall_post_tall.json │ │ │ ├── stripped_yagroot_log_wall_side.json │ │ │ ├── stripped_yagroot_log_wall_side_alt.json │ │ │ ├── stripped_yagroot_log_wall_side_alt_short.json │ │ │ ├── stripped_yagroot_log_wall_side_short.json │ │ │ ├── stripped_yagroot_log_wall_side_tall.json │ │ │ ├── stripped_yagroot_log_wall_side_tall_alt.json │ │ │ ├── stripped_yagroot_log_wall_side_tall_alt_short.json │ │ │ ├── stripped_yagroot_log_wall_side_tall_short.json │ │ │ ├── stripped_yagroot_wall_post.json │ │ │ ├── stripped_yagroot_wall_side.json │ │ │ ├── stripped_yagroot_wall_side_tall.json │ │ │ ├── stripped_yagroot_wood.json │ │ │ ├── stripped_yagroot_wood_horizontal.json │ │ │ ├── sunroot_button.json │ │ │ ├── sunroot_button_pressed.json │ │ │ ├── sunroot_door_bottom_left.json │ │ │ ├── sunroot_door_bottom_left_open.json │ │ │ ├── sunroot_door_bottom_right.json │ │ │ ├── sunroot_door_bottom_right_open.json │ │ │ ├── sunroot_door_top_left.json │ │ │ ├── sunroot_door_top_left_open.json │ │ │ ├── sunroot_door_top_right.json │ │ │ ├── sunroot_door_top_right_open.json │ │ │ ├── sunroot_fence_gate.json │ │ │ ├── sunroot_fence_gate_open.json │ │ │ ├── sunroot_fence_gate_wall.json │ │ │ ├── sunroot_fence_gate_wall_open.json │ │ │ ├── sunroot_fence_post.json │ │ │ ├── sunroot_fence_side.json │ │ │ ├── sunroot_hanging_sign.json │ │ │ ├── sunroot_log.json │ │ │ ├── sunroot_log_horizontal.json │ │ │ ├── sunroot_log_wall_post.json │ │ │ ├── sunroot_log_wall_post_short.json │ │ │ ├── sunroot_log_wall_post_tall.json │ │ │ ├── sunroot_log_wall_side.json │ │ │ ├── sunroot_log_wall_side_alt.json │ │ │ ├── sunroot_log_wall_side_alt_short.json │ │ │ ├── sunroot_log_wall_side_short.json │ │ │ ├── sunroot_log_wall_side_tall.json │ │ │ ├── sunroot_log_wall_side_tall_alt.json │ │ │ ├── sunroot_log_wall_side_tall_alt_short.json │ │ │ ├── sunroot_log_wall_side_tall_short.json │ │ │ ├── sunroot_planks.json │ │ │ ├── sunroot_pressure_plate.json │ │ │ ├── sunroot_pressure_plate_down.json │ │ │ ├── sunroot_sapling.json │ │ │ ├── sunroot_sign.json │ │ │ ├── sunroot_slab.json │ │ │ ├── sunroot_slab_top.json │ │ │ ├── sunroot_stairs.json │ │ │ ├── sunroot_stairs_inner.json │ │ │ ├── sunroot_stairs_outer.json │ │ │ ├── sunroot_trapdoor_bottom.json │ │ │ ├── sunroot_trapdoor_open.json │ │ │ ├── sunroot_trapdoor_top.json │ │ │ ├── sunroot_wall_post.json │ │ │ ├── sunroot_wall_side.json │ │ │ ├── sunroot_wall_side_tall.json │ │ │ ├── sunroot_wood.json │ │ │ ├── sunroot_wood_horizontal.json │ │ │ ├── tall_aerlavender.json │ │ │ ├── wooden_post_big.json │ │ │ ├── wooden_post_short.json │ │ │ ├── wooden_post_tall.json │ │ │ ├── wooden_side.json │ │ │ ├── wooden_side_alt.json │ │ │ ├── wooden_side_alt_short.json │ │ │ ├── wooden_side_short.json │ │ │ ├── wooden_side_tall.json │ │ │ ├── wooden_side_tall_alt.json │ │ │ ├── wooden_side_tall_alt_short.json │ │ │ ├── wooden_side_tall_short.json │ │ │ ├── yagroot_button.json │ │ │ ├── yagroot_button_pressed.json │ │ │ ├── yagroot_door_bottom_left.json │ │ │ ├── yagroot_door_bottom_left_open.json │ │ │ ├── yagroot_door_bottom_right.json │ │ │ ├── yagroot_door_bottom_right_open.json │ │ │ ├── yagroot_door_top_left.json │ │ │ ├── yagroot_door_top_left_open.json │ │ │ ├── yagroot_door_top_right.json │ │ │ ├── yagroot_door_top_right_open.json │ │ │ ├── yagroot_fence_gate.json │ │ │ ├── yagroot_fence_gate_open.json │ │ │ ├── yagroot_fence_gate_wall.json │ │ │ ├── yagroot_fence_gate_wall_open.json │ │ │ ├── yagroot_fence_post.json │ │ │ ├── yagroot_fence_side.json │ │ │ ├── yagroot_hanging_sign.json │ │ │ ├── yagroot_leaves.json │ │ │ ├── yagroot_log.json │ │ │ ├── yagroot_log_horizontal.json │ │ │ ├── yagroot_log_wall_post.json │ │ │ ├── yagroot_log_wall_post_short.json │ │ │ ├── yagroot_log_wall_post_tall.json │ │ │ ├── yagroot_log_wall_side.json │ │ │ ├── yagroot_log_wall_side_alt.json │ │ │ ├── yagroot_log_wall_side_alt_short.json │ │ │ ├── yagroot_log_wall_side_short.json │ │ │ ├── yagroot_log_wall_side_tall.json │ │ │ ├── yagroot_log_wall_side_tall_alt.json │ │ │ ├── yagroot_log_wall_side_tall_alt_short.json │ │ │ ├── yagroot_log_wall_side_tall_short.json │ │ │ ├── yagroot_planks.json │ │ │ ├── yagroot_pressure_plate.json │ │ │ ├── yagroot_pressure_plate_down.json │ │ │ ├── yagroot_sapling.json │ │ │ ├── yagroot_sign.json │ │ │ ├── yagroot_slab.json │ │ │ ├── yagroot_slab_top.json │ │ │ ├── yagroot_stairs.json │ │ │ ├── yagroot_stairs_inner.json │ │ │ ├── yagroot_stairs_outer.json │ │ │ ├── yagroot_trapdoor_bottom.json │ │ │ ├── yagroot_trapdoor_open.json │ │ │ ├── yagroot_trapdoor_top.json │ │ │ ├── yagroot_wall_post.json │ │ │ ├── yagroot_wall_side.json │ │ │ ├── yagroot_wall_side_tall.json │ │ │ ├── yagroot_wood.json │ │ │ └── yagroot_wood_horizontal.json │ │ │ └── item │ │ │ ├── aercloud_grass_block.json │ │ │ ├── aercloud_necklace.json │ │ │ ├── aercloud_root_carpet.json │ │ │ ├── aercloud_roots.json │ │ │ ├── aerglow_blossom.json │ │ │ ├── aerglow_blossom_block.json │ │ │ ├── aerglow_fish_bucket.json │ │ │ ├── aerlavender.json │ │ │ ├── aersmog.json │ │ │ ├── aerwhale_saddle.json │ │ │ ├── aether_cattails.json │ │ │ ├── aether_coarse_dirt.json │ │ │ ├── aether_fish_spawn_egg.json │ │ │ ├── aether_moss_block.json │ │ │ ├── aether_moss_carpet.json │ │ │ ├── aether_mud.json │ │ │ ├── aether_mud_bricks.json │ │ │ ├── aether_mud_bricks_slab.json │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ ├── aether_mud_bricks_wall.json │ │ │ ├── afterburner.json │ │ │ ├── antidote.json │ │ │ ├── aseterite.json │ │ │ ├── aseterite_bricks.json │ │ │ ├── aseterite_bricks_slab.json │ │ │ ├── aseterite_bricks_stairs.json │ │ │ ├── aseterite_bricks_wall.json │ │ │ ├── aseterite_slab.json │ │ │ ├── aseterite_stairs.json │ │ │ ├── aseterite_wall.json │ │ │ ├── baby_zephyr_spawn_egg.json │ │ │ ├── big_holystone_bricks.json │ │ │ ├── big_holystone_bricks_slab.json │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ ├── big_holystone_bricks_wall.json │ │ │ ├── bio_crystal.json │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ ├── blightmoss_holystone_brick_wall.json │ │ │ ├── blightmoss_holystone_bricks.json │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ ├── blightmoss_holystone_tile_wall.json │ │ │ ├── blightmoss_holystone_tiles.json │ │ │ ├── blue_aercloud_mushrooms.json │ │ │ ├── blue_roseroot_leaves.json │ │ │ ├── blue_roseroot_sapling.json │ │ │ ├── blue_squash.json │ │ │ ├── blue_squash_slice.json │ │ │ ├── boss_doorway_light_nimbus_pillar.json │ │ │ ├── boss_doorway_light_nimbus_stone.json │ │ │ ├── boss_doorway_nimbus_pillar.json │ │ │ ├── boss_doorway_nimbus_stone.json │ │ │ ├── brass_dungeon_key.json │ │ │ ├── carved_blue_squash.json │ │ │ ├── carved_green_squash.json │ │ │ ├── carved_purple_squash.json │ │ │ ├── chaos_emerald.json │ │ │ ├── chiseled_holystone.json │ │ │ ├── chromatic_aercloud.json │ │ │ ├── clorite.json │ │ │ ├── clorite_pillar.json │ │ │ ├── clorite_slab.json │ │ │ ├── clorite_stairs.json │ │ │ ├── clorite_wall.json │ │ │ ├── cloud_cape.json │ │ │ ├── cloudbloom_bouquet.json │ │ │ ├── cloudbloom_carpet.json │ │ │ ├── cobbled_aseterite.json │ │ │ ├── cobbled_aseterite_slab.json │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ ├── cobbled_aseterite_wall.json │ │ │ ├── combiner.json │ │ │ ├── conberry_boat.json │ │ │ ├── conberry_button.json │ │ │ ├── conberry_chest_boat.json │ │ │ ├── conberry_door.json │ │ │ ├── conberry_fence.json │ │ │ ├── conberry_fence_gate.json │ │ │ ├── conberry_hanging_sign.json │ │ │ ├── conberry_leaves.json │ │ │ ├── conberry_log.json │ │ │ ├── conberry_log_wall.json │ │ │ ├── conberry_planks.json │ │ │ ├── conberry_pressure_plate.json │ │ │ ├── conberry_sapling.json │ │ │ ├── conberry_sign.json │ │ │ ├── conberry_slab.json │ │ │ ├── conberry_stairs.json │ │ │ ├── conberry_trapdoor.json │ │ │ ├── conberry_wall.json │ │ │ ├── conberry_wood.json │ │ │ ├── cooked_aerglow_fish.json │ │ │ ├── cooked_quail.json │ │ │ ├── cruderoot_boat.json │ │ │ ├── cruderoot_button.json │ │ │ ├── cruderoot_chest_boat.json │ │ │ ├── cruderoot_door.json │ │ │ ├── cruderoot_fence.json │ │ │ ├── cruderoot_fence_gate.json │ │ │ ├── cruderoot_hanging_sign.json │ │ │ ├── cruderoot_leaves.json │ │ │ ├── cruderoot_log.json │ │ │ ├── cruderoot_log_wall.json │ │ │ ├── cruderoot_planks.json │ │ │ ├── cruderoot_pressure_plate.json │ │ │ ├── cruderoot_sapling.json │ │ │ ├── cruderoot_sign.json │ │ │ ├── cruderoot_slab.json │ │ │ ├── cruderoot_stairs.json │ │ │ ├── cruderoot_trapdoor.json │ │ │ ├── cruderoot_wall.json │ │ │ ├── cruderoot_wood.json │ │ │ ├── echaisy.json │ │ │ ├── enchanted_antidote.json │ │ │ ├── enchanted_blossom.json │ │ │ ├── feather_grass.json │ │ │ ├── flowering_blue_roseroot_leaves.json │ │ │ ├── flowering_roseroot_leaves.json │ │ │ ├── frozen_goldenleaf_berries.json │ │ │ ├── gentle_wind_spawn_egg.json │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ ├── gilded_holystone_brick_wall.json │ │ │ ├── gilded_holystone_bricks.json │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ ├── gilded_holystone_tile_wall.json │ │ │ ├── gilded_holystone_tiles.json │ │ │ ├── glowing_spores.json │ │ │ ├── golden_aspess.json │ │ │ ├── golden_flower.json │ │ │ ├── golden_grass_seeds.json │ │ │ ├── golden_heights_grass_block.json │ │ │ ├── golden_swet_ball.json │ │ │ ├── goldenleaf_berries.json │ │ │ ├── gravitite_ring.json │ │ │ ├── green_squash.json │ │ │ ├── green_squash_slice.json │ │ │ ├── highstone.json │ │ │ ├── holystone_pillar.json │ │ │ ├── holystone_pillar_down.json │ │ │ ├── holystone_pillar_up.json │ │ │ ├── holystone_tile_slab.json │ │ │ ├── holystone_tile_stairs.json │ │ │ ├── holystone_tile_wall.json │ │ │ ├── holystone_tiles.json │ │ │ ├── iaspove.json │ │ │ ├── light_nimbus_pillar.json │ │ │ ├── light_nimbus_stone.json │ │ │ ├── lightcap_mushrooms.json │ │ │ ├── locked_light_nimbus_pillar.json │ │ │ ├── locked_light_nimbus_stone.json │ │ │ ├── locked_nimbus_pillar.json │ │ │ ├── locked_nimbus_stone.json │ │ │ ├── medal_of_honor.json │ │ │ ├── medium_golden_grass.json │ │ │ ├── mini_golden_grass.json │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ ├── mossy_holystone_brick_wall.json │ │ │ ├── mossy_holystone_bricks.json │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ ├── mossy_holystone_tile_wall.json │ │ │ ├── mossy_holystone_tiles.json │ │ │ ├── muddy_yagroot_roots.json │ │ │ ├── music_disc_a_morning_wish.json │ │ │ ├── music_disc_above_the_rain.json │ │ │ ├── music_disc_atta.json │ │ │ ├── music_disc_cyclone.json │ │ │ ├── music_disc_faent.json │ │ │ ├── music_disc_himininn.json │ │ │ ├── music_disc_nabooru.json │ │ │ ├── nimbus_pillar.json │ │ │ ├── nimbus_slab.json │ │ │ ├── nimbus_stairs.json │ │ │ ├── nimbus_stone.json │ │ │ ├── nimbus_wall.json │ │ │ ├── packed_aether_mud.json │ │ │ ├── pink_aercloud_mushrooms.json │ │ │ ├── poison_bucket.json │ │ │ ├── polished_aseterite.json │ │ │ ├── polished_aseterite_slab.json │ │ │ ├── polished_aseterite_stairs.json │ │ │ ├── polished_aseterite_wall.json │ │ │ ├── polished_clorite.json │ │ │ ├── polished_clorite_slab.json │ │ │ ├── polished_clorite_stairs.json │ │ │ ├── polished_clorite_wall.json │ │ │ ├── purple_squash.json │ │ │ ├── purple_squash_slice.json │ │ │ ├── quail_egg.json │ │ │ ├── quail_spawn_egg.json │ │ │ ├── radiant_orchid.json │ │ │ ├── rain_aercloud.json │ │ │ ├── raw_aerglow_fish.json │ │ │ ├── raw_clorite.json │ │ │ ├── raw_clorite_slab.json │ │ │ ├── raw_clorite_stairs.json │ │ │ ├── raw_clorite_wall.json │ │ │ ├── raw_quail.json │ │ │ ├── remedy_bucket.json │ │ │ ├── roseroot_boat.json │ │ │ ├── roseroot_button.json │ │ │ ├── roseroot_chest_boat.json │ │ │ ├── roseroot_door.json │ │ │ ├── roseroot_fence.json │ │ │ ├── roseroot_fence_gate.json │ │ │ ├── roseroot_hanging_sign.json │ │ │ ├── roseroot_leaves.json │ │ │ ├── roseroot_log.json │ │ │ ├── roseroot_log_wall.json │ │ │ ├── roseroot_planks.json │ │ │ ├── roseroot_pressure_plate.json │ │ │ ├── roseroot_sapling.json │ │ │ ├── roseroot_sign.json │ │ │ ├── roseroot_slab.json │ │ │ ├── roseroot_stairs.json │ │ │ ├── roseroot_trapdoor.json │ │ │ ├── roseroot_wall.json │ │ │ ├── roseroot_wood.json │ │ │ ├── short_golden_grass.json │ │ │ ├── sky_tulips.json │ │ │ ├── skyjade.json │ │ │ ├── skyjade_axe.json │ │ │ ├── skyjade_block.json │ │ │ ├── skyjade_boots.json │ │ │ ├── skyjade_boots_amethyst_trim.json │ │ │ ├── skyjade_boots_copper_trim.json │ │ │ ├── skyjade_boots_diamond_trim.json │ │ │ ├── skyjade_boots_emerald_trim.json │ │ │ ├── skyjade_boots_gold_trim.json │ │ │ ├── skyjade_boots_iron_trim.json │ │ │ ├── skyjade_boots_lapis_trim.json │ │ │ ├── skyjade_boots_netherite_trim.json │ │ │ ├── skyjade_boots_quartz_trim.json │ │ │ ├── skyjade_boots_redstone_trim.json │ │ │ ├── skyjade_chain.json │ │ │ ├── skyjade_chestplate.json │ │ │ ├── skyjade_chestplate_amethyst_trim.json │ │ │ ├── skyjade_chestplate_copper_trim.json │ │ │ ├── skyjade_chestplate_diamond_trim.json │ │ │ ├── skyjade_chestplate_emerald_trim.json │ │ │ ├── skyjade_chestplate_gold_trim.json │ │ │ ├── skyjade_chestplate_iron_trim.json │ │ │ ├── skyjade_chestplate_lapis_trim.json │ │ │ ├── skyjade_chestplate_netherite_trim.json │ │ │ ├── skyjade_chestplate_quartz_trim.json │ │ │ ├── skyjade_chestplate_redstone_trim.json │ │ │ ├── skyjade_gloves.json │ │ │ ├── skyjade_gloves_amethyst_trim.json │ │ │ ├── skyjade_gloves_copper_trim.json │ │ │ ├── skyjade_gloves_diamond_trim.json │ │ │ ├── skyjade_gloves_emerald_trim.json │ │ │ ├── skyjade_gloves_gold_trim.json │ │ │ ├── skyjade_gloves_iron_trim.json │ │ │ ├── skyjade_gloves_lapis_trim.json │ │ │ ├── skyjade_gloves_netherite_trim.json │ │ │ ├── skyjade_gloves_quartz_trim.json │ │ │ ├── skyjade_gloves_redstone_trim.json │ │ │ ├── skyjade_helmet.json │ │ │ ├── skyjade_helmet_amethyst_trim.json │ │ │ ├── skyjade_helmet_copper_trim.json │ │ │ ├── skyjade_helmet_diamond_trim.json │ │ │ ├── skyjade_helmet_emerald_trim.json │ │ │ ├── skyjade_helmet_gold_trim.json │ │ │ ├── skyjade_helmet_iron_trim.json │ │ │ ├── skyjade_helmet_lapis_trim.json │ │ │ ├── skyjade_helmet_netherite_trim.json │ │ │ ├── skyjade_helmet_quartz_trim.json │ │ │ ├── skyjade_helmet_redstone_trim.json │ │ │ ├── skyjade_hoe.json │ │ │ ├── skyjade_lantern.json │ │ │ ├── skyjade_leggings.json │ │ │ ├── skyjade_leggings_amethyst_trim.json │ │ │ ├── skyjade_leggings_copper_trim.json │ │ │ ├── skyjade_leggings_diamond_trim.json │ │ │ ├── skyjade_leggings_emerald_trim.json │ │ │ ├── skyjade_leggings_gold_trim.json │ │ │ ├── skyjade_leggings_iron_trim.json │ │ │ ├── skyjade_leggings_lapis_trim.json │ │ │ ├── skyjade_leggings_netherite_trim.json │ │ │ ├── skyjade_leggings_quartz_trim.json │ │ │ ├── skyjade_leggings_redstone_trim.json │ │ │ ├── skyjade_moa_armor.json │ │ │ ├── skyjade_nugget.json │ │ │ ├── skyjade_ore.json │ │ │ ├── skyjade_pickaxe.json │ │ │ ├── skyjade_ring.json │ │ │ ├── skyjade_shovel.json │ │ │ ├── skyjade_sword.json │ │ │ ├── skyroot_aerglow_fish_bucket.json │ │ │ ├── skyroot_virulent_quicksand_bucket.json │ │ │ ├── slider_eye.json │ │ │ ├── spooky_ring.json │ │ │ ├── squall_block.json │ │ │ ├── squall_plate.json │ │ │ ├── squash_seeds.json │ │ │ ├── sterling_aercloud.json │ │ │ ├── storm_bow.json │ │ │ ├── storm_bow_pulling_0.json │ │ │ ├── storm_bow_pulling_0_special.json │ │ │ ├── storm_bow_pulling_1.json │ │ │ ├── storm_bow_pulling_1_special.json │ │ │ ├── storm_bow_pulling_2.json │ │ │ ├── storm_bow_pulling_2_special.json │ │ │ ├── storm_sword.json │ │ │ ├── stormforged_boots.json │ │ │ ├── stormforged_boots_amethyst_trim.json │ │ │ ├── stormforged_boots_copper_trim.json │ │ │ ├── stormforged_boots_diamond_trim.json │ │ │ ├── stormforged_boots_emerald_trim.json │ │ │ ├── stormforged_boots_gold_trim.json │ │ │ ├── stormforged_boots_iron_trim.json │ │ │ ├── stormforged_boots_lapis_trim.json │ │ │ ├── stormforged_boots_netherite_trim.json │ │ │ ├── stormforged_boots_quartz_trim.json │ │ │ ├── stormforged_boots_redstone_trim.json │ │ │ ├── stormforged_chestplate.json │ │ │ ├── stormforged_chestplate_amethyst_trim.json │ │ │ ├── stormforged_chestplate_copper_trim.json │ │ │ ├── stormforged_chestplate_diamond_trim.json │ │ │ ├── stormforged_chestplate_emerald_trim.json │ │ │ ├── stormforged_chestplate_gold_trim.json │ │ │ ├── stormforged_chestplate_iron_trim.json │ │ │ ├── stormforged_chestplate_lapis_trim.json │ │ │ ├── stormforged_chestplate_netherite_trim.json │ │ │ ├── stormforged_chestplate_quartz_trim.json │ │ │ ├── stormforged_chestplate_redstone_trim.json │ │ │ ├── stormforged_gloves.json │ │ │ ├── stormforged_gloves_amethyst_trim.json │ │ │ ├── stormforged_gloves_copper_trim.json │ │ │ ├── stormforged_gloves_diamond_trim.json │ │ │ ├── stormforged_gloves_emerald_trim.json │ │ │ ├── stormforged_gloves_gold_trim.json │ │ │ ├── stormforged_gloves_iron_trim.json │ │ │ ├── stormforged_gloves_lapis_trim.json │ │ │ ├── stormforged_gloves_netherite_trim.json │ │ │ ├── stormforged_gloves_quartz_trim.json │ │ │ ├── stormforged_gloves_redstone_trim.json │ │ │ ├── stormforged_helmet.json │ │ │ ├── stormforged_helmet_amethyst_trim.json │ │ │ ├── stormforged_helmet_copper_trim.json │ │ │ ├── stormforged_helmet_diamond_trim.json │ │ │ ├── stormforged_helmet_emerald_trim.json │ │ │ ├── stormforged_helmet_gold_trim.json │ │ │ ├── stormforged_helmet_iron_trim.json │ │ │ ├── stormforged_helmet_lapis_trim.json │ │ │ ├── stormforged_helmet_netherite_trim.json │ │ │ ├── stormforged_helmet_quartz_trim.json │ │ │ ├── stormforged_helmet_redstone_trim.json │ │ │ ├── stormforged_leggings.json │ │ │ ├── stormforged_leggings_amethyst_trim.json │ │ │ ├── stormforged_leggings_copper_trim.json │ │ │ ├── stormforged_leggings_diamond_trim.json │ │ │ ├── stormforged_leggings_emerald_trim.json │ │ │ ├── stormforged_leggings_gold_trim.json │ │ │ ├── stormforged_leggings_iron_trim.json │ │ │ ├── stormforged_leggings_lapis_trim.json │ │ │ ├── stormforged_leggings_netherite_trim.json │ │ │ ├── stormforged_leggings_quartz_trim.json │ │ │ ├── stormforged_leggings_redstone_trim.json │ │ │ ├── stormforged_smithing_template.json │ │ │ ├── stratus_axe.json │ │ │ ├── stratus_block.json │ │ │ ├── stratus_boots.json │ │ │ ├── stratus_boots_amethyst_trim.json │ │ │ ├── stratus_boots_copper_trim.json │ │ │ ├── stratus_boots_diamond_trim.json │ │ │ ├── stratus_boots_emerald_trim.json │ │ │ ├── stratus_boots_gold_trim.json │ │ │ ├── stratus_boots_iron_trim.json │ │ │ ├── stratus_boots_lapis_trim.json │ │ │ ├── stratus_boots_netherite_trim.json │ │ │ ├── stratus_boots_quartz_trim.json │ │ │ ├── stratus_boots_redstone_trim.json │ │ │ ├── stratus_chestplate.json │ │ │ ├── stratus_chestplate_amethyst_trim.json │ │ │ ├── stratus_chestplate_copper_trim.json │ │ │ ├── stratus_chestplate_diamond_trim.json │ │ │ ├── stratus_chestplate_emerald_trim.json │ │ │ ├── stratus_chestplate_gold_trim.json │ │ │ ├── stratus_chestplate_iron_trim.json │ │ │ ├── stratus_chestplate_lapis_trim.json │ │ │ ├── stratus_chestplate_netherite_trim.json │ │ │ ├── stratus_chestplate_quartz_trim.json │ │ │ ├── stratus_chestplate_redstone_trim.json │ │ │ ├── stratus_gloves.json │ │ │ ├── stratus_gloves_amethyst_trim.json │ │ │ ├── stratus_gloves_copper_trim.json │ │ │ ├── stratus_gloves_diamond_trim.json │ │ │ ├── stratus_gloves_emerald_trim.json │ │ │ ├── stratus_gloves_gold_trim.json │ │ │ ├── stratus_gloves_iron_trim.json │ │ │ ├── stratus_gloves_lapis_trim.json │ │ │ ├── stratus_gloves_netherite_trim.json │ │ │ ├── stratus_gloves_quartz_trim.json │ │ │ ├── stratus_gloves_redstone_trim.json │ │ │ ├── stratus_helmet.json │ │ │ ├── stratus_helmet_amethyst_trim.json │ │ │ ├── stratus_helmet_copper_trim.json │ │ │ ├── stratus_helmet_diamond_trim.json │ │ │ ├── stratus_helmet_emerald_trim.json │ │ │ ├── stratus_helmet_gold_trim.json │ │ │ ├── stratus_helmet_iron_trim.json │ │ │ ├── stratus_helmet_lapis_trim.json │ │ │ ├── stratus_helmet_netherite_trim.json │ │ │ ├── stratus_helmet_quartz_trim.json │ │ │ ├── stratus_helmet_redstone_trim.json │ │ │ ├── stratus_hoe.json │ │ │ ├── stratus_ingot.json │ │ │ ├── stratus_leggings.json │ │ │ ├── stratus_leggings_amethyst_trim.json │ │ │ ├── stratus_leggings_copper_trim.json │ │ │ ├── stratus_leggings_diamond_trim.json │ │ │ ├── stratus_leggings_emerald_trim.json │ │ │ ├── stratus_leggings_gold_trim.json │ │ │ ├── stratus_leggings_iron_trim.json │ │ │ ├── stratus_leggings_lapis_trim.json │ │ │ ├── stratus_leggings_netherite_trim.json │ │ │ ├── stratus_leggings_quartz_trim.json │ │ │ ├── stratus_leggings_redstone_trim.json │ │ │ ├── stratus_pickaxe.json │ │ │ ├── stratus_ring.json │ │ │ ├── stratus_shovel.json │ │ │ ├── stratus_smithing_template.json │ │ │ ├── stratus_sword.json │ │ │ ├── stripped_conberry_log.json │ │ │ ├── stripped_conberry_log_wall.json │ │ │ ├── stripped_conberry_wall.json │ │ │ ├── stripped_conberry_wood.json │ │ │ ├── stripped_cruderoot_log.json │ │ │ ├── stripped_cruderoot_log_wall.json │ │ │ ├── stripped_cruderoot_wall.json │ │ │ ├── stripped_cruderoot_wood.json │ │ │ ├── stripped_roseroot_log.json │ │ │ ├── stripped_roseroot_log_wall.json │ │ │ ├── stripped_roseroot_wall.json │ │ │ ├── stripped_roseroot_wood.json │ │ │ ├── stripped_sunroot_log.json │ │ │ ├── stripped_sunroot_log_wall.json │ │ │ ├── stripped_sunroot_wall.json │ │ │ ├── stripped_sunroot_wood.json │ │ │ ├── stripped_yagroot_log.json │ │ │ ├── stripped_yagroot_log_wall.json │ │ │ ├── stripped_yagroot_wall.json │ │ │ ├── stripped_yagroot_wood.json │ │ │ ├── sun_core.json │ │ │ ├── sunroot_boat.json │ │ │ ├── sunroot_button.json │ │ │ ├── sunroot_chest_boat.json │ │ │ ├── sunroot_door.json │ │ │ ├── sunroot_fence.json │ │ │ ├── sunroot_fence_gate.json │ │ │ ├── sunroot_hanging_sign.json │ │ │ ├── sunroot_leaves.json │ │ │ ├── sunroot_log.json │ │ │ ├── sunroot_log_wall.json │ │ │ ├── sunroot_planks.json │ │ │ ├── sunroot_pressure_plate.json │ │ │ ├── sunroot_sapling.json │ │ │ ├── sunroot_sign.json │ │ │ ├── sunroot_slab.json │ │ │ ├── sunroot_stairs.json │ │ │ ├── sunroot_trapdoor.json │ │ │ ├── sunroot_wall.json │ │ │ ├── sunroot_wood.json │ │ │ ├── tall_aerlavender.json │ │ │ ├── tall_aether_cattails.json │ │ │ ├── tall_alien_plant.json │ │ │ ├── tall_feather_grass.json │ │ │ ├── tall_golden_grass.json │ │ │ ├── trapped_light_nimbus_pillar.json │ │ │ ├── trapped_light_nimbus_stone.json │ │ │ ├── trapped_nimbus_pillar.json │ │ │ ├── trapped_nimbus_stone.json │ │ │ ├── treasure_doorway_light_nimbus_pillar.json │ │ │ ├── treasure_doorway_light_nimbus_stone.json │ │ │ ├── treasure_doorway_nimbus_pillar.json │ │ │ ├── treasure_doorway_nimbus_stone.json │ │ │ ├── venomite_spawn_egg.json │ │ │ ├── virulent_quicksand_bucket.json │ │ │ ├── wind_shield.json │ │ │ ├── windfly_spawn_egg.json │ │ │ ├── yagroot_boat.json │ │ │ ├── yagroot_button.json │ │ │ ├── yagroot_chest_boat.json │ │ │ ├── yagroot_door.json │ │ │ ├── yagroot_fence.json │ │ │ ├── yagroot_fence_gate.json │ │ │ ├── yagroot_hanging_sign.json │ │ │ ├── yagroot_leaves.json │ │ │ ├── yagroot_log.json │ │ │ ├── yagroot_log_wall.json │ │ │ ├── yagroot_planks.json │ │ │ ├── yagroot_pressure_plate.json │ │ │ ├── yagroot_roots.json │ │ │ ├── yagroot_sapling.json │ │ │ ├── yagroot_sign.json │ │ │ ├── yagroot_slab.json │ │ │ ├── yagroot_stairs.json │ │ │ ├── yagroot_trapdoor.json │ │ │ ├── yagroot_wall.json │ │ │ └── yagroot_wood.json │ │ └── data │ │ ├── aether │ │ └── tags │ │ │ ├── block │ │ │ ├── aerclouds.json │ │ │ ├── aether_animals_spawnable_on.json │ │ │ ├── allowed_bucket_pickup.json │ │ │ ├── boss_doorway_dungeon_blocks.json │ │ │ ├── dungeon_blocks.json │ │ │ ├── locked_dungeon_blocks.json │ │ │ ├── ores_in_ground │ │ │ │ └── holystone.json │ │ │ ├── trapped_dungeon_blocks.json │ │ │ ├── treasure_doorway_dungeon_blocks.json │ │ │ └── treated_as_aether_block.json │ │ │ ├── entity_type │ │ │ ├── unhookable.json │ │ │ └── unlaunchable.json │ │ │ ├── fluid │ │ │ └── allowed_bucket_pickup.json │ │ │ ├── item │ │ │ ├── accessories_capes.json │ │ │ ├── accessories_gloves.json │ │ │ ├── accessories_miscellaneous.json │ │ │ ├── accessories_pendants.json │ │ │ ├── accessories_rings.json │ │ │ ├── accessories_shields.json │ │ │ ├── aerclouds.json │ │ │ ├── bronze_dungeon_loot.json │ │ │ ├── dungeon_keys.json │ │ │ ├── gold_dungeon_loot.json │ │ │ ├── no_skyroot_double_drops.json │ │ │ ├── ores_in_ground │ │ │ │ └── holystone.json │ │ │ ├── planks_crafting.json │ │ │ ├── silver_dungeon_loot.json │ │ │ ├── skyroot_repairing.json │ │ │ ├── skyroot_stick_crafting.json │ │ │ ├── skyroot_tool_crafting.json │ │ │ ├── slider_damaging_items.json │ │ │ └── treated_as_aether_item.json │ │ │ ├── sound_event │ │ │ └── boss_music.json │ │ │ └── worldgen │ │ │ └── biome │ │ │ └── is_aether.json │ │ ├── aether_beyond_parity │ │ └── tags │ │ │ ├── block │ │ │ └── log_walls.json │ │ │ └── item │ │ │ └── log_walls.json │ │ ├── c │ │ └── tags │ │ │ ├── block │ │ │ ├── chains.json │ │ │ ├── fence_gates.json │ │ │ ├── fence_gates │ │ │ │ └── wooden.json │ │ │ ├── fences.json │ │ │ ├── fences │ │ │ │ └── wooden.json │ │ │ ├── ore_rates │ │ │ │ └── singular.json │ │ │ ├── ores.json │ │ │ └── storage_blocks.json │ │ │ ├── entity_type │ │ │ └── bosses.json │ │ │ └── item │ │ │ ├── animal_foods.json │ │ │ ├── buckets.json │ │ │ ├── buckets │ │ │ └── entity_water.json │ │ │ ├── chains.json │ │ │ ├── crops.json │ │ │ ├── eggs.json │ │ │ ├── fence_gates.json │ │ │ ├── fence_gates │ │ │ └── wooden.json │ │ │ ├── fences.json │ │ │ ├── fences │ │ │ └── wooden.json │ │ │ ├── foods │ │ │ ├── berry.json │ │ │ ├── cooked_fish.json │ │ │ ├── cooked_meat.json │ │ │ ├── fruit.json │ │ │ ├── raw_fish.json │ │ │ └── raw_meat.json │ │ │ ├── gems.json │ │ │ ├── ingots.json │ │ │ ├── mushrooms.json │ │ │ ├── music_discs.json │ │ │ ├── nuggets.json │ │ │ ├── ore_rates │ │ │ └── singular.json │ │ │ ├── ores.json │ │ │ ├── seeds.json │ │ │ ├── storage_blocks.json │ │ │ └── tools │ │ │ ├── bow.json │ │ │ └── ranged_weapon.json │ │ ├── deep_aether │ │ ├── advancement │ │ │ ├── recipe │ │ │ │ ├── antidote.json │ │ │ │ ├── blueberry_from_poison.json │ │ │ │ ├── cold_aercloud_from_golden_aercloud.json │ │ │ │ ├── golden_dart_from_poison.json │ │ │ │ ├── golden_dart_shooter_from_poison.json │ │ │ │ ├── gravitite_ore_from_poison.json │ │ │ │ ├── holystone_from_poison.json │ │ │ │ ├── moa_fodder_deep_aether.moa_bonus_jumps.json │ │ │ │ ├── moa_fodder_minecraft.fire_resistance.json │ │ │ │ ├── moa_fodder_minecraft.jump_boost.json │ │ │ │ ├── poison_bucket_from_poison.json │ │ │ │ ├── poisonous_poison_from_poison.json │ │ │ │ ├── purple_squash_from_blue_squash.json │ │ │ │ ├── purple_squash_from_green_squash.json │ │ │ │ ├── quicksoil_from_poison.json │ │ │ │ ├── raw_clorite_from_poison.json │ │ │ │ └── skyroot_poison_bucket_from_poison.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── aether_coarse_dirt.json │ │ │ │ ├── aether_mud_bricks_slab.json │ │ │ │ ├── aether_mud_bricks_slab_from_aether_mud_bricks_stonecutting.json │ │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ │ ├── aether_mud_bricks_stairs_from_aether_mud_bricks_stonecutting.json │ │ │ │ ├── aseterite.json │ │ │ │ ├── aseterite_bricks_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_from_polished_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_slab.json │ │ │ │ ├── aseterite_bricks_slab_from_aseterite_bricks_stonecutting.json │ │ │ │ ├── aseterite_bricks_slab_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_slab_from_polished_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_stairs.json │ │ │ │ ├── aseterite_bricks_stairs_from_aseterite_bricks_stonecutting.json │ │ │ │ ├── aseterite_bricks_stairs_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_stairs_from_polished_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_wall_from_aseterite_bricks_stonecutting.json │ │ │ │ ├── aseterite_bricks_wall_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_bricks_wall_from_polished_aseterite_stonecutting.json │ │ │ │ ├── aseterite_slab.json │ │ │ │ ├── aseterite_slab_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_stairs.json │ │ │ │ ├── aseterite_stairs_from_aseterite_stonecutting.json │ │ │ │ ├── aseterite_wall_from_aseterite_stonecutting.json │ │ │ │ ├── big_holystone_bricks_from_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_from_holystone_stonecutting.json │ │ │ │ ├── big_holystone_bricks_from_holystone_tiles_stonecutting.json │ │ │ │ ├── big_holystone_bricks_slab.json │ │ │ │ ├── big_holystone_bricks_slab_from_big_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_slab_from_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_slab_from_holystone_stonecutting.json │ │ │ │ ├── big_holystone_bricks_slab_from_holystone_tiles_stonecutting.json │ │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ │ ├── big_holystone_bricks_stairs_from_big_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_stairs_from_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_stairs_from_holystone_stonecutting.json │ │ │ │ ├── big_holystone_bricks_stairs_from_holystone_tiles_stonecutting.json │ │ │ │ ├── big_holystone_bricks_wall_from_big_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_wall_from_holystone_bricks_stonecutting.json │ │ │ │ ├── big_holystone_bricks_wall_from_holystone_stonecutting.json │ │ │ │ ├── big_holystone_bricks_wall_from_holystone_tiles_stonecutting.json │ │ │ │ ├── chiseled_holystone_from_holystone_stonecutting.json │ │ │ │ ├── clorite_pillar_from_clorite_stonecutting.json │ │ │ │ ├── clorite_slab.json │ │ │ │ ├── clorite_slab_from_clorite_stonecutting.json │ │ │ │ ├── clorite_stairs.json │ │ │ │ ├── clorite_stairs_from_clorite_stonecutting.json │ │ │ │ ├── clorite_wall_from_clorite_stonecutting.json │ │ │ │ ├── cobbled_aseterite_slab.json │ │ │ │ ├── cobbled_aseterite_slab_from_cobbled_aseterite_stonecutting.json │ │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ │ ├── cobbled_aseterite_stairs_from_cobbled_aseterite_stonecutting.json │ │ │ │ ├── cobbled_aseterite_wall_from_cobbled_aseterite_stonecutting.json │ │ │ │ ├── conberry_planks.json │ │ │ │ ├── conberry_slab.json │ │ │ │ ├── conberry_stairs.json │ │ │ │ ├── conberry_wood.json │ │ │ │ ├── cruderoot_planks.json │ │ │ │ ├── cruderoot_slab.json │ │ │ │ ├── cruderoot_stairs.json │ │ │ │ ├── cruderoot_wood.json │ │ │ │ ├── holystone_pillar_down_from_holystone_stonecutting.json │ │ │ │ ├── holystone_pillar_from_holystone_stonecutting.json │ │ │ │ ├── holystone_pillar_up_from_holystone_stonecutting.json │ │ │ │ ├── holystone_tile_slab.json │ │ │ │ ├── holystone_tile_slab_from_holystone_bricks_stonecutting.json │ │ │ │ ├── holystone_tile_slab_from_holystone_stonecutting.json │ │ │ │ ├── holystone_tile_slab_from_holystone_tiles_stonecutting.json │ │ │ │ ├── holystone_tile_stairs.json │ │ │ │ ├── holystone_tile_stairs_from_holystone_bricks_stonecutting.json │ │ │ │ ├── holystone_tile_stairs_from_holystone_stonecutting.json │ │ │ │ ├── holystone_tile_stairs_from_holystone_tiles_stonecutting.json │ │ │ │ ├── holystone_tile_wall_from_holystone_bricks_stonecutting.json │ │ │ │ ├── holystone_tile_wall_from_holystone_stonecutting.json │ │ │ │ ├── holystone_tile_wall_from_holystone_tiles_stonecutting.json │ │ │ │ ├── holystone_tiles_from_holystone_bricks_stonecutting.json │ │ │ │ ├── holystone_tiles_from_holystone_stonecutting.json │ │ │ │ ├── light_nimbus_pillar_from_light_nimbus_stone_stonecutting.json │ │ │ │ ├── light_nimbus_pillar_from_nimbus_pillar_stonecutting.json │ │ │ │ ├── light_nimbus_pillar_from_nimbus_stone_stonecutting.json │ │ │ │ ├── light_nimbus_stone_from_light_nimbus_pillar_stonecutting.json │ │ │ │ ├── light_nimbus_stone_from_nimbus_pillar_stonecutting.json │ │ │ │ ├── light_nimbus_stone_from_nimbus_stone_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ │ ├── mossy_holystone_brick_slab_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_slab_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ │ ├── mossy_holystone_brick_stairs_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_stairs_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_wall_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_brick_wall_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_bricks_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_tiles_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_tiles_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_stonecutting.json │ │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_tiles_stonecutting.json │ │ │ │ ├── mossy_holystone_tiles_from_mossy_holystone_bricks_stonecutting.json │ │ │ │ ├── mossy_holystone_tiles_from_mossy_holystone_stonecutting.json │ │ │ │ ├── nimbus_pillar_from_light_nimbus_pillar_stonecutting.json │ │ │ │ ├── nimbus_pillar_from_light_nimbus_stone_stonecutting.json │ │ │ │ ├── nimbus_pillar_from_nimbus_stone_stonecutting.json │ │ │ │ ├── nimbus_slab.json │ │ │ │ ├── nimbus_slab_from_nimbus_stone_stonecutting.json │ │ │ │ ├── nimbus_stairs.json │ │ │ │ ├── nimbus_stairs_from_nimbus_stone_stonecutting.json │ │ │ │ ├── nimbus_stone_from_light_nimbus_pillar_stonecutting.json │ │ │ │ ├── nimbus_stone_from_light_nimbus_stone_stonecutting.json │ │ │ │ ├── nimbus_stone_from_nimbus_pillar_stonecutting.json │ │ │ │ ├── polished_aseterite_from_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_slab.json │ │ │ │ ├── polished_aseterite_slab_from_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_slab_from_polished_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_stairs.json │ │ │ │ ├── polished_aseterite_stairs_from_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_stairs_from_polished_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_wall_from_aseterite_stonecutting.json │ │ │ │ ├── polished_aseterite_wall_from_polished_aseterite_stonecutting.json │ │ │ │ ├── polished_clorite_from_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_slab.json │ │ │ │ ├── polished_clorite_slab_from_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_slab_from_polished_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_stairs.json │ │ │ │ ├── polished_clorite_stairs_from_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_stairs_from_polished_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_wall_from_clorite_stonecutting.json │ │ │ │ ├── polished_clorite_wall_from_polished_clorite_stonecutting.json │ │ │ │ ├── raw_clorite_slab.json │ │ │ │ ├── raw_clorite_slab_from_raw_clorite_stonecutting.json │ │ │ │ ├── raw_clorite_stairs.json │ │ │ │ ├── raw_clorite_stairs_from_raw_clorite_stonecutting.json │ │ │ │ ├── raw_clorite_wall_from_raw_clorite_stonecutting.json │ │ │ │ ├── roseroot_planks.json │ │ │ │ ├── roseroot_slab.json │ │ │ │ ├── roseroot_stairs.json │ │ │ │ ├── roseroot_wood.json │ │ │ │ ├── stratus_enchanting.json │ │ │ │ ├── stripped_conberry_wood.json │ │ │ │ ├── stripped_cruderoot_wood.json │ │ │ │ ├── stripped_roseroot_wood.json │ │ │ │ ├── stripped_sunroot_wood.json │ │ │ │ ├── stripped_yagroot_wood.json │ │ │ │ ├── sunroot_planks.json │ │ │ │ ├── sunroot_slab.json │ │ │ │ ├── sunroot_stairs.json │ │ │ │ ├── sunroot_wood.json │ │ │ │ ├── yagroot_planks.json │ │ │ │ ├── yagroot_slab.json │ │ │ │ ├── yagroot_stairs.json │ │ │ │ └── yagroot_wood.json │ │ │ │ ├── combat │ │ │ │ ├── afterburner.json │ │ │ │ ├── gravitite_ring.json │ │ │ │ ├── poison_dart.json │ │ │ │ ├── skyjade_axe_repairing.json │ │ │ │ ├── skyjade_boots.json │ │ │ │ ├── skyjade_boots_repairing.json │ │ │ │ ├── skyjade_chestplate.json │ │ │ │ ├── skyjade_chestplate_repairing.json │ │ │ │ ├── skyjade_gloves.json │ │ │ │ ├── skyjade_gloves_repairing.json │ │ │ │ ├── skyjade_helmet.json │ │ │ │ ├── skyjade_helmet_repairing.json │ │ │ │ ├── skyjade_hoe_repairing.json │ │ │ │ ├── skyjade_leggings.json │ │ │ │ ├── skyjade_leggings_repairing.json │ │ │ │ ├── skyjade_pickaxe_repairing.json │ │ │ │ ├── skyjade_ring.json │ │ │ │ ├── skyjade_shovel_repairing.json │ │ │ │ ├── skyjade_sword.json │ │ │ │ ├── skyjade_sword_repairing.json │ │ │ │ ├── storm_bow_smithing.json │ │ │ │ ├── storm_sword_smithing.json │ │ │ │ ├── stormforged_boots_smithing.json │ │ │ │ ├── stormforged_chestplate_smithing.json │ │ │ │ ├── stormforged_gloves_smithing.json │ │ │ │ ├── stormforged_helmet_smithing.json │ │ │ │ ├── stormforged_leggings_smithing.json │ │ │ │ ├── stratus_axe_repairing.json │ │ │ │ ├── stratus_axe_smithing.json │ │ │ │ ├── stratus_boots_repairing.json │ │ │ │ ├── stratus_boots_smithing.json │ │ │ │ ├── stratus_chestplate_repairing.json │ │ │ │ ├── stratus_chestplate_smithing.json │ │ │ │ ├── stratus_gloves_repairing.json │ │ │ │ ├── stratus_gloves_smithing.json │ │ │ │ ├── stratus_helmet_repairing.json │ │ │ │ ├── stratus_helmet_smithing.json │ │ │ │ ├── stratus_hoe_repairing.json │ │ │ │ ├── stratus_hoe_smithing.json │ │ │ │ ├── stratus_leggings_repairing.json │ │ │ │ ├── stratus_leggings_smithing.json │ │ │ │ ├── stratus_pickaxe_repairing.json │ │ │ │ ├── stratus_pickaxe_smithing.json │ │ │ │ ├── stratus_ring_smithing.json │ │ │ │ ├── stratus_shovel_repairing.json │ │ │ │ ├── stratus_shovel_smithing.json │ │ │ │ ├── stratus_sword_repairing.json │ │ │ │ └── stratus_sword_smithing.json │ │ │ │ ├── decorations │ │ │ │ ├── aerglow_blossom_block.json │ │ │ │ ├── aether_moss_carpet.json │ │ │ │ ├── aether_mud_bricks.json │ │ │ │ ├── aether_mud_bricks_wall.json │ │ │ │ ├── aether_mud_bricks_wall_from_aether_mud_bricks_stonecutting.json │ │ │ │ ├── ambrosium_tiki_torch.json │ │ │ │ ├── aseterite_bricks.json │ │ │ │ ├── aseterite_bricks_wall.json │ │ │ │ ├── aseterite_wall.json │ │ │ │ ├── big_holystone_bricks.json │ │ │ │ ├── big_holystone_bricks_wall.json │ │ │ │ ├── blue_dye_from_iaspove.json │ │ │ │ ├── chiseled_holystone.json │ │ │ │ ├── clorite_pillar.json │ │ │ │ ├── clorite_wall.json │ │ │ │ ├── cloudbloom_carpet.json │ │ │ │ ├── cobbled_aseterite_wall.json │ │ │ │ ├── conberry_fence.json │ │ │ │ ├── conberry_hanging_sign.json │ │ │ │ ├── conberry_sign.json │ │ │ │ ├── cruderoot_fence.json │ │ │ │ ├── cruderoot_hanging_sign.json │ │ │ │ ├── cruderoot_sign.json │ │ │ │ ├── crystal_brewing_stand.json │ │ │ │ ├── cyan_dye_from_aether_cattails.json │ │ │ │ ├── cyan_dye_from_tall_aether_cattails.json │ │ │ │ ├── holystone_pillar.json │ │ │ │ ├── holystone_pillar_down.json │ │ │ │ ├── holystone_pillar_up.json │ │ │ │ ├── holystone_tile_wall.json │ │ │ │ ├── holystone_tiles.json │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ ├── mossy_holystone.json │ │ │ │ ├── mossy_holystone_brick_wall.json │ │ │ │ ├── mossy_holystone_bricks.json │ │ │ │ ├── mossy_holystone_bricks_from_mossy.json │ │ │ │ ├── mossy_holystone_tile_wall.json │ │ │ │ ├── mossy_holystone_tiles.json │ │ │ │ ├── mossy_holystone_tiles_from_mossy.json │ │ │ │ ├── mossy_stone_bricks.json │ │ │ │ ├── muddy_yagroot_roots.json │ │ │ │ ├── nimbus_wall.json │ │ │ │ ├── nimbus_wall_from_nimbus_stone_stonecutting.json │ │ │ │ ├── orange_dye_from_golden_aspess.json │ │ │ │ ├── orange_dye_from_golden_flower.json │ │ │ │ ├── packed_aether_mud.json │ │ │ │ ├── pink_dye_from_aerlavender.json │ │ │ │ ├── pink_dye_from_tall_aerlavender.json │ │ │ │ ├── polished_aseterite.json │ │ │ │ ├── polished_aseterite_wall.json │ │ │ │ ├── polished_clorite.json │ │ │ │ ├── polished_clorite_wall.json │ │ │ │ ├── purple_dye_from_echaisy.json │ │ │ │ ├── purple_dye_from_radiant_orchid.json │ │ │ │ ├── raw_clorite.json │ │ │ │ ├── raw_clorite_wall.json │ │ │ │ ├── red_dye_from_sky_tulips.json │ │ │ │ ├── roseroot_fence.json │ │ │ │ ├── roseroot_hanging_sign.json │ │ │ │ ├── roseroot_sign.json │ │ │ │ ├── skyjade_block_from_skyjade.json │ │ │ │ ├── skyjade_chain_from_skyjade_nuggets.json │ │ │ │ ├── skyjade_from_skyjade_block.json │ │ │ │ ├── skyjade_from_skyjade_nuggets.json │ │ │ │ ├── skyjade_lantern_from_skyjade_nuggets.json │ │ │ │ ├── skyjade_nugget.json │ │ │ │ ├── skyroot_crafting_table.json │ │ │ │ ├── squall_block_from_squall.json │ │ │ │ ├── squall_from_squall_block.json │ │ │ │ ├── stratus_block_from_stratus.json │ │ │ │ ├── stratus_from_stratus_block.json │ │ │ │ ├── stratus_ingot.json │ │ │ │ ├── sunroot_fence.json │ │ │ │ ├── sunroot_hanging_sign.json │ │ │ │ ├── sunroot_sign.json │ │ │ │ ├── white_dye_from_enchanted_blossom.json │ │ │ │ ├── yagroot_fence.json │ │ │ │ ├── yagroot_hanging_sign.json │ │ │ │ └── yagroot_sign.json │ │ │ │ ├── food │ │ │ │ ├── blue_squash_from_slices.json │ │ │ │ ├── cake.json │ │ │ │ ├── cooked_aerglow_fish.json │ │ │ │ ├── cooked_aerglow_fish_from_smoker.json │ │ │ │ ├── cooked_quail.json │ │ │ │ ├── cooked_quail_from_smoker.json │ │ │ │ ├── green_squash_from_slices.json │ │ │ │ ├── pumpkin_pie.json │ │ │ │ ├── purple_squash_from_slices.json │ │ │ │ ├── seeds_from_squash_slice.json │ │ │ │ ├── slice_from_blue_squash.json │ │ │ │ ├── slice_from_green_squash.json │ │ │ │ └── slice_from_purple_squash.json │ │ │ │ ├── misc │ │ │ │ ├── a_moring_wish_enchanting.json │ │ │ │ ├── antidote_enchanting.json │ │ │ │ ├── blue_aercloud_from_blue_aercloud_mushroom_blocks.json │ │ │ │ ├── cold_aercloud_from_aercloud_roots.json │ │ │ │ ├── combiner.json │ │ │ │ ├── glowing_spores.json │ │ │ │ ├── golden_aercloud_from_pink_aercloud_mushroom_blocks.json │ │ │ │ ├── golden_berries_freezing.json │ │ │ │ ├── golden_swet_ball.json │ │ │ │ ├── iron_remedy_bucket_enchanting.json │ │ │ │ ├── nabooru_enchanting.json │ │ │ │ ├── raw_clorite_enchanting.json │ │ │ │ ├── skjyade_from_blasting.json │ │ │ │ ├── skyjade.json │ │ │ │ ├── squall_plate_from_smelting.json │ │ │ │ ├── squash_seeds_enchanting.json │ │ │ │ ├── stormforged_smithing_template.json │ │ │ │ ├── stormforged_smithing_template_from_gravitite.json │ │ │ │ ├── stratus_smithing_template.json │ │ │ │ └── stratus_smithing_template_from_gravitite.json │ │ │ │ ├── redstone │ │ │ │ ├── conberry_button.json │ │ │ │ ├── conberry_door.json │ │ │ │ ├── conberry_fence_gate.json │ │ │ │ ├── conberry_pressure_plate.json │ │ │ │ ├── conberry_trapdoor.json │ │ │ │ ├── cruderoot_button.json │ │ │ │ ├── cruderoot_door.json │ │ │ │ ├── cruderoot_fence_gate.json │ │ │ │ ├── cruderoot_pressure_plate.json │ │ │ │ ├── cruderoot_trapdoor.json │ │ │ │ ├── roseroot_button.json │ │ │ │ ├── roseroot_door.json │ │ │ │ ├── roseroot_fence_gate.json │ │ │ │ ├── roseroot_pressure_plate.json │ │ │ │ ├── roseroot_trapdoor.json │ │ │ │ ├── sunroot_button.json │ │ │ │ ├── sunroot_door.json │ │ │ │ ├── sunroot_fence_gate.json │ │ │ │ ├── sunroot_pressure_plate.json │ │ │ │ ├── sunroot_trapdoor.json │ │ │ │ ├── yagroot_button.json │ │ │ │ ├── yagroot_door.json │ │ │ │ ├── yagroot_fence_gate.json │ │ │ │ ├── yagroot_pressure_plate.json │ │ │ │ └── yagroot_trapdoor.json │ │ │ │ ├── tools │ │ │ │ ├── skyjade_axe.json │ │ │ │ ├── skyjade_hoe.json │ │ │ │ ├── skyjade_pickaxe.json │ │ │ │ └── skyjade_shovel.json │ │ │ │ └── transportation │ │ │ │ ├── conberry_boat.json │ │ │ │ ├── conberry_chest_boat.json │ │ │ │ ├── cruderoot_boat.json │ │ │ │ ├── cruderoot_chest_boat.json │ │ │ │ ├── roseroot_boat.json │ │ │ │ ├── roseroot_chest_boat.json │ │ │ │ ├── sunroot_boat.json │ │ │ │ ├── sunroot_chest_boat.json │ │ │ │ ├── yagroot_boat.json │ │ │ │ └── yagroot_chest_boat.json │ │ ├── enchantment │ │ │ └── gloves_reach.json │ │ ├── jukebox_song │ │ │ ├── a_morning_wish.json │ │ │ ├── above_the_rain.json │ │ │ ├── atta.json │ │ │ ├── cyclone.json │ │ │ ├── faent.json │ │ │ ├── himininn.json │ │ │ └── nabooru.json │ │ ├── loot_modifiers │ │ │ ├── bronze_loot_reward_modifiers.json │ │ │ ├── fish_aether.json │ │ │ ├── gold_loot_modifiers.json │ │ │ ├── gold_loot_stratus_upgrade.json │ │ │ ├── halloween_loot_modifiers.json │ │ │ ├── silver_loot_modifiers.json │ │ │ ├── silver_loot_reward_modifiers.json │ │ │ └── stormforged_upgrade_treasure.json │ │ ├── loot_table │ │ │ ├── blocks │ │ │ │ ├── aercloud_grass_block.json │ │ │ │ ├── aercloud_root_carpet.json │ │ │ │ ├── aercloud_roots.json │ │ │ │ ├── aerglow_blossom_block.json │ │ │ │ ├── aerlavender.json │ │ │ │ ├── aersmog.json │ │ │ │ ├── aerwhale_totem.json │ │ │ │ ├── aether_cattails.json │ │ │ │ ├── aether_coarse_dirt.json │ │ │ │ ├── aether_moss_block.json │ │ │ │ ├── aether_moss_carpet.json │ │ │ │ ├── aether_mud.json │ │ │ │ ├── aether_mud_bricks.json │ │ │ │ ├── aether_mud_bricks_slab.json │ │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ │ ├── aether_mud_bricks_wall.json │ │ │ │ ├── ambrosium_tiki_torch.json │ │ │ │ ├── aseterite.json │ │ │ │ ├── aseterite_bricks.json │ │ │ │ ├── aseterite_bricks_slab.json │ │ │ │ ├── aseterite_bricks_stairs.json │ │ │ │ ├── aseterite_bricks_wall.json │ │ │ │ ├── aseterite_slab.json │ │ │ │ ├── aseterite_stairs.json │ │ │ │ ├── aseterite_wall.json │ │ │ │ ├── attached_squash_stem.json │ │ │ │ ├── big_holystone_bricks.json │ │ │ │ ├── big_holystone_bricks_slab.json │ │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ │ ├── big_holystone_bricks_wall.json │ │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ │ ├── blightmoss_holystone_brick_wall.json │ │ │ │ ├── blightmoss_holystone_bricks.json │ │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ │ ├── blightmoss_holystone_tile_wall.json │ │ │ │ ├── blightmoss_holystone_tiles.json │ │ │ │ ├── blue_aercloud_mushroom_block.json │ │ │ │ ├── blue_aercloud_mushrooms.json │ │ │ │ ├── blue_roseroot_leaves.json │ │ │ │ ├── blue_roseroot_sapling.json │ │ │ │ ├── blue_squash.json │ │ │ │ ├── boss_doorway_light_nimbus_pillar.json │ │ │ │ ├── boss_doorway_light_nimbus_stone.json │ │ │ │ ├── boss_doorway_nimbus_pillar.json │ │ │ │ ├── boss_doorway_nimbus_stone.json │ │ │ │ ├── carved_blue_squash.json │ │ │ │ ├── carved_green_squash.json │ │ │ │ ├── carved_purple_squash.json │ │ │ │ ├── chiseled_holystone.json │ │ │ │ ├── chromatic_aercloud.json │ │ │ │ ├── clorite.json │ │ │ │ ├── clorite_pillar.json │ │ │ │ ├── clorite_slab.json │ │ │ │ ├── clorite_stairs.json │ │ │ │ ├── clorite_wall.json │ │ │ │ ├── cloudbloom_carpet.json │ │ │ │ ├── cobbled_aseterite.json │ │ │ │ ├── cobbled_aseterite_slab.json │ │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ │ ├── cobbled_aseterite_wall.json │ │ │ │ ├── combiner.json │ │ │ │ ├── conberry_button.json │ │ │ │ ├── conberry_door.json │ │ │ │ ├── conberry_fence.json │ │ │ │ ├── conberry_fence_gate.json │ │ │ │ ├── conberry_hanging_sign.json │ │ │ │ ├── conberry_leaves.json │ │ │ │ ├── conberry_log.json │ │ │ │ ├── conberry_log_wall.json │ │ │ │ ├── conberry_planks.json │ │ │ │ ├── conberry_pressure_plate.json │ │ │ │ ├── conberry_sapling.json │ │ │ │ ├── conberry_sign.json │ │ │ │ ├── conberry_slab.json │ │ │ │ ├── conberry_stairs.json │ │ │ │ ├── conberry_trapdoor.json │ │ │ │ ├── conberry_wall.json │ │ │ │ ├── conberry_wall_hanging_sign.json │ │ │ │ ├── conberry_wall_sign.json │ │ │ │ ├── conberry_wood.json │ │ │ │ ├── cruderoot_button.json │ │ │ │ ├── cruderoot_door.json │ │ │ │ ├── cruderoot_fence.json │ │ │ │ ├── cruderoot_fence_gate.json │ │ │ │ ├── cruderoot_hanging_sign.json │ │ │ │ ├── cruderoot_leaves.json │ │ │ │ ├── cruderoot_log.json │ │ │ │ ├── cruderoot_log_wall.json │ │ │ │ ├── cruderoot_planks.json │ │ │ │ ├── cruderoot_pressure_plate.json │ │ │ │ ├── cruderoot_sapling.json │ │ │ │ ├── cruderoot_sign.json │ │ │ │ ├── cruderoot_slab.json │ │ │ │ ├── cruderoot_stairs.json │ │ │ │ ├── cruderoot_trapdoor.json │ │ │ │ ├── cruderoot_wall.json │ │ │ │ ├── cruderoot_wall_hanging_sign.json │ │ │ │ ├── cruderoot_wall_sign.json │ │ │ │ ├── cruderoot_wood.json │ │ │ │ ├── echaisy.json │ │ │ │ ├── enchanted_blossom.json │ │ │ │ ├── feather_grass.json │ │ │ │ ├── flowering_blue_roseroot_leaves.json │ │ │ │ ├── flowering_roseroot_leaves.json │ │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ │ ├── gilded_holystone_brick_wall.json │ │ │ │ ├── gilded_holystone_bricks.json │ │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ │ ├── gilded_holystone_tile_wall.json │ │ │ │ ├── gilded_holystone_tiles.json │ │ │ │ ├── glowing_spores.json │ │ │ │ ├── glowing_vine.json │ │ │ │ ├── golden_aspess.json │ │ │ │ ├── golden_flower.json │ │ │ │ ├── golden_heights_dirt_path.json │ │ │ │ ├── golden_heights_grass_block.json │ │ │ │ ├── golden_vines.json │ │ │ │ ├── golden_vines_plant.json │ │ │ │ ├── green_squash.json │ │ │ │ ├── highstone.json │ │ │ │ ├── holystone_pillar.json │ │ │ │ ├── holystone_pillar_down.json │ │ │ │ ├── holystone_pillar_up.json │ │ │ │ ├── holystone_tile_slab.json │ │ │ │ ├── holystone_tile_stairs.json │ │ │ │ ├── holystone_tile_wall.json │ │ │ │ ├── holystone_tiles.json │ │ │ │ ├── iaspove.json │ │ │ │ ├── light_nimbus_pillar.json │ │ │ │ ├── light_nimbus_stone.json │ │ │ │ ├── lightcap_mushroom_block.json │ │ │ │ ├── lightcap_mushrooms.json │ │ │ │ ├── locked_light_nimbus_pillar.json │ │ │ │ ├── locked_light_nimbus_stone.json │ │ │ │ ├── locked_nimbus_pillar.json │ │ │ │ ├── locked_nimbus_stone.json │ │ │ │ ├── locked_skyroot_planks.json │ │ │ │ ├── medium_golden_grass.json │ │ │ │ ├── mini_golden_grass.json │ │ │ │ ├── moa_totem.json │ │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ │ ├── mossy_holystone_brick_wall.json │ │ │ │ ├── mossy_holystone_bricks.json │ │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ │ ├── mossy_holystone_tile_wall.json │ │ │ │ ├── mossy_holystone_tiles.json │ │ │ │ ├── muddy_yagroot_roots.json │ │ │ │ ├── nimbus_pillar.json │ │ │ │ ├── nimbus_slab.json │ │ │ │ ├── nimbus_stairs.json │ │ │ │ ├── nimbus_stone.json │ │ │ │ ├── nimbus_wall.json │ │ │ │ ├── packed_aether_mud.json │ │ │ │ ├── pink_aercloud_mushroom_block.json │ │ │ │ ├── pink_aercloud_mushrooms.json │ │ │ │ ├── poison_cauldron.json │ │ │ │ ├── polished_aseterite.json │ │ │ │ ├── polished_aseterite_slab.json │ │ │ │ ├── polished_aseterite_stairs.json │ │ │ │ ├── polished_aseterite_wall.json │ │ │ │ ├── polished_clorite.json │ │ │ │ ├── polished_clorite_slab.json │ │ │ │ ├── polished_clorite_stairs.json │ │ │ │ ├── polished_clorite_wall.json │ │ │ │ ├── potted_aerlavender.json │ │ │ │ ├── potted_aether_cattails.json │ │ │ │ ├── potted_blue_roseroot_sapling.json │ │ │ │ ├── potted_conberry_sapling.json │ │ │ │ ├── potted_cruderoot_sapling.json │ │ │ │ ├── potted_echaisy.json │ │ │ │ ├── potted_enchanted_blossom.json │ │ │ │ ├── potted_golden_aspess.json │ │ │ │ ├── potted_iaspove.json │ │ │ │ ├── potted_radiant_orchid.json │ │ │ │ ├── potted_roseroot_sapling.json │ │ │ │ ├── potted_sky_tulips.json │ │ │ │ ├── potted_sunroot_sapling.json │ │ │ │ ├── potted_tall_aerlavender.json │ │ │ │ ├── potted_yagroot_sapling.json │ │ │ │ ├── purple_squash.json │ │ │ │ ├── radiant_orchid.json │ │ │ │ ├── rain_aercloud.json │ │ │ │ ├── raw_clorite.json │ │ │ │ ├── raw_clorite_slab.json │ │ │ │ ├── raw_clorite_stairs.json │ │ │ │ ├── raw_clorite_wall.json │ │ │ │ ├── roseroot_button.json │ │ │ │ ├── roseroot_door.json │ │ │ │ ├── roseroot_fence.json │ │ │ │ ├── roseroot_fence_gate.json │ │ │ │ ├── roseroot_hanging_sign.json │ │ │ │ ├── roseroot_leaves.json │ │ │ │ ├── roseroot_log.json │ │ │ │ ├── roseroot_log_wall.json │ │ │ │ ├── roseroot_planks.json │ │ │ │ ├── roseroot_pressure_plate.json │ │ │ │ ├── roseroot_sapling.json │ │ │ │ ├── roseroot_sign.json │ │ │ │ ├── roseroot_slab.json │ │ │ │ ├── roseroot_stairs.json │ │ │ │ ├── roseroot_trapdoor.json │ │ │ │ ├── roseroot_wall.json │ │ │ │ ├── roseroot_wall_hanging_sign.json │ │ │ │ ├── roseroot_wall_sign.json │ │ │ │ ├── roseroot_wood.json │ │ │ │ ├── rotten_roseroot_log.json │ │ │ │ ├── short_golden_grass.json │ │ │ │ ├── sky_tulips.json │ │ │ │ ├── skyjade_block.json │ │ │ │ ├── skyjade_chain.json │ │ │ │ ├── skyjade_lantern.json │ │ │ │ ├── skyjade_ore.json │ │ │ │ ├── squall_block.json │ │ │ │ ├── squash_stem.json │ │ │ │ ├── sterling_aercloud.json │ │ │ │ ├── stratus_block.json │ │ │ │ ├── stripped_conberry_log.json │ │ │ │ ├── stripped_conberry_log_wall.json │ │ │ │ ├── stripped_conberry_wall.json │ │ │ │ ├── stripped_conberry_wood.json │ │ │ │ ├── stripped_cruderoot_log.json │ │ │ │ ├── stripped_cruderoot_log_wall.json │ │ │ │ ├── stripped_cruderoot_wall.json │ │ │ │ ├── stripped_cruderoot_wood.json │ │ │ │ ├── stripped_roseroot_log.json │ │ │ │ ├── stripped_roseroot_log_wall.json │ │ │ │ ├── stripped_roseroot_wall.json │ │ │ │ ├── stripped_roseroot_wood.json │ │ │ │ ├── stripped_sunroot_log.json │ │ │ │ ├── stripped_sunroot_log_wall.json │ │ │ │ ├── stripped_sunroot_wall.json │ │ │ │ ├── stripped_sunroot_wood.json │ │ │ │ ├── stripped_yagroot_log.json │ │ │ │ ├── stripped_yagroot_log_wall.json │ │ │ │ ├── stripped_yagroot_wall.json │ │ │ │ ├── stripped_yagroot_wood.json │ │ │ │ ├── sunroot_button.json │ │ │ │ ├── sunroot_door.json │ │ │ │ ├── sunroot_fence.json │ │ │ │ ├── sunroot_fence_gate.json │ │ │ │ ├── sunroot_hanger.json │ │ │ │ ├── sunroot_hanging_sign.json │ │ │ │ ├── sunroot_leaves.json │ │ │ │ ├── sunroot_log.json │ │ │ │ ├── sunroot_log_wall.json │ │ │ │ ├── sunroot_planks.json │ │ │ │ ├── sunroot_pressure_plate.json │ │ │ │ ├── sunroot_sapling.json │ │ │ │ ├── sunroot_sign.json │ │ │ │ ├── sunroot_slab.json │ │ │ │ ├── sunroot_stairs.json │ │ │ │ ├── sunroot_trapdoor.json │ │ │ │ ├── sunroot_wall.json │ │ │ │ ├── sunroot_wall_hanging_sign.json │ │ │ │ ├── sunroot_wall_sign.json │ │ │ │ ├── sunroot_wood.json │ │ │ │ ├── tall_aerlavender.json │ │ │ │ ├── tall_aether_cattails.json │ │ │ │ ├── tall_alien_plant.json │ │ │ │ ├── tall_feather_grass.json │ │ │ │ ├── tall_glowing_grass.json │ │ │ │ ├── tall_golden_grass.json │ │ │ │ ├── trapped_light_nimbus_pillar.json │ │ │ │ ├── trapped_light_nimbus_stone.json │ │ │ │ ├── trapped_nimbus_pillar.json │ │ │ │ ├── trapped_nimbus_stone.json │ │ │ │ ├── trapped_skyroot_planks.json │ │ │ │ ├── treasure_doorway_light_nimbus_pillar.json │ │ │ │ ├── treasure_doorway_light_nimbus_stone.json │ │ │ │ ├── treasure_doorway_nimbus_pillar.json │ │ │ │ ├── treasure_doorway_nimbus_stone.json │ │ │ │ ├── virulent_quicksand.json │ │ │ │ ├── yagroot_button.json │ │ │ │ ├── yagroot_door.json │ │ │ │ ├── yagroot_fence.json │ │ │ │ ├── yagroot_fence_gate.json │ │ │ │ ├── yagroot_hanging_sign.json │ │ │ │ ├── yagroot_leaves.json │ │ │ │ ├── yagroot_log.json │ │ │ │ ├── yagroot_log_wall.json │ │ │ │ ├── yagroot_planks.json │ │ │ │ ├── yagroot_pressure_plate.json │ │ │ │ ├── yagroot_roots.json │ │ │ │ ├── yagroot_sapling.json │ │ │ │ ├── yagroot_sign.json │ │ │ │ ├── yagroot_slab.json │ │ │ │ ├── yagroot_stairs.json │ │ │ │ ├── yagroot_trapdoor.json │ │ │ │ ├── yagroot_vine.json │ │ │ │ ├── yagroot_wall.json │ │ │ │ ├── yagroot_wall_hanging_sign.json │ │ │ │ ├── yagroot_wall_sign.json │ │ │ │ ├── yagroot_wood.json │ │ │ │ └── zephyr_totem.json │ │ │ └── chests │ │ │ │ └── dungeon │ │ │ │ ├── altar_camp.json │ │ │ │ └── brass │ │ │ │ ├── brass_dungeon.json │ │ │ │ ├── brass_dungeon_combinder_loot.json │ │ │ │ ├── brass_dungeon_combinder_loot_sub_1.json │ │ │ │ ├── brass_dungeon_combinder_loot_sub_2.json │ │ │ │ ├── brass_dungeon_combinder_loot_sub_3.json │ │ │ │ ├── brass_dungeon_disc.json │ │ │ │ ├── brass_dungeon_fodder.json │ │ │ │ ├── brass_dungeon_gummies.json │ │ │ │ ├── brass_dungeon_loot.json │ │ │ │ ├── brass_dungeon_reward.json │ │ │ │ ├── brass_dungeon_stormforged.json │ │ │ │ ├── brass_dungeon_trash.json │ │ │ │ └── brass_dungeon_treasure.json │ │ ├── recipe │ │ │ ├── a_moring_wish_enchanting.json │ │ │ ├── aerglow_blossom_block.json │ │ │ ├── aether_coarse_dirt.json │ │ │ ├── aether_moss_carpet.json │ │ │ ├── aether_mud_bricks.json │ │ │ ├── aether_mud_bricks_slab.json │ │ │ ├── aether_mud_bricks_slab_from_aether_mud_bricks_stonecutting.json │ │ │ ├── aether_mud_bricks_stairs.json │ │ │ ├── aether_mud_bricks_stairs_from_aether_mud_bricks_stonecutting.json │ │ │ ├── aether_mud_bricks_wall.json │ │ │ ├── aether_mud_bricks_wall_from_aether_mud_bricks_stonecutting.json │ │ │ ├── afterburner.json │ │ │ ├── ambrosium_tiki_torch.json │ │ │ ├── antidote.json │ │ │ ├── antidote_enchanting.json │ │ │ ├── aseterite.json │ │ │ ├── aseterite_bricks.json │ │ │ ├── aseterite_bricks_from_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_from_polished_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_slab.json │ │ │ ├── aseterite_bricks_slab_from_aseterite_bricks_stonecutting.json │ │ │ ├── aseterite_bricks_slab_from_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_slab_from_polished_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_stairs.json │ │ │ ├── aseterite_bricks_stairs_from_aseterite_bricks_stonecutting.json │ │ │ ├── aseterite_bricks_stairs_from_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_stairs_from_polished_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_wall.json │ │ │ ├── aseterite_bricks_wall_from_aseterite_bricks_stonecutting.json │ │ │ ├── aseterite_bricks_wall_from_aseterite_stonecutting.json │ │ │ ├── aseterite_bricks_wall_from_polished_aseterite_stonecutting.json │ │ │ ├── aseterite_slab.json │ │ │ ├── aseterite_slab_from_aseterite_stonecutting.json │ │ │ ├── aseterite_stairs.json │ │ │ ├── aseterite_stairs_from_aseterite_stonecutting.json │ │ │ ├── aseterite_wall.json │ │ │ ├── aseterite_wall_from_aseterite_stonecutting.json │ │ │ ├── big_holystone_bricks.json │ │ │ ├── big_holystone_bricks_from_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_from_holystone_stonecutting.json │ │ │ ├── big_holystone_bricks_from_holystone_tiles_stonecutting.json │ │ │ ├── big_holystone_bricks_slab.json │ │ │ ├── big_holystone_bricks_slab_from_big_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_slab_from_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_slab_from_holystone_stonecutting.json │ │ │ ├── big_holystone_bricks_slab_from_holystone_tiles_stonecutting.json │ │ │ ├── big_holystone_bricks_stairs.json │ │ │ ├── big_holystone_bricks_stairs_from_big_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_stairs_from_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_stairs_from_holystone_stonecutting.json │ │ │ ├── big_holystone_bricks_stairs_from_holystone_tiles_stonecutting.json │ │ │ ├── big_holystone_bricks_wall.json │ │ │ ├── big_holystone_bricks_wall_from_big_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_wall_from_holystone_bricks_stonecutting.json │ │ │ ├── big_holystone_bricks_wall_from_holystone_stonecutting.json │ │ │ ├── big_holystone_bricks_wall_from_holystone_tiles_stonecutting.json │ │ │ ├── blue_aercloud_from_blue_aercloud_mushroom_blocks.json │ │ │ ├── blue_dye_from_iaspove.json │ │ │ ├── blue_squash_from_slices.json │ │ │ ├── blueberry_from_poison.json │ │ │ ├── cake.json │ │ │ ├── chiseled_holystone.json │ │ │ ├── chiseled_holystone_from_holystone_stonecutting.json │ │ │ ├── clorite_pillar.json │ │ │ ├── clorite_pillar_from_clorite_stonecutting.json │ │ │ ├── clorite_slab.json │ │ │ ├── clorite_slab_from_clorite_stonecutting.json │ │ │ ├── clorite_stairs.json │ │ │ ├── clorite_stairs_from_clorite_stonecutting.json │ │ │ ├── clorite_wall.json │ │ │ ├── clorite_wall_from_clorite_stonecutting.json │ │ │ ├── cloudbloom_carpet.json │ │ │ ├── cobbled_aseterite_slab.json │ │ │ ├── cobbled_aseterite_slab_from_cobbled_aseterite_stonecutting.json │ │ │ ├── cobbled_aseterite_stairs.json │ │ │ ├── cobbled_aseterite_stairs_from_cobbled_aseterite_stonecutting.json │ │ │ ├── cobbled_aseterite_wall.json │ │ │ ├── cobbled_aseterite_wall_from_cobbled_aseterite_stonecutting.json │ │ │ ├── cold_aercloud_from_aercloud_roots.json │ │ │ ├── cold_aercloud_from_golden_aercloud.json │ │ │ ├── combiner.json │ │ │ ├── conberry_boat.json │ │ │ ├── conberry_button.json │ │ │ ├── conberry_chest_boat.json │ │ │ ├── conberry_door.json │ │ │ ├── conberry_fence.json │ │ │ ├── conberry_fence_gate.json │ │ │ ├── conberry_hanging_sign.json │ │ │ ├── conberry_planks.json │ │ │ ├── conberry_pressure_plate.json │ │ │ ├── conberry_sign.json │ │ │ ├── conberry_slab.json │ │ │ ├── conberry_stairs.json │ │ │ ├── conberry_trapdoor.json │ │ │ ├── conberry_wood.json │ │ │ ├── cooked_aerglow_fish.json │ │ │ ├── cooked_aerglow_fish_from_smoker.json │ │ │ ├── cooked_quail.json │ │ │ ├── cooked_quail_from_smoker.json │ │ │ ├── cruderoot_boat.json │ │ │ ├── cruderoot_button.json │ │ │ ├── cruderoot_chest_boat.json │ │ │ ├── cruderoot_door.json │ │ │ ├── cruderoot_fence.json │ │ │ ├── cruderoot_fence_gate.json │ │ │ ├── cruderoot_hanging_sign.json │ │ │ ├── cruderoot_planks.json │ │ │ ├── cruderoot_pressure_plate.json │ │ │ ├── cruderoot_sign.json │ │ │ ├── cruderoot_slab.json │ │ │ ├── cruderoot_stairs.json │ │ │ ├── cruderoot_trapdoor.json │ │ │ ├── cruderoot_wood.json │ │ │ ├── crystal_brewing_stand.json │ │ │ ├── cyan_dye_from_aether_cattails.json │ │ │ ├── cyan_dye_from_tall_aether_cattails.json │ │ │ ├── floaty_scarf_coloring.json │ │ │ ├── glowing_spores.json │ │ │ ├── glowing_tall_grass_from_grass.json │ │ │ ├── glowing_vine_from_vine.json │ │ │ ├── golden_aercloud_from_pink_aercloud_mushroom_blocks.json │ │ │ ├── golden_berries_freezing.json │ │ │ ├── golden_dart_from_poison.json │ │ │ ├── golden_dart_shooter_from_poison.json │ │ │ ├── golden_grass_block_from_aether_dirt.json │ │ │ ├── golden_grass_block_from_aether_grass_block.json │ │ │ ├── golden_swet_ball.json │ │ │ ├── gravitite_ore_from_poison.json │ │ │ ├── gravitite_ring.json │ │ │ ├── green_squash_from_slices.json │ │ │ ├── holystone_from_poison.json │ │ │ ├── holystone_pillar.json │ │ │ ├── holystone_pillar_down.json │ │ │ ├── holystone_pillar_down_from_holystone_stonecutting.json │ │ │ ├── holystone_pillar_from_holystone_stonecutting.json │ │ │ ├── holystone_pillar_up.json │ │ │ ├── holystone_pillar_up_from_holystone_stonecutting.json │ │ │ ├── holystone_tile_slab.json │ │ │ ├── holystone_tile_slab_from_holystone_bricks_stonecutting.json │ │ │ ├── holystone_tile_slab_from_holystone_stonecutting.json │ │ │ ├── holystone_tile_slab_from_holystone_tiles_stonecutting.json │ │ │ ├── holystone_tile_stairs.json │ │ │ ├── holystone_tile_stairs_from_holystone_bricks_stonecutting.json │ │ │ ├── holystone_tile_stairs_from_holystone_stonecutting.json │ │ │ ├── holystone_tile_stairs_from_holystone_tiles_stonecutting.json │ │ │ ├── holystone_tile_wall.json │ │ │ ├── holystone_tile_wall_from_holystone_bricks_stonecutting.json │ │ │ ├── holystone_tile_wall_from_holystone_stonecutting.json │ │ │ ├── holystone_tile_wall_from_holystone_tiles_stonecutting.json │ │ │ ├── holystone_tiles.json │ │ │ ├── holystone_tiles_from_holystone_bricks_stonecutting.json │ │ │ ├── holystone_tiles_from_holystone_stonecutting.json │ │ │ ├── iron_remedy_bucket_enchanting.json │ │ │ ├── light_nimbus_pillar_from_light_nimbus_stone_stonecutting.json │ │ │ ├── light_nimbus_pillar_from_nimbus_pillar_stonecutting.json │ │ │ ├── light_nimbus_pillar_from_nimbus_stone_stonecutting.json │ │ │ ├── light_nimbus_stone_from_light_nimbus_pillar_stonecutting.json │ │ │ ├── light_nimbus_stone_from_nimbus_pillar_stonecutting.json │ │ │ ├── light_nimbus_stone_from_nimbus_stone_stonecutting.json │ │ │ ├── moa_fodder_deep_aether.moa_bonus_jumps.json │ │ │ ├── moa_fodder_minecraft.fire_resistance.json │ │ │ ├── moa_fodder_minecraft.jump_boost.json │ │ │ ├── mossy_cobblestone.json │ │ │ ├── mossy_holystone.json │ │ │ ├── mossy_holystone_brick_slab.json │ │ │ ├── mossy_holystone_brick_slab_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_brick_slab_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_brick_stairs.json │ │ │ ├── mossy_holystone_brick_stairs_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_brick_stairs_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_brick_wall.json │ │ │ ├── mossy_holystone_brick_wall_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_brick_wall_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_bricks.json │ │ │ ├── mossy_holystone_bricks_from_mossy.json │ │ │ ├── mossy_holystone_bricks_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_tile_slab.json │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_tile_slab_from_mossy_holystone_tiles_stonecutting.json │ │ │ ├── mossy_holystone_tile_stairs.json │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_tile_stairs_from_mossy_holystone_tiles_stonecutting.json │ │ │ ├── mossy_holystone_tile_wall.json │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_holystone_tile_wall_from_mossy_holystone_tiles_stonecutting.json │ │ │ ├── mossy_holystone_tiles.json │ │ │ ├── mossy_holystone_tiles_from_mossy.json │ │ │ ├── mossy_holystone_tiles_from_mossy_holystone_bricks_stonecutting.json │ │ │ ├── mossy_holystone_tiles_from_mossy_holystone_stonecutting.json │ │ │ ├── mossy_stone_bricks.json │ │ │ ├── muddy_yagroot_roots.json │ │ │ ├── nabooru_enchanting.json │ │ │ ├── nimbus_pillar_from_light_nimbus_pillar_stonecutting.json │ │ │ ├── nimbus_pillar_from_light_nimbus_stone_stonecutting.json │ │ │ ├── nimbus_pillar_from_nimbus_stone_stonecutting.json │ │ │ ├── nimbus_slab.json │ │ │ ├── nimbus_slab_from_nimbus_stone_stonecutting.json │ │ │ ├── nimbus_stairs.json │ │ │ ├── nimbus_stairs_from_nimbus_stone_stonecutting.json │ │ │ ├── nimbus_stone_from_light_nimbus_pillar_stonecutting.json │ │ │ ├── nimbus_stone_from_light_nimbus_stone_stonecutting.json │ │ │ ├── nimbus_stone_from_nimbus_pillar_stonecutting.json │ │ │ ├── nimbus_wall.json │ │ │ ├── nimbus_wall_from_nimbus_stone_stonecutting.json │ │ │ ├── orange_dye_from_golden_aspess.json │ │ │ ├── orange_dye_from_golden_flower.json │ │ │ ├── packed_aether_mud.json │ │ │ ├── pink_dye_from_aerlavender.json │ │ │ ├── pink_dye_from_tall_aerlavender.json │ │ │ ├── poison_bucket_from_poison.json │ │ │ ├── poison_dart.json │ │ │ ├── poisonous_poison_from_poison.json │ │ │ ├── polished_aseterite.json │ │ │ ├── polished_aseterite_from_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_slab.json │ │ │ ├── polished_aseterite_slab_from_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_slab_from_polished_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_stairs.json │ │ │ ├── polished_aseterite_stairs_from_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_stairs_from_polished_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_wall.json │ │ │ ├── polished_aseterite_wall_from_aseterite_stonecutting.json │ │ │ ├── polished_aseterite_wall_from_polished_aseterite_stonecutting.json │ │ │ ├── polished_clorite.json │ │ │ ├── polished_clorite_from_clorite_stonecutting.json │ │ │ ├── polished_clorite_slab.json │ │ │ ├── polished_clorite_slab_from_clorite_stonecutting.json │ │ │ ├── polished_clorite_slab_from_polished_clorite_stonecutting.json │ │ │ ├── polished_clorite_stairs.json │ │ │ ├── polished_clorite_stairs_from_clorite_stonecutting.json │ │ │ ├── polished_clorite_stairs_from_polished_clorite_stonecutting.json │ │ │ ├── polished_clorite_wall.json │ │ │ ├── polished_clorite_wall_from_clorite_stonecutting.json │ │ │ ├── polished_clorite_wall_from_polished_clorite_stonecutting.json │ │ │ ├── pumpkin_pie.json │ │ │ ├── purple_dye_from_echaisy.json │ │ │ ├── purple_dye_from_radiant_orchid.json │ │ │ ├── purple_squash_from_blue_squash.json │ │ │ ├── purple_squash_from_green_squash.json │ │ │ ├── purple_squash_from_slices.json │ │ │ ├── quicksoil_from_poison.json │ │ │ ├── raw_clorite.json │ │ │ ├── raw_clorite_enchanting.json │ │ │ ├── raw_clorite_from_poison.json │ │ │ ├── raw_clorite_slab.json │ │ │ ├── raw_clorite_slab_from_raw_clorite_stonecutting.json │ │ │ ├── raw_clorite_stairs.json │ │ │ ├── raw_clorite_stairs_from_raw_clorite_stonecutting.json │ │ │ ├── raw_clorite_wall.json │ │ │ ├── raw_clorite_wall_from_raw_clorite_stonecutting.json │ │ │ ├── red_dye_from_sky_tulips.json │ │ │ ├── roseroot_boat.json │ │ │ ├── roseroot_button.json │ │ │ ├── roseroot_chest_boat.json │ │ │ ├── roseroot_door.json │ │ │ ├── roseroot_fence.json │ │ │ ├── roseroot_fence_gate.json │ │ │ ├── roseroot_hanging_sign.json │ │ │ ├── roseroot_planks.json │ │ │ ├── roseroot_pressure_plate.json │ │ │ ├── roseroot_sign.json │ │ │ ├── roseroot_slab.json │ │ │ ├── roseroot_stairs.json │ │ │ ├── roseroot_trapdoor.json │ │ │ ├── roseroot_wood.json │ │ │ ├── seeds_from_squash_slice.json │ │ │ ├── skjyade_from_blasting.json │ │ │ ├── skyjade.json │ │ │ ├── skyjade_axe.json │ │ │ ├── skyjade_axe_repairing.json │ │ │ ├── skyjade_block_from_skyjade.json │ │ │ ├── skyjade_boots.json │ │ │ ├── skyjade_boots_repairing.json │ │ │ ├── skyjade_chain_from_skyjade_nuggets.json │ │ │ ├── skyjade_chestplate.json │ │ │ ├── skyjade_chestplate_repairing.json │ │ │ ├── skyjade_from_skyjade_block.json │ │ │ ├── skyjade_from_skyjade_nuggets.json │ │ │ ├── skyjade_gloves.json │ │ │ ├── skyjade_gloves_repairing.json │ │ │ ├── skyjade_helmet.json │ │ │ ├── skyjade_helmet_repairing.json │ │ │ ├── skyjade_hoe.json │ │ │ ├── skyjade_hoe_repairing.json │ │ │ ├── skyjade_lantern_from_skyjade_nuggets.json │ │ │ ├── skyjade_leggings.json │ │ │ ├── skyjade_leggings_repairing.json │ │ │ ├── skyjade_nugget.json │ │ │ ├── skyjade_pickaxe.json │ │ │ ├── skyjade_pickaxe_repairing.json │ │ │ ├── skyjade_ring.json │ │ │ ├── skyjade_shovel.json │ │ │ ├── skyjade_shovel_repairing.json │ │ │ ├── skyjade_sword.json │ │ │ ├── skyjade_sword_repairing.json │ │ │ ├── skyroot_crafting_table.json │ │ │ ├── skyroot_poison_bucket_from_poison.json │ │ │ ├── slice_from_blue_squash.json │ │ │ ├── slice_from_green_squash.json │ │ │ ├── slice_from_purple_squash.json │ │ │ ├── squall_block_from_squall.json │ │ │ ├── squall_from_squall_block.json │ │ │ ├── squall_plate_from_smelting.json │ │ │ ├── squash_seeds_enchanting.json │ │ │ ├── storm_bow_smithing.json │ │ │ ├── storm_sword_smithing.json │ │ │ ├── stormforged_boots_smithing.json │ │ │ ├── stormforged_chestplate_smithing.json │ │ │ ├── stormforged_gloves_smithing.json │ │ │ ├── stormforged_helmet_smithing.json │ │ │ ├── stormforged_leggings_smithing.json │ │ │ ├── stormforged_smithing_template.json │ │ │ ├── stormforged_smithing_template_from_gravitite.json │ │ │ ├── stratus_axe_repairing.json │ │ │ ├── stratus_axe_smithing.json │ │ │ ├── stratus_block_from_stratus.json │ │ │ ├── stratus_boots_repairing.json │ │ │ ├── stratus_boots_smithing.json │ │ │ ├── stratus_chestplate_repairing.json │ │ │ ├── stratus_chestplate_smithing.json │ │ │ ├── stratus_enchanting.json │ │ │ ├── stratus_from_stratus_block.json │ │ │ ├── stratus_gloves_repairing.json │ │ │ ├── stratus_gloves_smithing.json │ │ │ ├── stratus_helmet_repairing.json │ │ │ ├── stratus_helmet_smithing.json │ │ │ ├── stratus_hoe_repairing.json │ │ │ ├── stratus_hoe_smithing.json │ │ │ ├── stratus_ingot.json │ │ │ ├── stratus_leggings_repairing.json │ │ │ ├── stratus_leggings_smithing.json │ │ │ ├── stratus_pickaxe_repairing.json │ │ │ ├── stratus_pickaxe_smithing.json │ │ │ ├── stratus_ring_smithing.json │ │ │ ├── stratus_shovel_repairing.json │ │ │ ├── stratus_shovel_smithing.json │ │ │ ├── stratus_smithing_template.json │ │ │ ├── stratus_smithing_template_from_gravitite.json │ │ │ ├── stratus_sword_repairing.json │ │ │ ├── stratus_sword_smithing.json │ │ │ ├── stripped_conberry_wood.json │ │ │ ├── stripped_cruderoot_wood.json │ │ │ ├── stripped_roseroot_wood.json │ │ │ ├── stripped_sunroot_wood.json │ │ │ ├── stripped_yagroot_wood.json │ │ │ ├── sunroot_boat.json │ │ │ ├── sunroot_button.json │ │ │ ├── sunroot_chest_boat.json │ │ │ ├── sunroot_door.json │ │ │ ├── sunroot_fence.json │ │ │ ├── sunroot_fence_gate.json │ │ │ ├── sunroot_hanging_sign.json │ │ │ ├── sunroot_planks.json │ │ │ ├── sunroot_pressure_plate.json │ │ │ ├── sunroot_sign.json │ │ │ ├── sunroot_slab.json │ │ │ ├── sunroot_stairs.json │ │ │ ├── sunroot_trapdoor.json │ │ │ ├── sunroot_wood.json │ │ │ ├── white_dye_from_enchanted_blossom.json │ │ │ ├── yagroot_boat.json │ │ │ ├── yagroot_button.json │ │ │ ├── yagroot_chest_boat.json │ │ │ ├── yagroot_door.json │ │ │ ├── yagroot_fence.json │ │ │ ├── yagroot_fence_gate.json │ │ │ ├── yagroot_hanging_sign.json │ │ │ ├── yagroot_planks.json │ │ │ ├── yagroot_pressure_plate.json │ │ │ ├── yagroot_sign.json │ │ │ ├── yagroot_slab.json │ │ │ ├── yagroot_stairs.json │ │ │ ├── yagroot_trapdoor.json │ │ │ └── yagroot_wood.json │ │ ├── tags │ │ │ ├── block │ │ │ │ ├── can_golden_vines_survive_on.json │ │ │ │ ├── conberry_logs.json │ │ │ │ ├── cruderoot_logs.json │ │ │ │ ├── has_glowing_spores.json │ │ │ │ ├── nimbus_blocks.json │ │ │ │ ├── roseroot_logs.json │ │ │ │ ├── sterling_aercloud_replaceable.json │ │ │ │ ├── sunroot_logs.json │ │ │ │ ├── totems.json │ │ │ │ └── yagroot_logs.json │ │ │ ├── damage_type │ │ │ │ └── eots_immune.json │ │ │ ├── entity_type │ │ │ │ ├── friendly_wind_charge_blacklist.json │ │ │ │ ├── slider_slam_blacklist.json │ │ │ │ ├── sterling_aercloud_blacklist.json │ │ │ │ └── wind_charge_blacklist.json │ │ │ ├── fluid │ │ │ │ └── poison.json │ │ │ ├── item │ │ │ │ ├── brass_dungeon_loot.json │ │ │ │ ├── conberry_logs.json │ │ │ │ ├── crafts_conberry_planks.json │ │ │ │ ├── crafts_cruderoot_planks.json │ │ │ │ ├── crafts_mossy_blocks.json │ │ │ │ ├── crafts_roseroot_planks.json │ │ │ │ ├── crafts_sunroot_planks.json │ │ │ │ ├── crafts_yagroot_planks.json │ │ │ │ ├── cruderoot_logs.json │ │ │ │ ├── flawless_items.json │ │ │ │ ├── is_golden_swet_ball.json │ │ │ │ ├── nimbus_blocks.json │ │ │ │ ├── poison_bucket.json │ │ │ │ ├── quail_food.json │ │ │ │ ├── roseroot_logs.json │ │ │ │ ├── skyjade_armor.json │ │ │ │ ├── skyjade_repairing.json │ │ │ │ ├── squash_slice.json │ │ │ │ ├── storm_repairing.json │ │ │ │ ├── stratus_repairing.json │ │ │ │ ├── sunroot_logs.json │ │ │ │ └── yagroot_logs.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ ├── can_quail_spawn.json │ │ │ │ ├── has_brass_dungeon.json │ │ │ │ ├── is_cloud.json │ │ │ │ └── is_not_swamp.json │ │ ├── trim_material │ │ │ └── stormforged.json │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ ├── aercloud_cloud.json │ │ │ ├── aercloud_cloud_overgrown.json │ │ │ ├── aercloud_grass.json │ │ │ ├── aercloud_lake.json │ │ │ ├── aercloud_rain_cloud.json │ │ │ ├── aercloud_roots.json │ │ │ ├── aercloud_roots_carpet.json │ │ │ ├── aercloud_tree.json │ │ │ ├── aerlavender_patch.json │ │ │ ├── aether_cattails_patch.json │ │ │ ├── aether_coarse_dirt.json │ │ │ ├── aether_coarse_dirt_patch.json │ │ │ ├── aether_moss_patch_bonemeal.json │ │ │ ├── aether_moss_vegetation.json │ │ │ ├── aseterite.json │ │ │ ├── blue_roseroot_tree_large.json │ │ │ ├── blue_roseroot_tree_small.json │ │ │ ├── blue_roseroot_trees_placement.json │ │ │ ├── clorite.json │ │ │ ├── conberry_tree.json │ │ │ ├── cruderoot_tree.json │ │ │ ├── echaisy.json │ │ │ ├── empty_fallen_aerglow_tree.json │ │ │ ├── fallen_aerglow_tree.json │ │ │ ├── glowing_flowers.json │ │ │ ├── golden_aspess.json │ │ │ ├── golden_grass_block_bonemeal_patch.json │ │ │ ├── golden_grass_patch.json │ │ │ ├── golden_grove_grass_patch.json │ │ │ ├── golden_vines_patch.json │ │ │ ├── huge_blue_aercloud_mushroom.json │ │ │ ├── huge_lightcap_mushroom.json │ │ │ ├── huge_pink_aercloud_mushroom.json │ │ │ ├── luminescent_large_skyroot_forest_tree.json │ │ │ ├── luminescent_skyroot_forest_grass.json │ │ │ ├── luminescent_skyroot_forest_trees.json │ │ │ ├── luminescent_skyroot_forest_vegetation.json │ │ │ ├── luminescent_small_skyroot_forest_tree.json │ │ │ ├── more_skyjade_ore.json │ │ │ ├── mystic_roseroot_forest_flowers.json │ │ │ ├── overgrown_cloud_mushroom_trees.json │ │ │ ├── patch_squash.json │ │ │ ├── poison_lake.json │ │ │ ├── poison_spring.json │ │ │ ├── roseroot_and_blue_roseroot_trees_placement.json │ │ │ ├── roseroot_forest_flowers.json │ │ │ ├── roseroot_forest_grass.json │ │ │ ├── roseroot_tree_large.json │ │ │ ├── roseroot_tree_small.json │ │ │ ├── roseroot_trees_placement.json │ │ │ ├── sky_tulips.json │ │ │ ├── skyjade_ore.json │ │ │ ├── sterling_aercloud.json │ │ │ ├── sunroot_and_conberry_trees_placement.json │ │ │ ├── sunroot_tree.json │ │ │ ├── totem.json │ │ │ ├── virulent_quicksand_patch.json │ │ │ ├── yagroot_and_cruderoot_trees_placement.json │ │ │ └── yagroot_tree.json │ │ │ ├── placed_feature │ │ │ ├── aercloud_cloud.json │ │ │ ├── aercloud_cloud_overgrown.json │ │ │ ├── aercloud_grass.json │ │ │ ├── aercloud_lake.json │ │ │ ├── aercloud_rain_cloud.json │ │ │ ├── aercloud_roots.json │ │ │ ├── aercloud_roots_carpet.json │ │ │ ├── aercloud_trees.json │ │ │ ├── aerglow_forest_flowers.json │ │ │ ├── aerglow_forest_grass.json │ │ │ ├── aerglow_forest_mushroom_placement.json │ │ │ ├── aerglow_forest_trees_placement.json │ │ │ ├── aerlavender_patch.json │ │ │ ├── aether_cattail_patch.json │ │ │ ├── aether_coarse_dirt_patch.json │ │ │ ├── aether_moss.json │ │ │ ├── aseterite.json │ │ │ ├── blue_aerglow_forest_trees_placement.json │ │ │ ├── clorite.json │ │ │ ├── echaisy.json │ │ │ ├── empty_fallen_aerglow_forest.json │ │ │ ├── fallen_aerglow_forest.json │ │ │ ├── golden_aspess.json │ │ │ ├── golden_grass_bonemeal.json │ │ │ ├── golden_grass_patch.json │ │ │ ├── golden_grove_grass_patch.json │ │ │ ├── golden_grove_trees.json │ │ │ ├── golden_vines_patch.json │ │ │ ├── luminescent_skyroot_forest_trees.json │ │ │ ├── luminescent_skyroot_forest_vegetation.json │ │ │ ├── more_skyjade_ore.json │ │ │ ├── mystic_aerglow_forest_flowers.json │ │ │ ├── mystic_aerglow_forest_trees_placement.json │ │ │ ├── overgrown_cloud_mushroom_trees.json │ │ │ ├── patch_squash.json │ │ │ ├── poison_lake.json │ │ │ ├── poison_spring.json │ │ │ ├── sky_tulips.json │ │ │ ├── skyjade_ore.json │ │ │ ├── sterling_aercloud.json │ │ │ ├── totem.json │ │ │ ├── virulent_quicksand_patch.json │ │ │ └── yagroot_swamp_trees_placement.json │ │ │ ├── processor_list │ │ │ ├── bronze_boss_room.json │ │ │ └── bronze_room.json │ │ │ ├── structure │ │ │ └── brass_dungeon.json │ │ │ └── structure_set │ │ │ └── brass_dungeon.json │ │ ├── minecraft │ │ └── tags │ │ │ ├── block │ │ │ ├── all_hanging_signs.json │ │ │ ├── all_signs.json │ │ │ ├── beacon_base_blocks.json │ │ │ ├── bee_growables.json │ │ │ ├── buttons.json │ │ │ ├── ceiling_hanging_signs.json │ │ │ ├── climbable.json │ │ │ ├── crops.json │ │ │ ├── dirt.json │ │ │ ├── doors.json │ │ │ ├── fall_damage_resetting.json │ │ │ ├── fence_gates.json │ │ │ ├── fences.json │ │ │ ├── flowers.json │ │ │ ├── leaves.json │ │ │ ├── logs.json │ │ │ ├── logs_that_burn.json │ │ │ ├── maintains_farmland.json │ │ │ ├── mangrove_logs_can_grow_through.json │ │ │ ├── mangrove_roots_can_grow_through.json │ │ │ ├── mineable │ │ │ │ ├── axe.json │ │ │ │ ├── hoe.json │ │ │ │ ├── pickaxe.json │ │ │ │ └── shovel.json │ │ │ ├── mob_interactable_doors.json │ │ │ ├── needs_diamond_tool.json │ │ │ ├── needs_iron_tool.json │ │ │ ├── needs_stone_tool.json │ │ │ ├── pressure_plates.json │ │ │ ├── replaceable_by_trees.json │ │ │ ├── saplings.json │ │ │ ├── sculk_replaceable.json │ │ │ ├── slabs.json │ │ │ ├── small_flowers.json │ │ │ ├── snaps_goat_horn.json │ │ │ ├── stairs.json │ │ │ ├── standing_signs.json │ │ │ ├── tall_flowers.json │ │ │ ├── trapdoors.json │ │ │ ├── wall_hanging_signs.json │ │ │ ├── wall_signs.json │ │ │ ├── walls.json │ │ │ ├── wooden_buttons.json │ │ │ ├── wooden_doors.json │ │ │ ├── wooden_fences.json │ │ │ ├── wooden_pressure_plates.json │ │ │ ├── wooden_slabs.json │ │ │ ├── wooden_stairs.json │ │ │ └── wooden_trapdoors.json │ │ │ ├── entity_type │ │ │ ├── arrows.json │ │ │ └── fall_damage_immune.json │ │ │ └── item │ │ │ ├── axes.json │ │ │ ├── beacon_payment_items.json │ │ │ ├── boats.json │ │ │ ├── buttons.json │ │ │ ├── cat_food.json │ │ │ ├── chest_armor.json │ │ │ ├── chest_boats.json │ │ │ ├── chicken_food.json │ │ │ ├── compasses.json │ │ │ ├── doors.json │ │ │ ├── enchantable │ │ │ ├── bow.json │ │ │ ├── chest_armor.json │ │ │ ├── durability.json │ │ │ ├── fire_aspect.json │ │ │ ├── foot_armor.json │ │ │ ├── head_armor.json │ │ │ ├── leg_armor.json │ │ │ ├── mining.json │ │ │ ├── sharp_weapon.json │ │ │ ├── sword.json │ │ │ └── weapon.json │ │ │ ├── fence_gates.json │ │ │ ├── fences.json │ │ │ ├── fishes.json │ │ │ ├── flowers.json │ │ │ ├── foot_armor.json │ │ │ ├── fox_food.json │ │ │ ├── hanging_signs.json │ │ │ ├── head_armor.json │ │ │ ├── hoes.json │ │ │ ├── leaves.json │ │ │ ├── leg_armor.json │ │ │ ├── logs.json │ │ │ ├── logs_that_burn.json │ │ │ ├── meat.json │ │ │ ├── ocelot_food.json │ │ │ ├── parrot_food.json │ │ │ ├── pickaxes.json │ │ │ ├── saplings.json │ │ │ ├── shovels.json │ │ │ ├── signs.json │ │ │ ├── slabs.json │ │ │ ├── small_flowers.json │ │ │ ├── stairs.json │ │ │ ├── swords.json │ │ │ ├── tall_flowers.json │ │ │ ├── trapdoors.json │ │ │ ├── trim_materials.json │ │ │ ├── trimmable_armor.json │ │ │ ├── walls.json │ │ │ ├── wolf_food.json │ │ │ ├── wooden_buttons.json │ │ │ ├── wooden_doors.json │ │ │ ├── wooden_fences.json │ │ │ ├── wooden_pressure_plates.json │ │ │ ├── wooden_slabs.json │ │ │ ├── wooden_stairs.json │ │ │ └── wooden_trapdoors.json │ │ └── neoforge │ │ ├── data_maps │ │ └── item │ │ │ └── compostables.json │ │ └── loot_modifiers │ │ └── global_loot_modifiers.json └── main │ ├── java │ └── io │ │ └── github │ │ └── razordevs │ │ └── deep_aether │ │ ├── DAEnumExtensions.java │ │ ├── DeepAether.java │ │ ├── DeepAetherConfig.java │ │ ├── advancement │ │ ├── DAAdvancementTriggers.java │ │ └── PoisonTrigger.java │ │ ├── block │ │ ├── behavior │ │ │ ├── DABlockInteractionBehavior.java │ │ │ ├── DADispenseBehaviors.java │ │ │ ├── DaCauldronInteraction.java │ │ │ └── GoldenVines.java │ │ ├── building │ │ │ ├── CarvedSquashBlock.java │ │ │ ├── DACeilingHangingSignBlock.java │ │ │ ├── DASignBlock.java │ │ │ ├── DAWallBlock.java │ │ │ ├── DAWallHangingSignBlock.java │ │ │ ├── DAWallSignBlock.java │ │ │ ├── DoorwayPillarBlock.java │ │ │ ├── DoubleTorchBlock.java │ │ │ └── TotemBlock.java │ │ ├── misc │ │ │ ├── BurnableBlockItem.java │ │ │ ├── ChromaticAercloudBlock.java │ │ │ ├── DADoubleDropRotatedPillarBlock.java │ │ │ ├── DisableSound.java │ │ │ ├── DisabledBlockItem.java │ │ │ └── TrappedPillarBlock.java │ │ ├── natural │ │ │ ├── AercloudGrassBlock.java │ │ │ ├── AercloudMushroomBlock.java │ │ │ ├── AersmogBlock.java │ │ │ ├── AetherCoarseDirtBlock.java │ │ │ ├── DALogBlock.java │ │ │ ├── DAMossBlock.java │ │ │ ├── DoubleDropMudBlock.java │ │ │ ├── EmptyLog.java │ │ │ ├── FeatherGrassPlant.java │ │ │ ├── FlowerBlockLargeHitBox.java │ │ │ ├── FloweringRoserootLeavesBlock.java │ │ │ ├── GlowingGrassBlock.java │ │ │ ├── GoldenGrassBlock.java │ │ │ ├── GoldenGrassPlant.java │ │ │ ├── GoldenVinesBlock.java │ │ │ ├── GoldenVinesPlantBlock.java │ │ │ ├── HalfTransperentHugeMushroomBlock.java │ │ │ ├── LightCapMushroomBlock.java │ │ │ ├── PoisonBlock.java │ │ │ ├── RoserootLeavesBlock.java │ │ │ ├── SquashBlock.java │ │ │ ├── SquashStemBlock.java │ │ │ ├── SterlingAercloudBlock.java │ │ │ ├── SunrootHangerBlock.java │ │ │ ├── VirulentQuicksandBlock.java │ │ │ ├── YagrootRootBlock.java │ │ │ └── YagrootVineBlock.java │ │ └── utility │ │ │ ├── CombinerBlock.java │ │ │ └── PoisonCauldronBlock.java │ │ ├── client │ │ ├── DeepAetherKeys.java │ │ ├── model │ │ │ ├── AerglowFishModel.java │ │ │ ├── AerwhaleModelLayer.java │ │ │ ├── BabyZephyrModel.java │ │ │ ├── ClassicAerwhaleModelLayer.java │ │ │ ├── ClassicEOTSSegmentModel.java │ │ │ ├── EOTSModel.java │ │ │ ├── EOTSSegmentModel.java │ │ │ ├── GentleWindModel.java │ │ │ ├── QuailModel.java │ │ │ ├── ScarfModel.java │ │ │ ├── VenomiteBubbleModel.java │ │ │ ├── VenomiteModel.java │ │ │ └── WindflyModel.java │ │ ├── particle │ │ │ ├── EOTSExplosionParticle.java │ │ │ ├── EOTSPreFightParticle.java │ │ │ ├── LuckParticle.java │ │ │ ├── MysticalParticle.java │ │ │ └── PoisonBubbles.java │ │ └── renderer │ │ │ ├── DAModelLayers.java │ │ │ ├── DAOverlays.java │ │ │ ├── accessory │ │ │ ├── FloatyScarfRenderer.java │ │ │ ├── SkyjadeGlovesRenderer.java │ │ │ └── WindShieldRenderer.java │ │ │ └── entity │ │ │ ├── AetherFishRenderer.java │ │ │ ├── BabyZephyrRenderer.java │ │ │ ├── DABoatRenderer.java │ │ │ ├── EOTSRenderer.java │ │ │ ├── EOTSSegmentRenderer.java │ │ │ ├── FireProjectileRenderer.java │ │ │ ├── GentleWindRenderer.java │ │ │ ├── QuailRenderer.java │ │ │ ├── StormArrowRenderer.java │ │ │ ├── VenomiteBubbleRenderer.java │ │ │ ├── VenomiteRenderer.java │ │ │ ├── WindCrystalRenderer.java │ │ │ └── WindflyRenderer.java │ │ ├── datagen │ │ ├── DABlockstateData.java │ │ ├── DADataMapData.java │ │ ├── DAItemModelData.java │ │ ├── DARecipeData.java │ │ ├── DARegistryDataGenerator.java │ │ ├── builder │ │ │ ├── CombiningRecipeBuilder.java │ │ │ └── PoisonConversionRecipeBuilder.java │ │ ├── loot │ │ │ ├── DABlockLoot.java │ │ │ ├── DAChestLoot.java │ │ │ ├── DALoot.java │ │ │ ├── DALootTableData.java │ │ │ └── modifiers │ │ │ │ ├── DAAddDungeonLootModifier.java │ │ │ │ ├── DAFishingLootModifier.java │ │ │ │ ├── DAGlobalLootModifiers.java │ │ │ │ ├── DAHalloweenLootModifier.java │ │ │ │ └── DALootDataProvider.java │ │ ├── registry │ │ │ ├── DAConfiguredFeatures.java │ │ │ ├── DAEnchantments.java │ │ │ ├── DAJukeboxSongs.java │ │ │ ├── DAPlacedFeatures.java │ │ │ └── structure │ │ │ │ ├── DAStructures.java │ │ │ │ └── DAStrucutreSets.java │ │ └── tags │ │ │ ├── DABiomeTagData.java │ │ │ ├── DABlockTagData.java │ │ │ ├── DADamageTypeTags.java │ │ │ ├── DAEntityTagData.java │ │ │ ├── DAFluidTagData.java │ │ │ ├── DAItemTagData.java │ │ │ ├── DASoundTagData.java │ │ │ └── DATags.java │ │ ├── effects │ │ ├── MoaBonusJumpEffect.java │ │ └── ValkyrieValorEffect.java │ │ ├── entity │ │ ├── AerwhaleSaddleable.java │ │ ├── DABoatEntity.java │ │ ├── DAChestBoatEntity.java │ │ ├── PoisonItem.java │ │ ├── StormArrow.java │ │ ├── block │ │ │ ├── CombinerBlockEntity.java │ │ │ ├── DAHangingSignBlockEntity.java │ │ │ └── DASignBlockEntity.java │ │ ├── goals │ │ │ └── FollowPlayerGoal.java │ │ ├── living │ │ │ ├── AerglowFish.java │ │ │ ├── BabyZephyr.java │ │ │ ├── GentleWind.java │ │ │ ├── Venomite.java │ │ │ ├── Windfly.java │ │ │ ├── boss │ │ │ │ └── eots │ │ │ │ │ ├── EOTSController.java │ │ │ │ │ └── EOTSSegment.java │ │ │ └── quail │ │ │ │ ├── Quail.java │ │ │ │ ├── QuailVariants.java │ │ │ │ └── SittingAetherAnimal.java │ │ └── projectile │ │ │ ├── FireProjectile.java │ │ │ ├── ThrownQuailEgg.java │ │ │ ├── VenomiteBubble.java │ │ │ └── WindCrystal.java │ │ ├── event │ │ ├── DAClientGameBusEvents.java │ │ ├── DAClientModBusEvents.java │ │ └── DAGeneralEvents.java │ │ ├── fluids │ │ ├── DAFluidTypes.java │ │ └── PoisonFluid.java │ │ ├── init │ │ ├── DABlockEntityTypes.java │ │ ├── DABlockStateProperties.java │ │ ├── DABlocks.java │ │ ├── DAEntities.java │ │ ├── DAEntityRenderers.java │ │ ├── DAFluids.java │ │ ├── DAItems.java │ │ ├── DAMenuTypes.java │ │ ├── DAMenus.java │ │ ├── DAMobEffects.java │ │ ├── DAParticles.java │ │ ├── DAPotions.java │ │ ├── DARecipeBookTypes.java │ │ ├── DARecipeCategories.java │ │ ├── DASounds.java │ │ ├── DATabs.java │ │ ├── DATiers.java │ │ └── DAWoodTypes.java │ │ ├── item │ │ ├── DATrimMaterials.java │ │ ├── component │ │ │ ├── DADataComponentTypes.java │ │ │ ├── DungeonTracker.java │ │ │ ├── FloatyScarf.java │ │ │ └── MoaFodder.java │ │ ├── dungeon │ │ │ └── brass │ │ │ │ ├── BladeOfLuckItem.java │ │ │ │ ├── CloudCapeItem.java │ │ │ │ ├── StormBowItem.java │ │ │ │ ├── StormSwordItem.java │ │ │ │ └── WindShieldItem.java │ │ ├── gear │ │ │ ├── ArmorAbilityListener.java │ │ │ ├── DAAbilityHooks.java │ │ │ ├── DAArmorMaterials.java │ │ │ ├── DAEquipmentUtil.java │ │ │ ├── DaAbilityListener.java │ │ │ ├── ToolAbilityListener.java │ │ │ ├── other │ │ │ │ ├── AerwhaleSaddle.java │ │ │ │ ├── Afterburner.java │ │ │ │ ├── FloatyScarfItem.java │ │ │ │ ├── MedalOfHonor.java │ │ │ │ ├── SliderEye.java │ │ │ │ └── SpookyRing.java │ │ │ ├── skyjade │ │ │ │ ├── SkyjadeAccessory.java │ │ │ │ ├── SkyjadeArmorItem.java │ │ │ │ ├── SkyjadeGlovesItem.java │ │ │ │ ├── SkyjadeHelmetItem.java │ │ │ │ ├── SkyjadeRingItem.java │ │ │ │ ├── SkyjadeTool.java │ │ │ │ ├── SkyjadeToolsAxeItem.java │ │ │ │ ├── SkyjadeToolsHoeItem.java │ │ │ │ ├── SkyjadeToolsPickaxeItem.java │ │ │ │ ├── SkyjadeToolsShovelItem.java │ │ │ │ ├── SkyjadeToolsSwordItem.java │ │ │ │ └── SkyjadeWeapon.java │ │ │ └── stratus │ │ │ │ ├── StratusAbility.java │ │ │ │ ├── StratusAxeItem.java │ │ │ │ ├── StratusHoeItem.java │ │ │ │ ├── StratusPickaxeItem.java │ │ │ │ ├── StratusShovelItem.java │ │ │ │ └── StratusSwordItem.java │ │ └── misc │ │ │ ├── AntidoteItem.java │ │ │ ├── ChaosEmerald.java │ │ │ ├── DABoatItem.java │ │ │ ├── DAFoods.java │ │ │ ├── DASquashPieItem.java │ │ │ ├── DrinkableBucketItem.java │ │ │ ├── DungeonCompass.java │ │ │ ├── FodderItem.java │ │ │ ├── GlowingSporesItem.java │ │ │ ├── GoldenSwetBallItem.java │ │ │ ├── IronRemedyBucketItem.java │ │ │ ├── QuailEggItem.java │ │ │ ├── SkyrootPoisonBucketWrapper.java │ │ │ └── SunClock.java │ │ ├── mixin │ │ ├── AetherSkyRenderEffectsAccessor.java │ │ ├── BrewingFuelMenuMixin.java │ │ ├── BrewingFuelMixin.java │ │ ├── GlovesMixin.java │ │ ├── TriviaGeneratorMixin.java │ │ ├── block │ │ │ ├── AercloudMixin.java │ │ │ ├── BlockBehaviourMixin.java │ │ │ ├── LavaFluidMixin.java │ │ │ ├── PointedDripstoneBlockMixin.java │ │ │ └── PowderedSnowMixin.java │ │ └── entity │ │ │ ├── AerwhaleMixin.java │ │ │ ├── AerwhaleModelMixin.java │ │ │ ├── AerwhaleRendererMixin.java │ │ │ ├── ClassicAerwhaleModelMixin.java │ │ │ ├── HumanoidArmorLayerMixin.java │ │ │ ├── ItemEntityMixin.java │ │ │ ├── LivingEntityRendererMixin.java │ │ │ ├── SliderGlowLayerMixin.java │ │ │ └── SliderRendererMixin.java │ │ ├── networking │ │ ├── attachment │ │ │ ├── DAAttachments.java │ │ │ └── DAPlayerAttachment.java │ │ └── packet │ │ │ └── DAPlayerSyncPacket.java │ │ ├── recipe │ │ ├── DABookCategory.java │ │ ├── DARecipeSerializers.java │ │ ├── DARecipeTypes.java │ │ ├── FloatyScarfColoring.java │ │ ├── GlowingSporesRecipe.java │ │ ├── GoldenSwetBallRecipe.java │ │ ├── combiner │ │ │ ├── CombinerRecipe.java │ │ │ ├── CombinerRecipeInput.java │ │ │ └── CombinerServerPlaceRecipe.java │ │ ├── jei │ │ │ ├── CombinerRecipeCategory.java │ │ │ ├── DAJEIPlugin.java │ │ │ ├── MoaFodderSubtypeInterpreter.java │ │ │ └── PoisonRecipeCategory.java │ │ └── poison │ │ │ ├── PoisonRecipe.java │ │ │ └── PoisonRecipeInput.java │ │ ├── screen │ │ ├── CombinerMenu.java │ │ ├── CombinerRecipeBookComponent.java │ │ ├── CombinerScreen.java │ │ ├── DATitleScreen.java │ │ └── SnapshotScreen.java │ │ ├── util │ │ └── StructureUtil.java │ │ └── world │ │ ├── biomes │ │ ├── DABiomes.java │ │ ├── DARareRegion.java │ │ ├── DARegion.java │ │ └── DASurfaceData.java │ │ ├── feature │ │ ├── DAFeatureStates.java │ │ ├── DAFeatures.java │ │ ├── features │ │ │ ├── AercloudCloudFeature.java │ │ │ ├── CloriteColumnsFeature.java │ │ │ ├── ConfiguredBoulder.java │ │ │ ├── DAHugeMushroomFeature.java │ │ │ ├── FallenTreeFeature.java │ │ │ ├── PoisonLakeFeature.java │ │ │ ├── RainAercloudCloudFeature.java │ │ │ ├── RockSpikeFeature.java │ │ │ ├── RootFeature.java │ │ │ ├── TotemFeature.java │ │ │ └── configuration │ │ │ │ ├── AercloudCloudConfiguration.java │ │ │ │ ├── DAHugeMushroomFeatureConfiguration.java │ │ │ │ └── FallenTreeConfiguration.java │ │ └── tree │ │ │ ├── DATreeGrower.java │ │ │ ├── decorators │ │ │ ├── DADecoratorType.java │ │ │ ├── DARootPlacers.java │ │ │ ├── FlowerDecorator.java │ │ │ ├── GlowingTrunkVineDecorator.java │ │ │ ├── GlowingVineDecorator.java │ │ │ ├── SunrootHangerDecorator.java │ │ │ ├── YagrootRootPlacer.java │ │ │ └── YagrootVineDecorator.java │ │ │ ├── foliage │ │ │ ├── DAFoliagePlacers.java │ │ │ ├── RoserootFoliagePlacer.java │ │ │ └── YagrootFoliagePlacer.java │ │ │ ├── grower │ │ │ └── BlueRoserootTreeGrower.java │ │ │ └── trunk │ │ │ ├── DaTrunkPlacerTypes.java │ │ │ ├── ImprovedStraightTrunkPlacer.java │ │ │ ├── SunrootTunkPlacer.java │ │ │ ├── TwinTrunkPlacer.java │ │ │ └── YagrootTrunkPlacer.java │ │ ├── placementmodifier │ │ ├── DAPlacementModifiers.java │ │ └── ImprovedRarityFilter.java │ │ └── structure │ │ ├── DAJigsawStructure.java │ │ ├── DAStructurePieceTypes.java │ │ ├── DAStructureProcessorLists.java │ │ ├── DAStructureTypes.java │ │ ├── HeightSpawningChecks.java │ │ ├── brass │ │ ├── BrassDungeonPiece.java │ │ ├── BrassDungeonStructure.java │ │ ├── BrassRoom.java │ │ └── processor │ │ │ ├── BrassDungeonRoomProcessor.java │ │ │ └── BrassProcessorSettings.java │ │ ├── pools │ │ └── AltarCampPool.java │ │ └── processor │ │ └── DAStructureProcessor.java │ ├── resources │ ├── META-INF │ │ ├── accesstransformer.cfg │ │ └── enumextensions.json │ ├── assets │ │ ├── aether │ │ │ └── tips │ │ │ │ ├── deep_aether_tips.json │ │ │ │ ├── poison.json │ │ │ │ ├── poison_squashes.json │ │ │ │ ├── squashes.json │ │ │ │ └── sterling_aercloud.json │ │ ├── deep_aether │ │ │ ├── blockstates │ │ │ │ ├── aercloud_grass_block.json │ │ │ │ ├── aercloud_root_carpet.json │ │ │ │ ├── aercloud_roots.json │ │ │ │ ├── aerwhale_totem.json │ │ │ │ ├── aether_moss_carpet.json │ │ │ │ ├── ambrosium_tiki_torch.json │ │ │ │ ├── attached_squash_stem.json │ │ │ │ ├── blue_aercloud_mushroom_block.json │ │ │ │ ├── blue_aercloud_mushrooms.json │ │ │ │ ├── blue_squash.json │ │ │ │ ├── carved_blue_squash.json │ │ │ │ ├── carved_green_squash.json │ │ │ │ ├── carved_purple_squash.json │ │ │ │ ├── cloudbloom_carpet.json │ │ │ │ ├── glowing_spores.json │ │ │ │ ├── glowing_vine.json │ │ │ │ ├── golden_flower.json │ │ │ │ ├── golden_heights_dirt_path.json │ │ │ │ ├── golden_heights_grass_block.json │ │ │ │ ├── golden_vines.json │ │ │ │ ├── golden_vines_plant.json │ │ │ │ ├── green_squash.json │ │ │ │ ├── holystone_pillar_down.json │ │ │ │ ├── holystone_pillar_up.json │ │ │ │ ├── lightcap_mushroom_block.json │ │ │ │ ├── locked_skyroot_planks.json │ │ │ │ ├── moa_totem.json │ │ │ │ ├── muddy_yagroot_roots.json │ │ │ │ ├── pink_aercloud_mushroom_block.json │ │ │ │ ├── pink_aercloud_mushrooms.json │ │ │ │ ├── poison.json │ │ │ │ ├── poison_cauldron.json │ │ │ │ ├── purple_squash.json │ │ │ │ ├── rotten_roseroot_log.json │ │ │ │ ├── skyjade_chain.json │ │ │ │ ├── skyjade_lantern.json │ │ │ │ ├── skyroot_wall.json │ │ │ │ ├── squash_stem.json │ │ │ │ ├── stratus_debris.json │ │ │ │ ├── stripped_skyroot_wall.json │ │ │ │ ├── sunroot_hanger.json │ │ │ │ ├── sunroot_leaves.json │ │ │ │ ├── tall_aether_cattails.json │ │ │ │ ├── tall_alien_plant.json │ │ │ │ ├── tall_feather_grass.json │ │ │ │ ├── tall_glowing_grass.json │ │ │ │ ├── tall_golden_grass.json │ │ │ │ ├── trapped_skyroot_planks.json │ │ │ │ ├── virulent_quicksand.json │ │ │ │ ├── yagroot_roots.json │ │ │ │ ├── yagroot_vine.json │ │ │ │ └── zephyr_totem.json │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ ├── it_it.json │ │ │ │ ├── ja_jp.json │ │ │ │ ├── uk_ua.json │ │ │ │ └── zh_cn.json │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ ├── aercloud_grass_block.json │ │ │ │ │ ├── aercloud_mushroom_base.json │ │ │ │ │ ├── aercloud_mushroom_block_inside.json │ │ │ │ │ ├── aercloud_root_carpet.json │ │ │ │ │ ├── aercloud_roots.json │ │ │ │ │ ├── aerwhale_totem.json │ │ │ │ │ ├── aether_moss_carpet.json │ │ │ │ │ ├── ambrosium_tiki_torch_bottom.json │ │ │ │ │ ├── ambrosium_tiki_torch_top.json │ │ │ │ │ ├── attached_squash_stem.json │ │ │ │ │ ├── blue_aercloud_mushroom_block.json │ │ │ │ │ ├── blue_aercloud_mushroom_block_inventory.json │ │ │ │ │ ├── blue_aercloud_mushrooms.json │ │ │ │ │ ├── blue_squash.json │ │ │ │ │ ├── carved_blue_squash.json │ │ │ │ │ ├── carved_green_squash.json │ │ │ │ │ ├── carved_purple_squash.json │ │ │ │ │ ├── cloudbloom_carpet.json │ │ │ │ │ ├── glowing_spores_1.json │ │ │ │ │ ├── glowing_spores_2.json │ │ │ │ │ ├── glowing_spores_3.json │ │ │ │ │ ├── glowing_spores_4.json │ │ │ │ │ ├── glowing_vine.json │ │ │ │ │ ├── golden_flower_bottom.json │ │ │ │ │ ├── golden_flower_top.json │ │ │ │ │ ├── golden_heights_dirt_path.json │ │ │ │ │ ├── golden_heights_grass_block.json │ │ │ │ │ ├── golden_vines.json │ │ │ │ │ ├── golden_vines_lit.json │ │ │ │ │ ├── golden_vines_plant.json │ │ │ │ │ ├── golden_vines_plant_lit.json │ │ │ │ │ ├── green_squash.json │ │ │ │ │ ├── holystone_pillar_down.json │ │ │ │ │ ├── holystone_pillar_down_horizontal.json │ │ │ │ │ ├── holystone_pillar_up.json │ │ │ │ │ ├── holystone_pillar_up_horizontal.json │ │ │ │ │ ├── lightcap_mushroom_block.json │ │ │ │ │ ├── lightcap_mushroom_block_inventory.json │ │ │ │ │ ├── moa_totem.json │ │ │ │ │ ├── muddy_yagroot_roots.json │ │ │ │ │ ├── pink_aercloud_mushroom_block.json │ │ │ │ │ ├── pink_aercloud_mushroom_block_inventory.json │ │ │ │ │ ├── pink_aercloud_mushrooms.json │ │ │ │ │ ├── poison.json │ │ │ │ │ ├── poison_cauldron.json │ │ │ │ │ ├── purple_squash.json │ │ │ │ │ ├── rotten_roseroot_log.json │ │ │ │ │ ├── skyjade_chain.json │ │ │ │ │ ├── skyjade_lantern.json │ │ │ │ │ ├── skyjade_lantern_hanging.json │ │ │ │ │ ├── skyroot_wall_post.json │ │ │ │ │ ├── skyroot_wall_side.json │ │ │ │ │ ├── skyroot_wall_side_tall.json │ │ │ │ │ ├── squash_stem_stage0.json │ │ │ │ │ ├── squash_stem_stage1.json │ │ │ │ │ ├── squash_stem_stage2.json │ │ │ │ │ ├── squash_stem_stage3.json │ │ │ │ │ ├── squash_stem_stage4.json │ │ │ │ │ ├── squash_stem_stage5.json │ │ │ │ │ ├── squash_stem_stage6.json │ │ │ │ │ ├── squash_stem_stage7.json │ │ │ │ │ ├── stratus_debris.json │ │ │ │ │ ├── stripped_skyroot_wall_post.json │ │ │ │ │ ├── stripped_skyroot_wall_side.json │ │ │ │ │ ├── stripped_skyroot_wall_side_tall.json │ │ │ │ │ ├── sunroot_hanger.json │ │ │ │ │ ├── sunroot_hanger_tip.json │ │ │ │ │ ├── sunroot_hanger_top.json │ │ │ │ │ ├── sunroot_leaves.json │ │ │ │ │ ├── sunroot_leaves_bottom.json │ │ │ │ │ ├── tall_aether_cattails_bottom.json │ │ │ │ │ ├── tall_aether_cattails_top.json │ │ │ │ │ ├── tall_alien_plant_bottom.json │ │ │ │ │ ├── tall_alien_plant_top.json │ │ │ │ │ ├── tall_feather_grass_bottom.json │ │ │ │ │ ├── tall_feather_grass_top.json │ │ │ │ │ ├── tall_glowing_grass_bottom.json │ │ │ │ │ ├── tall_glowing_grass_top.json │ │ │ │ │ ├── tall_golden_grass_bottom.json │ │ │ │ │ ├── tall_golden_grass_top.json │ │ │ │ │ ├── virulent_quicksand.json │ │ │ │ │ ├── yagroot_roots.json │ │ │ │ │ ├── yagroot_vine.json │ │ │ │ │ ├── yagroot_vine_tip.json │ │ │ │ │ └── zephyr_totem.json │ │ │ │ └── item │ │ │ │ │ ├── aerwhale_totem.json │ │ │ │ │ ├── ambrosium_tiki_torch.json │ │ │ │ │ ├── blade_of_luck.json │ │ │ │ │ ├── blade_of_luck_0.json │ │ │ │ │ ├── blade_of_luck_1.json │ │ │ │ │ ├── blade_of_luck_2.json │ │ │ │ │ ├── blade_of_luck_3.json │ │ │ │ │ ├── blade_of_luck_4.json │ │ │ │ │ ├── blue_aercloud_mushroom_block.json │ │ │ │ │ ├── bronze_compass.json │ │ │ │ │ ├── floaty_scarf.json │ │ │ │ │ ├── fodder_blue.json │ │ │ │ │ ├── fodder_green.json │ │ │ │ │ ├── fodder_red.json │ │ │ │ │ ├── gold_compass.json │ │ │ │ │ ├── golden_heights_dirt_path.json │ │ │ │ │ ├── lightcap_mushroom_block.json │ │ │ │ │ ├── locked_skyroot_planks.json │ │ │ │ │ ├── moa_fodder.json │ │ │ │ │ ├── moa_totem.json │ │ │ │ │ ├── pink_aercloud_mushroom_block.json │ │ │ │ │ ├── rotten_roseroot_log.json │ │ │ │ │ ├── silver_compass.json │ │ │ │ │ ├── skyjade_shield.json │ │ │ │ │ ├── skyjade_shield_blocking.json │ │ │ │ │ ├── skyroot_wall.json │ │ │ │ │ ├── stratus_shield.json │ │ │ │ │ ├── stratus_shield_blocking.json │ │ │ │ │ ├── stripped_skyroot_wall.json │ │ │ │ │ ├── sun_clock.json │ │ │ │ │ ├── sunroot_hanger.json │ │ │ │ │ ├── trapped_skyroot_planks.json │ │ │ │ │ ├── yagroot_vine.json │ │ │ │ │ └── zephyr_totem.json │ │ │ ├── particles │ │ │ │ ├── clover.json │ │ │ │ ├── clover_lucky.json │ │ │ │ ├── clover_unlucky.json │ │ │ │ ├── clover_very_lucky.json │ │ │ │ ├── eots_explosion.json │ │ │ │ ├── eots_fight.json │ │ │ │ ├── eots_pre_fight.json │ │ │ │ ├── flowering_roseroot_leaves.json │ │ │ │ ├── mythical_particle.json │ │ │ │ ├── poison_bubbles.json │ │ │ │ └── roseroot_leaves.json │ │ │ ├── sounds.json │ │ │ ├── sounds │ │ │ │ ├── aethyus-variations.ogg │ │ │ │ ├── atta_mono.ogg │ │ │ │ ├── blade_of_luck_damage_1.ogg │ │ │ │ ├── emile-van-krieken-a-morning-wish.ogg │ │ │ │ ├── emile-van-krieken-nabooru.ogg │ │ │ │ ├── entity │ │ │ │ │ ├── eots │ │ │ │ │ │ ├── blowing.ogg │ │ │ │ │ │ ├── shoot_1.ogg │ │ │ │ │ │ └── shoot_2.ogg │ │ │ │ │ ├── quail │ │ │ │ │ │ ├── death.ogg │ │ │ │ │ │ ├── hurt1.ogg │ │ │ │ │ │ ├── hurt2.ogg │ │ │ │ │ │ ├── say1.ogg │ │ │ │ │ │ ├── say2.ogg │ │ │ │ │ │ └── say3.ogg │ │ │ │ │ ├── venomite │ │ │ │ │ │ ├── ambient.ogg │ │ │ │ │ │ ├── death.ogg │ │ │ │ │ │ └── hurt.ogg │ │ │ │ │ └── windfly │ │ │ │ │ │ ├── ambient.ogg │ │ │ │ │ │ └── hurt.ogg │ │ │ │ ├── faent_mono.ogg │ │ │ │ ├── himininn_mono.ogg │ │ │ │ ├── menu_mono.ogg │ │ │ │ ├── quizzly-above-the-rain.ogg │ │ │ │ ├── quizzly-cyclone.ogg │ │ │ │ ├── victory_jingle.ogg │ │ │ │ └── wooshwoosh.ogg │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── aercloud_block_side_overlay.png │ │ │ │ ├── aercloud_grass_block_side.png │ │ │ │ ├── aercloud_grass_block_top.png │ │ │ │ ├── aercloud_leaves.png │ │ │ │ ├── aercloud_mushroom_inside.png │ │ │ │ ├── aercloud_mushroom_purple.png │ │ │ │ ├── aercloud_roots.png │ │ │ │ ├── aerglow_blossom_block.png │ │ │ │ ├── aerlavender.png │ │ │ │ ├── aerlavender_pot.png │ │ │ │ ├── aersmog.png │ │ │ │ ├── aerwhale_totem.png │ │ │ │ ├── aether_cattails.png │ │ │ │ ├── aether_cattails_pot.png │ │ │ │ ├── aether_coarse_dirt.png │ │ │ │ ├── aether_moss_block.png │ │ │ │ ├── aether_mud.png │ │ │ │ ├── aether_mud_bricks.png │ │ │ │ ├── aether_packed_mud.png │ │ │ │ ├── ambrosium_tiki_torch.png │ │ │ │ ├── ambrosium_tiki_torch.png.mcmeta │ │ │ │ ├── aseterite.png │ │ │ │ ├── aseterite_bricks.png │ │ │ │ ├── attached_squash_stem.png │ │ │ │ ├── big_holystone_bricks.png │ │ │ │ ├── blightmoss_holystone_bricks.png │ │ │ │ ├── blightmoss_holystone_tiles.png │ │ │ │ ├── blue_aercloud_mushroom_block.png │ │ │ │ ├── blue_aercloud_mushrooms.png │ │ │ │ ├── blue_roseroot_leaves.png │ │ │ │ ├── blue_roseroot_sapling.png │ │ │ │ ├── blue_squash_side.png │ │ │ │ ├── blue_squash_top.png │ │ │ │ ├── carved_blue_squash_side.png │ │ │ │ ├── carved_green_squash_side.png │ │ │ │ ├── carved_purple_squash_side.png │ │ │ │ ├── chiseled_holystone.png │ │ │ │ ├── chromatic_aercloud.png │ │ │ │ ├── clorite.png │ │ │ │ ├── clorite_pillar.png │ │ │ │ ├── clorite_pillar_top.png │ │ │ │ ├── cloudbloom_carpet.png │ │ │ │ ├── cobbled_aseterite.png │ │ │ │ ├── combiner_bottom.png │ │ │ │ ├── combiner_side.png │ │ │ │ ├── combiner_top.png │ │ │ │ ├── conberry_door_bottom.png │ │ │ │ ├── conberry_door_top.png │ │ │ │ ├── conberry_leaves.png │ │ │ │ ├── conberry_log.png │ │ │ │ ├── conberry_log_top.png │ │ │ │ ├── conberry_planks.png │ │ │ │ ├── conberry_sapling.png │ │ │ │ ├── conberry_trapdoor.png │ │ │ │ ├── cruderoot_door_bottom.png │ │ │ │ ├── cruderoot_door_top.png │ │ │ │ ├── cruderoot_leaves.png │ │ │ │ ├── cruderoot_log.png │ │ │ │ ├── cruderoot_log_top.png │ │ │ │ ├── cruderoot_planks.png │ │ │ │ ├── cruderoot_sapling.png │ │ │ │ ├── cruderoot_trapdoor.png │ │ │ │ ├── echaisy.png │ │ │ │ ├── enchanted_blossom.png │ │ │ │ ├── feather_grass.png │ │ │ │ ├── flowering_blue_roseroot_leaves.png │ │ │ │ ├── flowering_roseroot_leaves.png │ │ │ │ ├── fruit_golden_vines.png │ │ │ │ ├── fruit_golden_vines_plant.png │ │ │ │ ├── gilded_holystone_bricks.png │ │ │ │ ├── gilded_holystone_tiles.png │ │ │ │ ├── glowing_spores.png │ │ │ │ ├── glowing_spores_item.png │ │ │ │ ├── glowing_vine_overlay.png │ │ │ │ ├── golden_aspess.png │ │ │ │ ├── golden_flower_bottom.png │ │ │ │ ├── golden_flower_top.png │ │ │ │ ├── golden_heights_dirt_path_side.png │ │ │ │ ├── golden_heights_dirt_path_top.png │ │ │ │ ├── golden_heights_grass_block_side.png │ │ │ │ ├── golden_heights_grass_block_top.png │ │ │ │ ├── golden_vines.png │ │ │ │ ├── golden_vines_plant.png │ │ │ │ ├── green_squash_side.png │ │ │ │ ├── green_squash_top.png │ │ │ │ ├── highstone.png │ │ │ │ ├── holystone_pillar.png │ │ │ │ ├── holystone_pillar_down.png │ │ │ │ ├── holystone_pillar_top.png │ │ │ │ ├── holystone_pillar_up.png │ │ │ │ ├── holystone_tiles.png │ │ │ │ ├── iaspove.png │ │ │ │ ├── light_nimbus_pillar.png │ │ │ │ ├── light_nimbus_pillar_top.png │ │ │ │ ├── light_nimbus_stone.png │ │ │ │ ├── lightcap_mushroom_block.png │ │ │ │ ├── lightcap_mushrooms.png │ │ │ │ ├── medium_golden_grass.png │ │ │ │ ├── mini_golden_grass.png │ │ │ │ ├── moa_totem.png │ │ │ │ ├── mossy_holystone_bricks.png │ │ │ │ ├── mossy_holystone_tiles.png │ │ │ │ ├── muddy_yagroot_roots_side.png │ │ │ │ ├── muddy_yagroot_roots_top.png │ │ │ │ ├── nimbus_pillar.png │ │ │ │ ├── nimbus_pillar_top.png │ │ │ │ ├── nimbus_stone.png │ │ │ │ ├── packed_aether_mud.png │ │ │ │ ├── pink_aercloud_mushroom_block.png │ │ │ │ ├── pink_aercloud_mushrooms.png │ │ │ │ ├── poison_still.png │ │ │ │ ├── poison_still.png.mcmeta │ │ │ │ ├── polished_aseterite.png │ │ │ │ ├── polished_clorite.png │ │ │ │ ├── purple_squash_side.png │ │ │ │ ├── purple_squash_top.png │ │ │ │ ├── radiant_orchid.png │ │ │ │ ├── rain_aercloud.png │ │ │ │ ├── raw_clorite.png │ │ │ │ ├── raw_oratie_block.png │ │ │ │ ├── roseroot_door_bottom.png │ │ │ │ ├── roseroot_door_top.png │ │ │ │ ├── roseroot_leaves.png │ │ │ │ ├── roseroot_log.png │ │ │ │ ├── roseroot_log_top.png │ │ │ │ ├── roseroot_planks.png │ │ │ │ ├── roseroot_sapling.png │ │ │ │ ├── roseroot_trapdoor.png │ │ │ │ ├── rotten_roseroot_log.png │ │ │ │ ├── short_golden_grass.png │ │ │ │ ├── sky_tulips.png │ │ │ │ ├── skyjade_block.png │ │ │ │ ├── skyjade_chain.png │ │ │ │ ├── skyjade_lantern.png │ │ │ │ ├── skyjade_lantern.png.mcmeta │ │ │ │ ├── skyjade_ore.png │ │ │ │ ├── squall_block.png │ │ │ │ ├── squash_stem.png │ │ │ │ ├── sterling_aercloud.png │ │ │ │ ├── stratus_block.png │ │ │ │ ├── stripped_conberry_log.png │ │ │ │ ├── stripped_conberry_log_top.png │ │ │ │ ├── stripped_cruderoot_log.png │ │ │ │ ├── stripped_cruderoot_log_top.png │ │ │ │ ├── stripped_roseroot_log.png │ │ │ │ ├── stripped_roseroot_log_top.png │ │ │ │ ├── stripped_sunroot_log.png │ │ │ │ ├── stripped_sunroot_log_top.png │ │ │ │ ├── stripped_yagroot_log.png │ │ │ │ ├── stripped_yagroot_log_top.png │ │ │ │ ├── sunroot_door_bottom.png │ │ │ │ ├── sunroot_door_top.png │ │ │ │ ├── sunroot_hanger.png │ │ │ │ ├── sunroot_hanger_tip.png │ │ │ │ ├── sunroot_hanger_top.png │ │ │ │ ├── sunroot_hanger_top_inside.png │ │ │ │ ├── sunroot_leaves.png │ │ │ │ ├── sunroot_log.png │ │ │ │ ├── sunroot_log_top.png │ │ │ │ ├── sunroot_planks.png │ │ │ │ ├── sunroot_sapling.png │ │ │ │ ├── sunroot_trapdoor.png │ │ │ │ ├── tall_aerlavender.png │ │ │ │ ├── tall_aerlavender_pot.png │ │ │ │ ├── tall_aether_cattails_bottom.png │ │ │ │ ├── tall_aether_cattails_top.png │ │ │ │ ├── tall_alien_plant_bottom.png │ │ │ │ ├── tall_alien_plant_top.png │ │ │ │ ├── tall_feather_grass_bottom.png │ │ │ │ ├── tall_feather_grass_top.png │ │ │ │ ├── tall_glowing_grass_overlay.png │ │ │ │ ├── tall_golden_grass_bottom.png │ │ │ │ ├── tall_golden_grass_top.png │ │ │ │ ├── virulent_quicksand.png │ │ │ │ ├── yagroot_door_bottom.png │ │ │ │ ├── yagroot_door_top.png │ │ │ │ ├── yagroot_leaves.png │ │ │ │ ├── yagroot_log.png │ │ │ │ ├── yagroot_log_top.png │ │ │ │ ├── yagroot_planks.png │ │ │ │ ├── yagroot_roots_side.png │ │ │ │ ├── yagroot_roots_top.png │ │ │ │ ├── yagroot_sapling.png │ │ │ │ ├── yagroot_trapdoor.png │ │ │ │ ├── yagroot_vine.png │ │ │ │ ├── yagroot_vine_tip.png │ │ │ │ └── zephyr_totem.png │ │ │ │ ├── entity │ │ │ │ ├── aerglow_fish.png │ │ │ │ ├── aerwhale_saddled.png │ │ │ │ ├── aerwhale_saddled_classic.png │ │ │ │ ├── baby_zephyr.png │ │ │ │ ├── boat │ │ │ │ │ ├── conberry.png │ │ │ │ │ ├── cruderoot.png │ │ │ │ │ ├── roseroot.png │ │ │ │ │ ├── sunroot.png │ │ │ │ │ └── yagroot.png │ │ │ │ ├── chest_boat │ │ │ │ │ ├── conberry.png │ │ │ │ │ ├── cruderoot.png │ │ │ │ │ ├── roseroot.png │ │ │ │ │ ├── sunroot.png │ │ │ │ │ └── yagroot.png │ │ │ │ ├── eots │ │ │ │ │ ├── eots_controller.png │ │ │ │ │ ├── eots_segment.png │ │ │ │ │ ├── eots_segment_classic.png │ │ │ │ │ ├── eots_segment_controlling.png │ │ │ │ │ ├── eots_segment_controlling_classic.png │ │ │ │ │ └── wind_crystal.png │ │ │ │ ├── gentle_wind.png │ │ │ │ ├── moa │ │ │ │ │ └── armor │ │ │ │ │ │ └── moa_armor_skyjade.png │ │ │ │ ├── projectile │ │ │ │ │ └── wind_ball.png │ │ │ │ ├── quail │ │ │ │ │ ├── quail_copper.png │ │ │ │ │ ├── quail_faded_yellow.png │ │ │ │ │ ├── quail_light_blue.png │ │ │ │ │ ├── quail_old_green.png │ │ │ │ │ ├── quail_pink.png │ │ │ │ │ ├── quail_purple.png │ │ │ │ │ └── quail_tropical_blue.png │ │ │ │ ├── quail_egg.png │ │ │ │ ├── signs │ │ │ │ │ ├── conberry.png │ │ │ │ │ ├── cruderoot.png │ │ │ │ │ ├── hanging │ │ │ │ │ │ ├── conberry.png │ │ │ │ │ │ ├── cruderoot.png │ │ │ │ │ │ ├── roseroot.png │ │ │ │ │ │ ├── sunroot.png │ │ │ │ │ │ └── yagroot.png │ │ │ │ │ ├── roseroot.png │ │ │ │ │ ├── sunroot.png │ │ │ │ │ └── yagroot.png │ │ │ │ ├── slider │ │ │ │ │ ├── halloween_slider_asleep.png │ │ │ │ │ ├── halloween_slider_asleep_critical.png │ │ │ │ │ ├── halloween_slider_awake.png │ │ │ │ │ ├── halloween_slider_awake_critical.png │ │ │ │ │ ├── halloween_slider_awake_critical_glow.png │ │ │ │ │ └── halloween_slider_awake_glow.png │ │ │ │ ├── venomite │ │ │ │ │ ├── venomite.png │ │ │ │ │ ├── venomite_angry.png │ │ │ │ │ └── venomite_bubble.png │ │ │ │ └── windfly │ │ │ │ │ ├── windfly.png │ │ │ │ │ └── windfly_glowmask.png │ │ │ │ ├── environment │ │ │ │ └── spooky_moon_phases.png │ │ │ │ ├── fluids │ │ │ │ ├── poison_water_flow.png │ │ │ │ └── poison_water_still.png │ │ │ │ ├── gui │ │ │ │ ├── combiner_gui.png │ │ │ │ ├── combiner_gui_jei.png │ │ │ │ ├── deep_aether.png │ │ │ │ ├── hanging_signs │ │ │ │ │ ├── conberry.png │ │ │ │ │ ├── cruderoot.png │ │ │ │ │ ├── roseroot.png │ │ │ │ │ ├── sunroot.png │ │ │ │ │ └── yagroot.png │ │ │ │ ├── sprites │ │ │ │ │ ├── boss_bar │ │ │ │ │ │ ├── eots.png │ │ │ │ │ │ └── eots_background.png │ │ │ │ │ ├── combiner_arrow.png │ │ │ │ │ └── hud │ │ │ │ │ │ ├── effect_feather.png │ │ │ │ │ │ ├── effect_feather.png.mcmeta │ │ │ │ │ │ ├── effect_feather_background.png │ │ │ │ │ │ └── stratus │ │ │ │ │ │ ├── stratus_cooldown_1.png │ │ │ │ │ │ ├── stratus_cooldown_2.png │ │ │ │ │ │ └── stratus_cooldown_3.png │ │ │ │ └── title │ │ │ │ │ └── deep_aether.png │ │ │ │ ├── item │ │ │ │ ├── aercloud_necklace.png │ │ │ │ ├── aerglow_blossom.png │ │ │ │ ├── aerglow_fish_bucket.png │ │ │ │ ├── aerwhale_saddle.png │ │ │ │ ├── afterburner.png │ │ │ │ ├── ambrosium_tiki_torch.png │ │ │ │ ├── antidote.png │ │ │ │ ├── bio_crystal.png │ │ │ │ ├── blade_of_luck_0.png │ │ │ │ ├── blade_of_luck_1.png │ │ │ │ ├── blade_of_luck_2.png │ │ │ │ ├── blade_of_luck_3.png │ │ │ │ ├── blade_of_luck_4.png │ │ │ │ ├── blue_squash_slice.png │ │ │ │ ├── bottle_of_windfly_dust.png │ │ │ │ ├── brass_dungeon_key.png │ │ │ │ ├── bucket_content │ │ │ │ │ ├── aerglow_fish.png │ │ │ │ │ └── virulent_quicksand.png │ │ │ │ ├── chaos_emerald.png │ │ │ │ ├── cloud_cape.png │ │ │ │ ├── cloudbloom_bouquet.png │ │ │ │ ├── conberry_boat.png │ │ │ │ ├── conberry_chest_boat.png │ │ │ │ ├── conberry_door.png │ │ │ │ ├── conberry_hanging_sign.png │ │ │ │ ├── conberry_sign.png │ │ │ │ ├── cooked_aerglow_fish.png │ │ │ │ ├── cooked_quail.png │ │ │ │ ├── cruderoot_boat.png │ │ │ │ ├── cruderoot_chest_boat.png │ │ │ │ ├── cruderoot_door.png │ │ │ │ ├── cruderoot_hanging_sign.png │ │ │ │ ├── cruderoot_sign.png │ │ │ │ ├── fodder_blue.png │ │ │ │ ├── fodder_green.png │ │ │ │ ├── fodder_red.png │ │ │ │ ├── frozen_goldenleaf_berries.png │ │ │ │ ├── gentle_wind.png │ │ │ │ ├── golden_grass_seeds.png │ │ │ │ ├── golden_swet_ball.png │ │ │ │ ├── goldenleaf_berries.png │ │ │ │ ├── gravitite_ring.png │ │ │ │ ├── green_squash_slice.png │ │ │ │ ├── holy_sword.png │ │ │ │ ├── medal_of_honor.png │ │ │ │ ├── music_disc_a_morning_wish.png │ │ │ │ ├── music_disc_above_the_rain.png │ │ │ │ ├── music_disc_atta.png │ │ │ │ ├── music_disc_cyclone.png │ │ │ │ ├── music_disc_faent.png │ │ │ │ ├── music_disc_himininn.png │ │ │ │ ├── music_disc_nabooru.png │ │ │ │ ├── placeholder.png │ │ │ │ ├── poison_bucket.png │ │ │ │ ├── purple_squash_slice.png │ │ │ │ ├── quail_egg.png │ │ │ │ ├── raw_aerglow_fish.png │ │ │ │ ├── raw_oratie.png │ │ │ │ ├── raw_quail.png │ │ │ │ ├── remedy_bucket.png │ │ │ │ ├── roseroot_boat.png │ │ │ │ ├── roseroot_chest_boat.png │ │ │ │ ├── roseroot_door.png │ │ │ │ ├── roseroot_hanging_sign.png │ │ │ │ ├── roseroot_sign.png │ │ │ │ ├── skyjade.png │ │ │ │ ├── skyjade_axe.png │ │ │ │ ├── skyjade_boots.png │ │ │ │ ├── skyjade_chain.png │ │ │ │ ├── skyjade_chestplate.png │ │ │ │ ├── skyjade_gloves.png │ │ │ │ ├── skyjade_helmet.png │ │ │ │ ├── skyjade_hoe.png │ │ │ │ ├── skyjade_lantern.png │ │ │ │ ├── skyjade_leggings.png │ │ │ │ ├── skyjade_moa_armor.png │ │ │ │ ├── skyjade_nugget.png │ │ │ │ ├── skyjade_pentald.png │ │ │ │ ├── skyjade_pickaxe.png │ │ │ │ ├── skyjade_ring.png │ │ │ │ ├── skyjade_shield.png │ │ │ │ ├── skyjade_shovel.png │ │ │ │ ├── skyjade_staff.png │ │ │ │ ├── skyjade_sword.png │ │ │ │ ├── skyroot_aerglow_fish_bucket.png │ │ │ │ ├── skyroot_virulent_quicksand_bucket.png │ │ │ │ ├── slider_eye.png │ │ │ │ ├── spooky_ring.png │ │ │ │ ├── squall_plate.png │ │ │ │ ├── squash_seeds.png │ │ │ │ ├── storm_bow.png │ │ │ │ ├── storm_bow_pulling_0.png │ │ │ │ ├── storm_bow_pulling_0_special.png │ │ │ │ ├── storm_bow_pulling_1.png │ │ │ │ ├── storm_bow_pulling_1_special.png │ │ │ │ ├── storm_bow_pulling_2.png │ │ │ │ ├── storm_bow_pulling_2_special.png │ │ │ │ ├── storm_bow_pulling_2_special.png.mcmeta │ │ │ │ ├── storm_sword.png │ │ │ │ ├── stormforged_boots.png │ │ │ │ ├── stormforged_chestplate.png │ │ │ │ ├── stormforged_gloves.png │ │ │ │ ├── stormforged_helmet.png │ │ │ │ ├── stormforged_leggings.png │ │ │ │ ├── stormforged_smithing_template.png │ │ │ │ ├── stratus_axe.png │ │ │ │ ├── stratus_boots.png │ │ │ │ ├── stratus_chestplate.png │ │ │ │ ├── stratus_gloves.png │ │ │ │ ├── stratus_helmet.png │ │ │ │ ├── stratus_hoe.png │ │ │ │ ├── stratus_ingot.png │ │ │ │ ├── stratus_leggings.png │ │ │ │ ├── stratus_pendant.png │ │ │ │ ├── stratus_pickaxe.png │ │ │ │ ├── stratus_ring.png │ │ │ │ ├── stratus_shield.png │ │ │ │ ├── stratus_shovel.png │ │ │ │ ├── stratus_smithing_template.png │ │ │ │ ├── stratus_sword.png │ │ │ │ ├── sun_core.png │ │ │ │ ├── sunroot_boat.png │ │ │ │ ├── sunroot_chest_boat.png │ │ │ │ ├── sunroot_door.png │ │ │ │ ├── sunroot_hanging_sign.png │ │ │ │ ├── sunroot_sign.png │ │ │ │ ├── virulent_quicksand_bucket.png │ │ │ │ ├── wind_shield.png │ │ │ │ ├── yagroot_boat.png │ │ │ │ ├── yagroot_chest_boat.png │ │ │ │ ├── yagroot_door.png │ │ │ │ ├── yagroot_hanging_sign.png │ │ │ │ └── yagroot_sign.png │ │ │ │ ├── mob_effect │ │ │ │ ├── moa_bonus_jumps.png │ │ │ │ └── valkyrie_valor.png │ │ │ │ ├── models │ │ │ │ ├── accessory │ │ │ │ │ ├── capes │ │ │ │ │ │ └── cloud_cape_accessory.png │ │ │ │ │ ├── gloves │ │ │ │ │ │ ├── skyjade_gloves_accessory.png │ │ │ │ │ │ ├── stormforged_gloves_accessory.png │ │ │ │ │ │ └── stratus_gloves_accessory.png │ │ │ │ │ ├── pendant │ │ │ │ │ │ ├── aercloud_necklace_accessory.png │ │ │ │ │ │ ├── medal_of_honor_accessory.png │ │ │ │ │ │ └── scarf.png │ │ │ │ │ └── wind_shield │ │ │ │ │ │ └── wind_shield_accessory.png │ │ │ │ └── armor │ │ │ │ │ ├── skyjade_layer_1.png │ │ │ │ │ ├── skyjade_layer_2.png │ │ │ │ │ ├── stormforged_layer_1.png │ │ │ │ │ ├── stormforged_layer_2.png │ │ │ │ │ ├── stratus_layer_1.png │ │ │ │ │ └── stratus_layer_2.png │ │ │ │ ├── particle │ │ │ │ ├── bubble.png │ │ │ │ ├── clover_0.png │ │ │ │ ├── clover_1.png │ │ │ │ ├── clover_2.png │ │ │ │ ├── clover_3.png │ │ │ │ ├── eots_explosion.png │ │ │ │ ├── poison_bubble0.png │ │ │ │ ├── poison_bubble1.png │ │ │ │ ├── poison_bubble2.png │ │ │ │ ├── poison_bubble3.png │ │ │ │ ├── roseroot_00.png │ │ │ │ ├── roseroot_01.png │ │ │ │ ├── roseroot_02.png │ │ │ │ ├── roseroot_03.png │ │ │ │ ├── roseroot_04.png │ │ │ │ ├── roseroot_05.png │ │ │ │ ├── roseroot_06.png │ │ │ │ ├── roseroot_07.png │ │ │ │ ├── roseroot_08.png │ │ │ │ ├── roseroot_09.png │ │ │ │ ├── roseroot_10.png │ │ │ │ ├── roseroot_11.png │ │ │ │ ├── roseroot_flowers_0.png │ │ │ │ ├── roseroot_flowers_1.png │ │ │ │ ├── roseroot_flowers_2.png │ │ │ │ ├── roseroot_flowers_3.png │ │ │ │ ├── roseroot_flowers_4.png │ │ │ │ ├── roseroot_flowers_5.png │ │ │ │ ├── roseroot_flowers_6.png │ │ │ │ └── roseroot_flowers_7.png │ │ │ │ └── trims │ │ │ │ └── color_palettes │ │ │ │ ├── skyjade.png │ │ │ │ ├── skyjade_darker.png │ │ │ │ ├── stormforged.png │ │ │ │ ├── stratus.png │ │ │ │ └── stratus_darker.png │ │ └── minecraft │ │ │ └── atlases │ │ │ └── armor_trims.json │ ├── data │ │ ├── aether │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── accepted_music_discs.json │ │ ├── curios │ │ │ └── tags │ │ │ │ └── items │ │ │ │ ├── aether_gloves.json │ │ │ │ └── aether_ring.json │ │ └── deep_aether │ │ │ ├── advancement │ │ │ ├── aether_champion.json │ │ │ ├── brass_dungeon.json │ │ │ ├── explore_aether.json │ │ │ ├── stratus_armor.json │ │ │ └── transform_poison.json │ │ │ ├── loot_table │ │ │ └── entities │ │ │ │ ├── aerglow_fish.json │ │ │ │ ├── eots_controller.json │ │ │ │ ├── quail.json │ │ │ │ └── venomite_bubble.json │ │ │ ├── neoforge │ │ │ └── biome_modifier │ │ │ │ ├── add_aerglow_fish_spawn.json │ │ │ │ ├── add_quail_spawn.json │ │ │ │ ├── aseterite.json │ │ │ │ ├── clorite.json │ │ │ │ ├── echaisy.json │ │ │ │ ├── golden_aspess.json │ │ │ │ ├── more_skyjade_ore.json │ │ │ │ ├── sky_tulips.json │ │ │ │ ├── skyjade_ore.json │ │ │ │ └── sterling_aercloud.json │ │ │ ├── structure │ │ │ ├── brass_dungeon │ │ │ │ ├── brass_dungeon_room_0.nbt │ │ │ │ ├── brass_dungeon_room_0_boss.nbt │ │ │ │ ├── brass_dungeon_room_1.nbt │ │ │ │ ├── brass_dungeon_room_1_boss.nbt │ │ │ │ ├── brass_dungeon_room_2.nbt │ │ │ │ ├── brass_dungeon_room_2_boss.nbt │ │ │ │ ├── brass_dungeon_room_3.nbt │ │ │ │ ├── brass_dungeon_room_3_boss.nbt │ │ │ │ ├── brass_dungeon_room_4.nbt │ │ │ │ ├── brass_dungeon_room_4_boss.nbt │ │ │ │ ├── door.nbt │ │ │ │ └── room_part_up.nbt │ │ │ └── sacred_lands │ │ │ │ ├── altar_camp.nbt │ │ │ │ ├── campfire.nbt │ │ │ │ └── combiner_corridor.nbt │ │ │ ├── tags │ │ │ ├── block │ │ │ │ └── rose_logs.json │ │ │ ├── item │ │ │ │ └── all_sticks.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ ├── has_aether_extra_flowers.json │ │ │ │ └── has_structure │ │ │ │ ├── altar_camp.json │ │ │ │ ├── campfire.json │ │ │ │ └── combiner_corridor.json │ │ │ ├── trim_material │ │ │ ├── skyjade.json │ │ │ └── stratus.json │ │ │ └── worldgen │ │ │ ├── biome │ │ │ ├── aerglow_forest.json │ │ │ ├── aerlavender_fields.json │ │ │ ├── blue_aerglow_forest.json │ │ │ ├── cloud.json │ │ │ ├── golden_grove.json │ │ │ ├── golden_heights.json │ │ │ ├── luminescent_forest.json │ │ │ ├── mystic_aerglow_forest.json │ │ │ ├── overgrown_cloud.json │ │ │ ├── sacred_lands.json │ │ │ └── yagroot_swamp.json │ │ │ ├── configured_feature │ │ │ └── aerlavender_field_trees_placement.json │ │ │ ├── noise │ │ │ └── golden_heights.json │ │ │ ├── placed_feature │ │ │ ├── aerlavender_field_trees.json │ │ │ ├── golden_heights_aercloud.json │ │ │ ├── golden_heights_ambrosium_ore.json │ │ │ └── golden_heights_trees.json │ │ │ ├── structure │ │ │ ├── altar_camp.json │ │ │ ├── campfire.json │ │ │ └── combiner_corridor.json │ │ │ ├── structure_set │ │ │ ├── altar_camp.json │ │ │ ├── campfire.json │ │ │ └── combiner_corridor.json │ │ │ └── template_pool │ │ │ ├── altar_camp.json │ │ │ ├── campfire.json │ │ │ └── combiner_corridor.json │ ├── deep_aether.mixins.json │ ├── deep_aether.png │ ├── pack.mcmeta │ └── packs │ │ ├── client │ │ └── deep_aether_tooltips │ │ │ ├── assets │ │ │ └── deep_aether │ │ │ │ └── lang │ │ │ │ └── en_us.json │ │ │ ├── pack.mcmeta │ │ │ └── pack.png │ │ ├── compat_recipes │ │ ├── aether_lost_content_compat │ │ │ ├── data │ │ │ │ └── deep_aether │ │ │ │ │ ├── advancement │ │ │ │ │ ├── aether_champion.json │ │ │ │ │ └── recipe │ │ │ │ │ │ ├── skyjade_shield.json │ │ │ │ │ │ ├── skyjade_shield_repairing.json │ │ │ │ │ │ ├── stratus_shield_repairing.json │ │ │ │ │ │ └── stratus_shield_stratus_smithing.json │ │ │ │ │ └── recipe │ │ │ │ │ ├── pink_aercloud_from_poison.json │ │ │ │ │ ├── skyjade_shield.json │ │ │ │ │ ├── skyjade_shield_repairing.json │ │ │ │ │ ├── stratus_shield_repairing.json │ │ │ │ │ └── stratus_shield_stratus_smithing.json │ │ │ └── pack.mcmeta │ │ ├── aether_lost_content_not_compat │ │ │ ├── data │ │ │ │ └── deep_aether │ │ │ │ │ └── recipe │ │ │ │ │ └── aerwhale_saddle.json │ │ │ └── pack.mcmeta │ │ ├── aether_redux_compat │ │ │ ├── data │ │ │ │ └── deep_aether │ │ │ │ │ ├── advancement │ │ │ │ │ └── recipe │ │ │ │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_slab_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_slab_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_stairs_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_stairs_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_wall_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_brick_wall_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_bricks_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tiles_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── blightmoss_holystone_tiles_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ │ │ │ ├── gilded_holystone_brick_slab_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_slab_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ │ │ │ ├── gilded_holystone_brick_stairs_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_stairs_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_wall_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_brick_wall_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_bricks_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ │ ├── gilded_holystone_tiles_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ │ └── gilded_holystone_tiles_from_gilded_holystone_stonecutting.json │ │ │ │ │ └── recipe │ │ │ │ │ ├── blightmoss_holystone_brick_slab.json │ │ │ │ │ ├── blightmoss_holystone_brick_slab_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_brick_slab_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_brick_stairs.json │ │ │ │ │ ├── blightmoss_holystone_brick_stairs_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_brick_stairs_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_brick_wall.json │ │ │ │ │ ├── blightmoss_holystone_brick_wall_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_brick_wall_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_bricks.json │ │ │ │ │ ├── blightmoss_holystone_bricks_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_slab.json │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_slab_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_stairs.json │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_stairs_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_wall.json │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tile_wall_from_blightmoss_holystone_tiles_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tiles.json │ │ │ │ │ ├── blightmoss_holystone_tiles_from_blightmoss_holystone_bricks_stonecutting.json │ │ │ │ │ ├── blightmoss_holystone_tiles_from_blightmoss_holystone_stonecutting.json │ │ │ │ │ ├── blue_berry_pie_from_poison.json │ │ │ │ │ ├── crystal_sapling_from_poison.json │ │ │ │ │ ├── divinite_from_poison.json │ │ │ │ │ ├── gilded_holystone_brick_slab.json │ │ │ │ │ ├── gilded_holystone_brick_slab_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_brick_slab_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_brick_stairs.json │ │ │ │ │ ├── gilded_holystone_brick_stairs_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_brick_stairs_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_brick_wall.json │ │ │ │ │ ├── gilded_holystone_brick_wall_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_brick_wall_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_bricks.json │ │ │ │ │ ├── gilded_holystone_bricks_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_slab.json │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_slab_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_stairs.json │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_stairs_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_wall.json │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tile_wall_from_gilded_holystone_tiles_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tiles.json │ │ │ │ │ ├── gilded_holystone_tiles_from_gilded_holystone_bricks_stonecutting.json │ │ │ │ │ ├── gilded_holystone_tiles_from_gilded_holystone_stonecutting.json │ │ │ │ │ ├── gravitite_ore_from_poison.json │ │ │ │ │ └── mossy_holystone_from_poison.json │ │ │ └── pack.mcmeta │ │ ├── ancient_aether_compat │ │ │ ├── data │ │ │ │ └── deep_aether │ │ │ │ │ └── recipe │ │ │ │ │ ├── aether_coarse_dirt_from_divine_gravel.json │ │ │ │ │ └── raw_valkyrum_from_poison.json │ │ │ └── pack.mcmeta │ │ ├── beyond_parity_compat │ │ │ ├── data │ │ │ │ └── deep_aether │ │ │ │ │ └── recipe │ │ │ │ │ ├── conberry_log_wall.json │ │ │ │ │ ├── conberry_wall.json │ │ │ │ │ ├── cruderoot_log_wall.json │ │ │ │ │ ├── cruderoot_wall.json │ │ │ │ │ ├── roseroot_log_wall.json │ │ │ │ │ ├── roseroot_wall.json │ │ │ │ │ ├── stripped_conberry_log_wall.json │ │ │ │ │ ├── stripped_conberry_wall.json │ │ │ │ │ ├── stripped_cruderoot_log_wall.json │ │ │ │ │ ├── stripped_cruderoot_wall.json │ │ │ │ │ ├── stripped_roseroot_log_wall.json │ │ │ │ │ ├── stripped_roseroot_wall.json │ │ │ │ │ ├── stripped_sunroot_log_wall.json │ │ │ │ │ ├── stripped_sunroot_wall.json │ │ │ │ │ ├── stripped_yagroot_log_wall.json │ │ │ │ │ ├── stripped_yagroot_wall.json │ │ │ │ │ ├── sunroot_log_wall.json │ │ │ │ │ ├── sunroot_wall.json │ │ │ │ │ ├── yagroot_log_wall.json │ │ │ │ │ └── yagroot_wall.json │ │ │ └── pack.mcmeta │ │ └── protect_your_moa_compat │ │ │ ├── data │ │ │ └── deep_aether │ │ │ │ └── recipe │ │ │ │ └── skyjade_moa_armor.json │ │ │ └── pack.mcmeta │ │ └── overrides │ │ ├── deep_aether_additional_assets │ │ ├── assets │ │ │ └── aether │ │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── construction │ │ │ │ │ ├── enchanted_gravitite.png │ │ │ │ │ ├── holystone_bricks.png │ │ │ │ │ └── zanite_block.png │ │ │ │ ├── dungeon │ │ │ │ │ ├── angelic_stone.png │ │ │ │ │ ├── carved_stone.png │ │ │ │ │ ├── hellfire_stone.png │ │ │ │ │ ├── light_angelic_stone.png │ │ │ │ │ ├── light_hellfire_stone.png │ │ │ │ │ └── sentry_stone.png │ │ │ │ ├── natural │ │ │ │ │ └── holystone.png │ │ │ │ └── utility │ │ │ │ │ ├── sun_altar_side.png │ │ │ │ │ └── sun_altar_top.png │ │ │ │ └── item │ │ │ │ ├── tools │ │ │ │ ├── gravitite_axe.png │ │ │ │ ├── gravitite_hoe.png │ │ │ │ ├── gravitite_pickaxe.png │ │ │ │ ├── gravitite_shovel.png │ │ │ │ ├── zanite_axe.png │ │ │ │ ├── zanite_hoe.png │ │ │ │ ├── zanite_pickaxe.png │ │ │ │ └── zanite_shovel.png │ │ │ │ └── weapons │ │ │ │ ├── flaming_sword.png │ │ │ │ ├── gravitite_sword.png │ │ │ │ ├── holy_sword.png │ │ │ │ ├── holystone_sword.png │ │ │ │ ├── lightning_knife.png │ │ │ │ ├── lightning_sword.png │ │ │ │ ├── phoenix_bow.png │ │ │ │ ├── phoenix_bow_pulling_0.png │ │ │ │ ├── phoenix_bow_pulling_1.png │ │ │ │ ├── phoenix_bow_pulling_2.png │ │ │ │ ├── pig_slayer.png │ │ │ │ ├── skyroot_sword.png │ │ │ │ ├── valkyrie_lance.png │ │ │ │ ├── vampire_blade.png │ │ │ │ └── zanite_sword.png │ │ ├── pack.mcmeta │ │ └── pack.png │ │ ├── deep_aether_emissivity │ │ ├── assets │ │ │ └── deep_aether │ │ │ │ ├── models │ │ │ │ └── block │ │ │ │ │ ├── flowering_blue_roseroot_leaves.json │ │ │ │ │ ├── flowering_roseroot_leaves.json │ │ │ │ │ └── skyjade_ore.json │ │ │ │ └── textures │ │ │ │ └── block │ │ │ │ ├── flowering_blue_roseroot_leaves_overlay.png │ │ │ │ ├── flowering_roseroot_leaves_overlay.png │ │ │ │ └── skyjade_ore_overlay.png │ │ ├── pack.mcmeta │ │ └── pack.png │ │ └── golden_swet_ball │ │ ├── DAGoldenSwetBallAetherGenesisFixData │ │ ├── data │ │ │ └── deep_aether │ │ │ │ └── recipes │ │ │ │ └── golden_swet_ball.json │ │ └── pack.mcmeta │ │ ├── DAGoldenSwetBallAetherReduxFixData │ │ ├── data │ │ │ └── deep_aether │ │ │ │ └── recipes │ │ │ │ └── golden_swet_ball.json │ │ └── pack.mcmeta │ │ └── DAGoldenSwetBallFixClient │ │ ├── assets │ │ ├── aether_genesis │ │ │ └── models │ │ │ │ └── item │ │ │ │ └── golden_swet_ball.json │ │ └── aether_redux │ │ │ └── models │ │ │ └── item │ │ │ └── golden_swet_ball.json │ │ ├── pack.mcmeta │ │ └── pack.png │ └── templates │ └── META-INF │ └── neoforge.mods.toml └── update.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/CREDITS.md -------------------------------------------------------------------------------- /LICENSE-ASSETS.txt: -------------------------------------------------------------------------------- 1 | ALL RIGHTS RESERVED 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/aeroblender-1.21.1-1.0.0-neoforge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/libs/aeroblender-1.21.1-1.0.0-neoforge.jar -------------------------------------------------------------------------------- /libs/aether_genesis-1.21.1-0.0.1-neoforge.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/libs/aether_genesis-1.21.1-0.0.1-neoforge.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/aersmog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/aersmog.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/aether_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/aether_mud.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/aseterite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/aseterite.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/clorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/clorite.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/combiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/combiner.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/echaisy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/echaisy.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/highstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/highstone.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/iaspove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/iaspove.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/blockstates/sky_tulips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/blockstates/sky_tulips.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/aersmog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/aersmog.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/aseterite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/aseterite.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/boss_doorway_light_nimbus_pillar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/boss_doorway_light_nimbus_stone.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/boss_doorway_nimbus_pillar.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/boss_doorway_nimbus_stone.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/clorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/clorite.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/combiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/combiner.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/echaisy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/echaisy.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/highstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/highstone.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/block/iaspove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/block/iaspove.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aercloud_root_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aercloud_root_carpet" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aercloud_roots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aercloud_roots" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aersmog.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aersmog" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aether_fish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aether_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/aether_mud.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/antidote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/antidote.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite_bricks_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite_bricks_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite_bricks_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite_bricks_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/aseterite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aseterite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/baby_zephyr_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/big_holystone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/big_holystone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/big_holystone_bricks_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/big_holystone_bricks_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/big_holystone_bricks_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/big_holystone_bricks_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blightmoss_holystone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blightmoss_holystone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blightmoss_holystone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blightmoss_holystone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blightmoss_holystone_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blightmoss_holystone_tile_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blightmoss_holystone_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blightmoss_holystone_tile_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blightmoss_holystone_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blightmoss_holystone_tiles" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blue_roseroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blue_roseroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/blue_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/blue_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/carved_blue_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/carved_blue_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/carved_green_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/carved_green_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/carved_purple_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/carved_purple_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/chiseled_holystone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/chiseled_holystone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/chromatic_aercloud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/chromatic_aercloud" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/clorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/clorite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/clorite_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/clorite_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/clorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/clorite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/clorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/clorite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cloud_cape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/cloud_cape.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cloudbloom_carpet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cloudbloom_carpet" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cobbled_aseterite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cobbled_aseterite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cobbled_aseterite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cobbled_aseterite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cobbled_aseterite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cobbled_aseterite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/combiner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/combiner" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/conberry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/conberry_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/cruderoot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/cruderoot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/echaisy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/echaisy.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/flowering_blue_roseroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/flowering_blue_roseroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/flowering_roseroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/flowering_roseroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gentle_wind_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_tile_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_tile_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/gilded_holystone_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/gilded_holystone_tiles" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/green_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/green_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/highstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/highstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_pillar_down.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_pillar_down" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_pillar_up.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_pillar_up" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_tile_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_tile_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/holystone_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/holystone_tiles" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/iaspove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/iaspove.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/light_nimbus_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/light_nimbus_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/light_nimbus_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/light_nimbus_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_tile_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_tile_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_tile_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_tile_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/mossy_holystone_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/mossy_holystone_tiles" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/nimbus_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/nimbus_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/nimbus_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/nimbus_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/nimbus_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/nimbus_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/nimbus_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/nimbus_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_aseterite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_aseterite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_aseterite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_aseterite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_aseterite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_aseterite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_clorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_clorite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_clorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_clorite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/polished_clorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/polished_clorite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/purple_squash.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/purple_squash" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/quail_egg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/quail_egg.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/quail_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/rain_aercloud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/rain_aercloud" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/raw_clorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/raw_clorite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/raw_clorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/raw_clorite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/raw_clorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/raw_clorite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/raw_quail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/raw_quail.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/roseroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/roseroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sky_tulips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/sky_tulips.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/skyjade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/skyjade.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/skyjade_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/skyjade_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/slider_eye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/slider_eye.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sterling_aercloud.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sterling_aercloud" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/storm_bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/storm_bow.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_conberry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_conberry_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_conberry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_conberry_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_cruderoot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_cruderoot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_cruderoot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_cruderoot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_roseroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_roseroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_roseroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_roseroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_sunroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_sunroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_sunroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_sunroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_yagroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_yagroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/stripped_yagroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/stripped_yagroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sun_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/assets/deep_aether/models/item/sun_core.json -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/sunroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/sunroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/venomite_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/windfly_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/deep_aether/models/item/yagroot_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/yagroot_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/block/aerclouds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/block/aerclouds.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/block/dungeon_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/block/dungeon_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/entity_type/unhookable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/entity_type/unhookable.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/entity_type/unlaunchable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/entity_type/unlaunchable.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/accessories_capes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/accessories_capes.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/accessories_gloves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/accessories_gloves.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/accessories_rings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/accessories_rings.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/accessories_shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/accessories_shields.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/aerclouds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/aerclouds.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/bronze_dungeon_loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/bronze_dungeon_loot.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/dungeon_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/dungeon_keys.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/gold_dungeon_loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/gold_dungeon_loot.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/planks_crafting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/planks_crafting.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/silver_dungeon_loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/silver_dungeon_loot.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/item/skyroot_repairing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/item/skyroot_repairing.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/sound_event/boss_music.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/sound_event/boss_music.json -------------------------------------------------------------------------------- /src/generated/resources/data/aether/tags/worldgen/biome/is_aether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/aether/tags/worldgen/biome/is_aether.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/chains.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fence_gates/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/fence_gates/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/fences/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ore_rates/singular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/ore_rates/singular.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/ores.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/block/storage_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/bosses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/entity_type/bosses.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/animal_foods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/animal_foods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/buckets.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/entity_water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/buckets/entity_water.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/chains.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/crops.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/eggs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/eggs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fence_gates/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/fence_gates/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/fences/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/berry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/berry.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/cooked_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/cooked_fish.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/cooked_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/cooked_meat.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/fruit.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/raw_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/raw_fish.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/raw_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/foods/raw_meat.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/gems.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/ingots.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/mushrooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/mushrooms.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/music_discs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/music_discs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/nuggets.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ore_rates/singular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/ore_rates/singular.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/ores.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/seeds.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/storage_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/tools/bow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/ranged_weapon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/c/tags/item/tools/ranged_weapon.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/enchantment/gloves_reach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/enchantment/gloves_reach.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/jukebox_song/atta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/jukebox_song/atta.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/jukebox_song/cyclone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/jukebox_song/cyclone.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/jukebox_song/faent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/jukebox_song/faent.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/jukebox_song/himininn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/jukebox_song/himininn.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/jukebox_song/nabooru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/jukebox_song/nabooru.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aether_mud_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aether_mud_bricks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/afterburner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/afterburner.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/antidote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/antidote.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aseterite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aseterite.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aseterite_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aseterite_bricks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aseterite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aseterite_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aseterite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aseterite_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/aseterite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/aseterite_wall.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cake.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/clorite_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/clorite_pillar.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/clorite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/clorite_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/clorite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/clorite_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/clorite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/clorite_wall.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cloudbloom_carpet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cloudbloom_carpet.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/combiner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/combiner.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_boat.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_button.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_planks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_trapdoor.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/conberry_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/conberry_wood.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cooked_quail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cooked_quail.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_boat.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_button.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_planks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/cruderoot_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/cruderoot_wood.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/glowing_spores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/glowing_spores.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/golden_swet_ball.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/golden_swet_ball.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/gravitite_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/gravitite_ring.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/holystone_pillar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/holystone_pillar.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/holystone_tiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/holystone_tiles.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/mossy_cobblestone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/mossy_cobblestone.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/mossy_holystone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/mossy_holystone.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/nimbus_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/nimbus_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/nimbus_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/nimbus_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/nimbus_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/nimbus_wall.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/packed_aether_mud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/packed_aether_mud.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/poison_dart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/poison_dart.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/polished_clorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/polished_clorite.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/pumpkin_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/pumpkin_pie.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/raw_clorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/raw_clorite.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/raw_clorite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/raw_clorite_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/raw_clorite_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/raw_clorite_wall.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_boat.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_button.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_planks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_trapdoor.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/roseroot_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/roseroot_wood.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_axe.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_boots.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_gloves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_gloves.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_helmet.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_hoe.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_leggings.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_nugget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_nugget.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_pickaxe.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_ring.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_shovel.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/skyjade_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/skyjade_sword.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/stratus_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/stratus_ingot.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_boat.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_button.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_planks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_trapdoor.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/sunroot_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/sunroot_wood.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_boat.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_button.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_planks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_slab.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_trapdoor.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/recipe/yagroot_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/recipe/yagroot_wood.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/conberry_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/conberry_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/nimbus_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/nimbus_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/roseroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/roseroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/sunroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/sunroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/totems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/totems.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/block/yagroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/block/yagroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/fluid/poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/fluid/poison.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/conberry_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/conberry_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/cruderoot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/cruderoot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/flawless_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/flawless_items.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/nimbus_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/nimbus_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/poison_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/poison_bucket.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/quail_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/quail_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/roseroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/roseroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/skyjade_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/skyjade_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/squash_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/squash_slice.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/sunroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/sunroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/deep_aether/tags/item/yagroot_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/deep_aether/tags/item/yagroot_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/all_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/all_signs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/bee_growables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/bee_growables.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/buttons.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/climbable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/climbable.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/crops.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/dirt.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/doors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/logs_that_burn.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/mineable/axe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/mineable/hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/mineable/hoe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/mineable/shovel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/mineable/shovel.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/needs_iron_tool.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/pressure_plates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/pressure_plates.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/saplings.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/small_flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/snaps_goat_horn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/snaps_goat_horn.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/standing_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/standing_signs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/tall_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/tall_flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/trapdoors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wall_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wall_signs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/walls.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wooden_buttons.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wooden_doors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wooden_fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wooden_slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/block/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/block/wooden_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/entity_type/arrows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/entity_type/arrows.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/axes.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/boats.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/buttons.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/cat_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/cat_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/chest_boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/chest_boats.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/chicken_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/chicken_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/compasses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/compasses.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/doors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/enchantable/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/enchantable/bow.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/fishes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/fishes.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/fox_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/fox_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/hanging_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/hanging_signs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/hoes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/hoes.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/leaves.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/logs_that_burn.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/meat.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/ocelot_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/ocelot_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/parrot_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/parrot_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/pickaxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/pickaxes.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/saplings.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/shovels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/shovels.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/signs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/small_flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/swords.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/tall_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/tall_flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/trapdoors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/trim_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/trim_materials.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/trimmable_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/trimmable_armor.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/walls.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wolf_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wolf_food.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_buttons.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_doors.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/item/wooden_trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/minecraft/tags/item/wooden_trapdoors.json -------------------------------------------------------------------------------- /src/generated/resources/data/neoforge/data_maps/item/compostables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/generated/resources/data/neoforge/data_maps/item/compostables.json -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/DAEnumExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/DAEnumExtensions.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/DeepAether.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/DeepAether.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/DeepAetherConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/DeepAetherConfig.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/datagen/loot/DALoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/datagen/loot/DALoot.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/datagen/tags/DATags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/datagen/tags/DATags.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/entity/DABoatEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/entity/DABoatEntity.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/entity/PoisonItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/entity/PoisonItem.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/entity/StormArrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/entity/StormArrow.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/fluids/DAFluidTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/fluids/DAFluidTypes.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/fluids/PoisonFluid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/fluids/PoisonFluid.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DABlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DABlocks.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAEntities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAEntities.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAFluids.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAFluids.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAItems.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAMenuTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAMenuTypes.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAMenus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAMenus.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAMobEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAMobEffects.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAParticles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAParticles.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAPotions.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DASounds.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DASounds.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DATabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DATabs.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DATiers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DATiers.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/init/DAWoodTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/init/DAWoodTypes.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/item/misc/DAFoods.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/item/misc/DAFoods.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/item/misc/SunClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/item/misc/SunClock.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/mixin/GlovesMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/mixin/GlovesMixin.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/screen/CombinerMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/screen/CombinerMenu.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/util/StructureUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/java/io/github/razordevs/deep_aether/util/StructureUtil.java -------------------------------------------------------------------------------- /src/main/java/io/github/razordevs/deep_aether/world/feature/tree/grower/BlueRoserootTreeGrower.java: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/enumextensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/META-INF/enumextensions.json -------------------------------------------------------------------------------- /src/main/resources/assets/aether/tips/deep_aether_tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/aether/tips/deep_aether_tips.json -------------------------------------------------------------------------------- /src/main/resources/assets/aether/tips/poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/aether/tips/poison.json -------------------------------------------------------------------------------- /src/main/resources/assets/aether/tips/poison_squashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/aether/tips/poison_squashes.json -------------------------------------------------------------------------------- /src/main/resources/assets/aether/tips/squashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/aether/tips/squashes.json -------------------------------------------------------------------------------- /src/main/resources/assets/aether/tips/sterling_aercloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/aether/tips/sterling_aercloud.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/aercloud_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/aercloud_roots.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/aerwhale_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/aerwhale_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/blue_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/blue_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/glowing_spores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/glowing_spores.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/glowing_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/glowing_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/golden_flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/golden_flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/golden_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/golden_vines.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/green_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/green_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/moa_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/moa_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/poison.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/poison_cauldron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/poison_cauldron.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/purple_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/purple_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/skyjade_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/skyjade_chain.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/skyjade_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/skyjade_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/skyroot_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/skyroot_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/squash_stem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/squash_stem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/stratus_debris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/stratus_debris.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/sunroot_hanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/sunroot_hanger.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/sunroot_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/sunroot_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/yagroot_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/yagroot_roots.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/yagroot_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/yagroot_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/blockstates/zephyr_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/blockstates/zephyr_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/lang/it_it.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/aercloud_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/aercloud_roots.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/aerwhale_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/aerwhale_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/blue_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/blue_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/glowing_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/glowing_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/golden_vines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/golden_vines.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/green_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/green_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/moa_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/moa_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/poison.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/purple_squash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/purple_squash.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/skyjade_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/skyjade_chain.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/stratus_debris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/stratus_debris.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/sunroot_hanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/sunroot_hanger.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/sunroot_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/sunroot_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/yagroot_roots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/yagroot_roots.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/yagroot_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/yagroot_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/block/zephyr_totem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/block/zephyr_totem.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/aerwhale_totem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/aerwhale_totem" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck_0.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck_1.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck_2.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck_3.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/blade_of_luck_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/blade_of_luck_4.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/bronze_compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/bronze_compass.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/floaty_scarf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/floaty_scarf.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/fodder_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/fodder_blue.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/fodder_green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/fodder_green.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/fodder_red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/fodder_red.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/gold_compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/gold_compass.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/golden_heights_dirt_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/golden_heights_dirt_path" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/moa_fodder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/moa_fodder.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/moa_totem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/moa_totem" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/rotten_roseroot_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/rotten_roseroot_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/silver_compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/silver_compass.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/skyjade_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/skyjade_shield.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/skyroot_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/skyroot_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/stratus_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/stratus_shield.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/sun_clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/sun_clock.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/sunroot_hanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/sunroot_hanger.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/yagroot_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/models/item/yagroot_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/models/item/zephyr_totem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "deep_aether:block/zephyr_totem" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/clover.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/clover.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/clover_lucky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/clover_lucky.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/clover_unlucky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/clover_unlucky.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/clover_very_lucky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/clover_very_lucky.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/eots_explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/eots_explosion.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/eots_fight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/eots_fight.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/eots_pre_fight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/eots_pre_fight.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/mythical_particle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/mythical_particle.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/poison_bubbles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/poison_bubbles.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/particles/roseroot_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/particles/roseroot_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/aethyus-variations.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/aethyus-variations.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/atta_mono.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/atta_mono.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/eots/blowing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/eots/blowing.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/eots/shoot_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/eots/shoot_1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/eots/shoot_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/eots/shoot_2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/hurt1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/hurt1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/hurt2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/hurt2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/say1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/say1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/say2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/say2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/quail/say3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/quail/say3.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/venomite/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/venomite/death.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/venomite/hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/venomite/hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/entity/windfly/hurt.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/entity/windfly/hurt.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/faent_mono.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/faent_mono.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/himininn_mono.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/himininn_mono.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/menu_mono.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/menu_mono.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/quizzly-cyclone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/quizzly-cyclone.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/victory_jingle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/victory_jingle.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/sounds/wooshwoosh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/sounds/wooshwoosh.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/aerlavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/aerlavender.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/aersmog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/aersmog.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/aether_mud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/aether_mud.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/aseterite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/aseterite.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/clorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/clorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/combiner_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/combiner_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/combiner_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/combiner_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/conberry_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/conberry_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/cruderoot_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/cruderoot_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/echaisy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/echaisy.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/feather_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/feather_grass.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/golden_aspess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/golden_aspess.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/golden_vines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/golden_vines.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/highstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/highstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/iaspove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/iaspove.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/moa_totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/moa_totem.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/nimbus_pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/nimbus_pillar.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/nimbus_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/nimbus_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/poison_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/poison_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/rain_aercloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/rain_aercloud.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/raw_clorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/raw_clorite.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/roseroot_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/roseroot_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/sky_tulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/sky_tulips.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/skyjade_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/skyjade_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/skyjade_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/skyjade_chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/skyjade_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/skyjade_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/squall_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/squall_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/squash_stem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/squash_stem.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/stratus_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/stratus_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/sunroot_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/sunroot_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/yagroot_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/yagroot_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/yagroot_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/yagroot_vine.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/block/zephyr_totem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/block/zephyr_totem.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/aerglow_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/aerglow_fish.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/baby_zephyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/baby_zephyr.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/boat/sunroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/boat/sunroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/boat/yagroot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/boat/yagroot.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/gentle_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/gentle_wind.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/entity/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/entity/quail_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/gui/combiner_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/gui/combiner_gui.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/gui/deep_aether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/gui/deep_aether.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/afterburner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/afterburner.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/antidote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/antidote.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/bio_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/bio_crystal.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/chaos_emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/chaos_emerald.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/cloud_cape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/cloud_cape.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/conberry_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/conberry_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/conberry_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/conberry_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/conberry_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/conberry_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/cooked_quail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/cooked_quail.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/cruderoot_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/cruderoot_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/cruderoot_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/cruderoot_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/cruderoot_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/cruderoot_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/fodder_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/fodder_blue.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/fodder_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/fodder_green.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/fodder_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/fodder_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/gentle_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/gentle_wind.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/gravitite_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/gravitite_ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/holy_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/holy_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/medal_of_honor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/medal_of_honor.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/placeholder.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/poison_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/poison_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/quail_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/quail_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/raw_oratie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/raw_oratie.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/raw_quail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/raw_quail.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/remedy_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/remedy_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/roseroot_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/roseroot_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/roseroot_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/roseroot_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/roseroot_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/roseroot_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_chain.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_gloves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_gloves.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_nugget.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_staff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_staff.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/skyjade_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/skyjade_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/slider_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/slider_eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/spooky_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/spooky_ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/squall_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/squall_plate.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/squash_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/squash_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/storm_bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/storm_bow.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/storm_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/storm_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_boots.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_gloves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_gloves.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_helmet.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_ingot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_ingot.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_ring.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/stratus_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/stratus_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/sun_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/sun_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/sunroot_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/sunroot_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/sunroot_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/sunroot_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/sunroot_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/sunroot_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/wind_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/wind_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/yagroot_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/yagroot_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/yagroot_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/yagroot_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/item/yagroot_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/item/yagroot_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/particle/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/particle/bubble.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/particle/clover_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/particle/clover_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/particle/clover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/particle/clover_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/particle/clover_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/particle/clover_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/deep_aether/textures/particle/clover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/deep_aether/textures/particle/clover_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/atlases/armor_trims.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/assets/minecraft/atlases/armor_trims.json -------------------------------------------------------------------------------- /src/main/resources/data/aether/tags/items/accepted_music_discs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/aether/tags/items/accepted_music_discs.json -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/items/aether_gloves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/curios/tags/items/aether_gloves.json -------------------------------------------------------------------------------- /src/main/resources/data/curios/tags/items/aether_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/curios/tags/items/aether_ring.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/advancement/aether_champion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/advancement/aether_champion.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/advancement/brass_dungeon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/advancement/brass_dungeon.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/advancement/explore_aether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/advancement/explore_aether.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/advancement/stratus_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/advancement/stratus_armor.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/advancement/transform_poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/advancement/transform_poison.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/loot_table/entities/quail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/loot_table/entities/quail.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/structure/brass_dungeon/door.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/structure/brass_dungeon/door.nbt -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/tags/block/rose_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/tags/block/rose_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/tags/item/all_sticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/tags/item/all_sticks.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/trim_material/skyjade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/trim_material/skyjade.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/trim_material/stratus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/trim_material/stratus.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/aerglow_forest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/aerglow_forest.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/cloud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/cloud.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/golden_grove.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/golden_grove.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/golden_heights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/golden_heights.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/sacred_lands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/sacred_lands.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/biome/yagroot_swamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/biome/yagroot_swamp.json -------------------------------------------------------------------------------- /src/main/resources/data/deep_aether/worldgen/structure/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/data/deep_aether/worldgen/structure/campfire.json -------------------------------------------------------------------------------- /src/main/resources/deep_aether.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/deep_aether.mixins.json -------------------------------------------------------------------------------- /src/main/resources/deep_aether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/deep_aether.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/main/resources/packs/client/deep_aether_tooltips/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/packs/client/deep_aether_tooltips/pack.mcmeta -------------------------------------------------------------------------------- /src/main/resources/packs/client/deep_aether_tooltips/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/packs/client/deep_aether_tooltips/pack.png -------------------------------------------------------------------------------- /src/main/resources/packs/compat_recipes/aether_redux_compat/data/deep_aether/recipe/gravitite_ore_from_poison.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/main/resources/packs/overrides/deep_aether_emissivity/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/resources/packs/overrides/deep_aether_emissivity/pack.png -------------------------------------------------------------------------------- /src/main/templates/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/src/main/templates/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RazorDevs/Deep-Aether/HEAD/update.json --------------------------------------------------------------------------------