├── .gitattributes ├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── LICENSE ├── README.md ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── generated └── resources │ ├── assets │ └── theaurorian │ │ ├── blockstates │ │ ├── aurorian_andesite.json │ │ ├── aurorian_andesite_slab.json │ │ ├── aurorian_andesite_stairs.json │ │ ├── aurorian_andesite_wall.json │ │ ├── aurorian_barrier_stone.json │ │ ├── aurorian_castle_rune_stone.json │ │ ├── aurorian_castle_rune_stone_slab.json │ │ ├── aurorian_castle_rune_stone_stairs.json │ │ ├── aurorian_castle_rune_stone_wall.json │ │ ├── aurorian_coal_block.json │ │ ├── aurorian_coal_ore.json │ │ ├── aurorian_cobblestone.json │ │ ├── aurorian_cobblestone_slab.json │ │ ├── aurorian_cobblestone_stairs.json │ │ ├── aurorian_cobblestone_wall.json │ │ ├── aurorian_copper_ore.json │ │ ├── aurorian_diamond_ore.json │ │ ├── aurorian_diorite.json │ │ ├── aurorian_diorite_slab.json │ │ ├── aurorian_diorite_stairs.json │ │ ├── aurorian_diorite_wall.json │ │ ├── aurorian_dirt.json │ │ ├── aurorian_emerald_ore.json │ │ ├── aurorian_erosive.json │ │ ├── aurorian_glass.json │ │ ├── aurorian_glass_pane.json │ │ ├── aurorian_gold_ore.json │ │ ├── aurorian_granite.json │ │ ├── aurorian_granite_slab.json │ │ ├── aurorian_granite_stairs.json │ │ ├── aurorian_granite_wall.json │ │ ├── aurorian_grass.json │ │ ├── aurorian_grass_block.json │ │ ├── aurorian_grass_light.json │ │ ├── aurorian_iron_ore.json │ │ ├── aurorian_lapis_ore.json │ │ ├── aurorian_lily_pad.json │ │ ├── aurorian_peridotite.json │ │ ├── aurorian_peridotite_slab.json │ │ ├── aurorian_peridotite_stairs.json │ │ ├── aurorian_peridotite_wall.json │ │ ├── aurorian_portal_frame_bricks.json │ │ ├── aurorian_redstone_ore.json │ │ ├── aurorian_steel_block.json │ │ ├── aurorian_steel_castle_rune_stone.json │ │ ├── aurorian_steel_castle_rune_stone_slab.json │ │ ├── aurorian_steel_castle_rune_stone_stairs.json │ │ ├── aurorian_steel_castle_rune_stone_wall.json │ │ ├── aurorian_stone.json │ │ ├── aurorian_stone_brick_slab.json │ │ ├── aurorian_stone_brick_stairs.json │ │ ├── aurorian_stone_brick_wall.json │ │ ├── aurorian_stone_bricks.json │ │ ├── aurorian_stone_slab.json │ │ ├── aurorian_stone_stairs.json │ │ ├── aurorian_stone_wall.json │ │ ├── aurorian_water_grass.json │ │ ├── aurorian_water_mushroom.json │ │ ├── blueberry_bush.json │ │ ├── bright_moon_sand.json │ │ ├── bright_moon_sandstone.json │ │ ├── cerulean_block.json │ │ ├── cerulean_castle_rune_stone.json │ │ ├── cerulean_castle_rune_stone_slab.json │ │ ├── cerulean_castle_rune_stone_stairs.json │ │ ├── cerulean_castle_rune_stone_wall.json │ │ ├── cerulean_cluster.json │ │ ├── cerulean_ore.json │ │ ├── chiseled_dark_stone_brick_slab.json │ │ ├── chiseled_dark_stone_brick_stairs.json │ │ ├── chiseled_dark_stone_brick_wall.json │ │ ├── chiseled_dark_stone_bricks.json │ │ ├── chiseled_moon_temple_brick_slab.json │ │ ├── chiseled_moon_temple_brick_stairs.json │ │ ├── chiseled_moon_temple_brick_wall.json │ │ ├── chiseled_moon_temple_bricks.json │ │ ├── chiseled_rune_stone.json │ │ ├── chiseled_rune_stone_slab.json │ │ ├── chiseled_rune_stone_stairs.json │ │ ├── chiseled_rune_stone_wall.json │ │ ├── crisped_mallow.json │ │ ├── crystalline_castle_rune_stone.json │ │ ├── crystalline_castle_rune_stone_slab.json │ │ ├── crystalline_castle_rune_stone_stairs.json │ │ ├── crystalline_castle_rune_stone_wall.json │ │ ├── cursed_frost_tree_leaves.json │ │ ├── cursed_frost_tree_log.json │ │ ├── cursed_frost_tree_planks.json │ │ ├── cursed_frost_tree_sapling.json │ │ ├── cursed_frost_tree_wood.json │ │ ├── cursed_frost_wood_button.json │ │ ├── cursed_frost_wood_door.json │ │ ├── cursed_frost_wood_fence.json │ │ ├── cursed_frost_wood_fence_gate.json │ │ ├── cursed_frost_wood_hanging_sign.json │ │ ├── cursed_frost_wood_pressure_plate.json │ │ ├── cursed_frost_wood_sign.json │ │ ├── cursed_frost_wood_slab.json │ │ ├── cursed_frost_wood_stairs.json │ │ ├── cursed_frost_wood_trapdoor.json │ │ ├── cursed_frost_wood_wall_hanging_sign.json │ │ ├── cursed_frost_wood_wall_sign.json │ │ ├── curtain_tree_leaves.json │ │ ├── curtain_tree_log.json │ │ ├── curtain_tree_planks.json │ │ ├── curtain_tree_sapling.json │ │ ├── curtain_tree_wood.json │ │ ├── curtain_wood_button.json │ │ ├── curtain_wood_door.json │ │ ├── curtain_wood_fence.json │ │ ├── curtain_wood_fence_gate.json │ │ ├── curtain_wood_hanging_sign.json │ │ ├── curtain_wood_pressure_plate.json │ │ ├── curtain_wood_sign.json │ │ ├── curtain_wood_slab.json │ │ ├── curtain_wood_stairs.json │ │ ├── curtain_wood_trapdoor.json │ │ ├── curtain_wood_wall_hanging_sign.json │ │ ├── curtain_wood_wall_sign.json │ │ ├── cut_moon_sandstone.json │ │ ├── dark_stone_bars.json │ │ ├── dark_stone_brick_slab.json │ │ ├── dark_stone_brick_stairs.json │ │ ├── dark_stone_brick_wall.json │ │ ├── dark_stone_bricks.json │ │ ├── dark_stone_fancy.json │ │ ├── dark_stone_gate.json │ │ ├── dark_stone_gate_keyhole.json │ │ ├── dark_stone_glass.json │ │ ├── dark_stone_glass_pane.json │ │ ├── dark_stone_lamp.json │ │ ├── dark_stone_layers.json │ │ ├── dark_stone_pillar.json │ │ ├── equinox_flower.json │ │ ├── erosive_aurorian_copper_ore.json │ │ ├── erosive_aurorian_diamond_ore.json │ │ ├── erosive_aurorian_emerald_ore.json │ │ ├── erosive_aurorian_gold_ore.json │ │ ├── erosive_aurorian_iron_ore.json │ │ ├── erosive_aurorian_lapis_ore.json │ │ ├── erosive_aurorian_redstone_ore.json │ │ ├── erosive_cerulean_ore.json │ │ ├── erosive_geode_ore.json │ │ ├── erosive_moonstone_ore.json │ │ ├── filthy_ice.json │ │ ├── frost_snow_grass.json │ │ ├── geode_ore.json │ │ ├── ice_calendula.json │ │ ├── indigo_mushroom.json │ │ ├── indigo_mushroom_crystal.json │ │ ├── large_cerulean_bud.json │ │ ├── large_filthy_ice_spike.json │ │ ├── large_moonstone_bud.json │ │ ├── lavender_crop.json │ │ ├── lavender_plant.json │ │ ├── light_aurorian_grass_block.json │ │ ├── luminous_aurorian_castle_rune_stone.json │ │ ├── luminous_aurorian_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_castle_rune_stone_wall.json │ │ ├── luminous_aurorian_steel_castle_rune_stone.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ │ ├── luminous_cerulean_castle_rune_stone.json │ │ ├── luminous_cerulean_castle_rune_stone_slab.json │ │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── luminous_cerulean_castle_rune_stone_wall.json │ │ ├── luminous_crystalline_castle_rune_stone.json │ │ ├── luminous_crystalline_castle_rune_stone_slab.json │ │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── luminous_crystalline_castle_rune_stone_wall.json │ │ ├── luminous_moon_castle_rune_stone.json │ │ ├── luminous_moon_castle_rune_stone_slab.json │ │ ├── luminous_moon_castle_rune_stone_stairs.json │ │ ├── luminous_moon_castle_rune_stone_wall.json │ │ ├── medium_cerulean_bud.json │ │ ├── medium_filthy_ice_spike.json │ │ ├── medium_moonstone_bud.json │ │ ├── molten_aurorian_steel.json │ │ ├── molten_cerulean.json │ │ ├── molten_moonstone.json │ │ ├── moon_castle_rune_stone.json │ │ ├── moon_castle_rune_stone_slab.json │ │ ├── moon_castle_rune_stone_stairs.json │ │ ├── moon_castle_rune_stone_wall.json │ │ ├── moon_frost_flower.json │ │ ├── moon_glass.json │ │ ├── moon_glass_pane.json │ │ ├── moon_sand.json │ │ ├── moon_sand_river.json │ │ ├── moon_sandstone.json │ │ ├── moon_temple_bars.json │ │ ├── moon_temple_brick_slab.json │ │ ├── moon_temple_brick_stairs.json │ │ ├── moon_temple_brick_wall.json │ │ ├── moon_temple_bricks.json │ │ ├── moon_temple_cell_gate.json │ │ ├── moon_temple_cell_gate_keyhole.json │ │ ├── moon_temple_gate.json │ │ ├── moon_temple_gate_keyhole.json │ │ ├── moon_temple_lamp.json │ │ ├── moon_temple_pillar.json │ │ ├── moon_torch.json │ │ ├── moon_wall_torch.json │ │ ├── moon_water.json │ │ ├── moonstone_block.json │ │ ├── moonstone_cluster.json │ │ ├── moonstone_ore.json │ │ ├── mysterium_wool.json │ │ ├── mystical_barrier.json │ │ ├── nebula_blossom_cluster.json │ │ ├── petunia_plant.json │ │ ├── potted_aurorian_grass.json │ │ ├── potted_aurorian_grass_light.json │ │ ├── potted_cursed_frost_tree_sapling.json │ │ ├── potted_curtain_tree_sapling.json │ │ ├── potted_equinox_flower.json │ │ ├── potted_lavender_plant.json │ │ ├── potted_moon_frost_flower.json │ │ ├── potted_nebula_blossom_cluster.json │ │ ├── potted_petunia_plant.json │ │ ├── potted_silent_tree_sapling.json │ │ ├── potted_void_candle_flower.json │ │ ├── potted_wick_grass.json │ │ ├── red_aurorian_grass_block.json │ │ ├── rune_crystal.json │ │ ├── rune_stone.json │ │ ├── rune_stone_bars.json │ │ ├── rune_stone_gate.json │ │ ├── rune_stone_gate_keyhole.json │ │ ├── rune_stone_lamp.json │ │ ├── rune_stone_loot_gate.json │ │ ├── rune_stone_loot_gate_keyhole.json │ │ ├── rune_stone_pillar.json │ │ ├── rune_stone_slab.json │ │ ├── rune_stone_stairs.json │ │ ├── rune_stone_wall.json │ │ ├── silent_tree_leaves.json │ │ ├── silent_tree_log.json │ │ ├── silent_tree_planks.json │ │ ├── silent_tree_sapling.json │ │ ├── silent_tree_wood.json │ │ ├── silent_wood_button.json │ │ ├── silent_wood_chest.json │ │ ├── silent_wood_door.json │ │ ├── silent_wood_fence.json │ │ ├── silent_wood_fence_gate.json │ │ ├── silent_wood_hanging_sign.json │ │ ├── silent_wood_ladder.json │ │ ├── silent_wood_pressure_plate.json │ │ ├── silent_wood_sign.json │ │ ├── silent_wood_slab.json │ │ ├── silent_wood_stairs.json │ │ ├── silent_wood_torch.json │ │ ├── silent_wood_trapdoor.json │ │ ├── silent_wood_wall_hanging_sign.json │ │ ├── silent_wood_wall_sign.json │ │ ├── silent_wood_wall_torch.json │ │ ├── silk_berry_crop.json │ │ ├── small_cerulean_bud.json │ │ ├── small_filthy_ice_spike.json │ │ ├── small_moonstone_bud.json │ │ ├── smooth_aurorian_peridotite.json │ │ ├── smooth_aurorian_peridotite_slab.json │ │ ├── smooth_aurorian_peridotite_stairs.json │ │ ├── smooth_aurorian_peridotite_wall.json │ │ ├── smooth_dark_stone_brick_slab.json │ │ ├── smooth_dark_stone_brick_stairs.json │ │ ├── smooth_dark_stone_brick_wall.json │ │ ├── smooth_dark_stone_bricks.json │ │ ├── smooth_moon_sandstone.json │ │ ├── smooth_moon_temple_brick_slab.json │ │ ├── smooth_moon_temple_brick_stairs.json │ │ ├── smooth_moon_temple_brick_wall.json │ │ ├── smooth_moon_temple_bricks.json │ │ ├── smooth_rune_stone.json │ │ ├── smooth_rune_stone_slab.json │ │ ├── smooth_rune_stone_stairs.json │ │ ├── smooth_rune_stone_wall.json │ │ ├── snow_aurorian_grass_block.json │ │ ├── stripped_cursed_frost_tree_log.json │ │ ├── stripped_cursed_frost_tree_wood.json │ │ ├── stripped_curtain_tree_log.json │ │ ├── stripped_curtain_tree_wood.json │ │ ├── stripped_silent_tree_log.json │ │ ├── stripped_silent_tree_wood.json │ │ ├── stripped_weeping_willow_log.json │ │ ├── stripped_weeping_willow_wood.json │ │ ├── tall_aurorian_grass.json │ │ ├── tall_aurorian_grass_light.json │ │ ├── tall_aurorian_water_grass.json │ │ ├── tall_lavender_plant.json │ │ ├── tall_wick_grass.json │ │ ├── transparent_rune_stone.json │ │ ├── transparent_rune_stone_slab.json │ │ ├── transparent_rune_stone_stairs.json │ │ ├── transparent_rune_stone_wall.json │ │ ├── umbra_castle_rune_stone.json │ │ ├── umbra_castle_rune_stone_slab.json │ │ ├── umbra_castle_rune_stone_stairs.json │ │ ├── umbra_castle_rune_stone_wall.json │ │ ├── umbra_stone.json │ │ ├── umbra_stone_cracked.json │ │ ├── umbra_stone_cracked_slab.json │ │ ├── umbra_stone_cracked_stairs.json │ │ ├── umbra_stone_cracked_wall.json │ │ ├── umbra_stone_roof_slab.json │ │ ├── umbra_stone_roof_stairs.json │ │ ├── umbra_stone_roof_tiles.json │ │ ├── umbra_stone_roof_wall.json │ │ ├── umbra_stone_slab.json │ │ ├── umbra_stone_stairs.json │ │ ├── umbra_stone_wall.json │ │ ├── vertical_aurorian_andesite_slab.json │ │ ├── vertical_aurorian_andesite_stairs.json │ │ ├── vertical_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_cobblestone_slab.json │ │ ├── vertical_aurorian_cobblestone_stairs.json │ │ ├── vertical_aurorian_diorite_slab.json │ │ ├── vertical_aurorian_diorite_stairs.json │ │ ├── vertical_aurorian_granite_slab.json │ │ ├── vertical_aurorian_granite_stairs.json │ │ ├── vertical_aurorian_peridotite_slab.json │ │ ├── vertical_aurorian_peridotite_stairs.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_stone_brick_slab.json │ │ ├── vertical_aurorian_stone_brick_stairs.json │ │ ├── vertical_aurorian_stone_slab.json │ │ ├── vertical_aurorian_stone_stairs.json │ │ ├── vertical_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_chiseled_dark_stone_brick_slab.json │ │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ │ ├── vertical_chiseled_moon_temple_brick_slab.json │ │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ │ ├── vertical_chiseled_rune_stone_slab.json │ │ ├── vertical_chiseled_rune_stone_stairs.json │ │ ├── vertical_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_cursed_frost_wood_slab.json │ │ ├── vertical_cursed_frost_wood_stairs.json │ │ ├── vertical_curtain_wood_slab.json │ │ ├── vertical_curtain_wood_stairs.json │ │ ├── vertical_dark_stone_brick_slab.json │ │ ├── vertical_dark_stone_brick_stairs.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_castle_rune_stone_slab.json │ │ ├── vertical_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_temple_brick_slab.json │ │ ├── vertical_moon_temple_brick_stairs.json │ │ ├── vertical_rune_stone_slab.json │ │ ├── vertical_rune_stone_stairs.json │ │ ├── vertical_silent_wood_slab.json │ │ ├── vertical_silent_wood_stairs.json │ │ ├── vertical_smooth_aurorian_peridotite_slab.json │ │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ │ ├── vertical_smooth_dark_stone_brick_slab.json │ │ ├── vertical_smooth_dark_stone_brick_stairs.json │ │ ├── vertical_smooth_moon_temple_brick_slab.json │ │ ├── vertical_smooth_moon_temple_brick_stairs.json │ │ ├── vertical_smooth_rune_stone_slab.json │ │ ├── vertical_smooth_rune_stone_stairs.json │ │ ├── vertical_transparent_rune_stone_slab.json │ │ ├── vertical_transparent_rune_stone_stairs.json │ │ ├── vertical_umbra_castle_rune_stone_slab.json │ │ ├── vertical_umbra_castle_rune_stone_stairs.json │ │ ├── vertical_umbra_stone_cracked_slab.json │ │ ├── vertical_umbra_stone_cracked_stairs.json │ │ ├── vertical_umbra_stone_roof_slab.json │ │ ├── vertical_umbra_stone_roof_stairs.json │ │ ├── vertical_umbra_stone_slab.json │ │ ├── vertical_umbra_stone_stairs.json │ │ ├── vertical_weeping_willow_slab.json │ │ ├── vertical_weeping_willow_stairs.json │ │ ├── void_candle_flower.json │ │ ├── void_stone.json │ │ ├── weeping_willow_button.json │ │ ├── weeping_willow_door.json │ │ ├── weeping_willow_fence.json │ │ ├── weeping_willow_fence_gate.json │ │ ├── weeping_willow_leaves.json │ │ ├── weeping_willow_log.json │ │ ├── weeping_willow_planks.json │ │ ├── weeping_willow_pressure_plate.json │ │ ├── weeping_willow_slab.json │ │ ├── weeping_willow_stairs.json │ │ ├── weeping_willow_trapdoor.json │ │ ├── weeping_willow_wood.json │ │ ├── weeping_willow_wood_hanging_sign.json │ │ ├── weeping_willow_wood_sign.json │ │ ├── weeping_willow_wood_wall_hanging_sign.json │ │ ├── weeping_willow_wood_wall_sign.json │ │ ├── wick_grass.json │ │ └── winter_root.json │ │ ├── lang │ │ ├── en_us.json │ │ └── zh_cn.json │ │ ├── models │ │ ├── block │ │ │ ├── aurorian_andesite.json │ │ │ ├── aurorian_andesite_slab.json │ │ │ ├── aurorian_andesite_slab_top.json │ │ │ ├── aurorian_andesite_stairs.json │ │ │ ├── aurorian_andesite_stairs_inner.json │ │ │ ├── aurorian_andesite_stairs_outer.json │ │ │ ├── aurorian_andesite_wall.json │ │ │ ├── aurorian_andesite_wall_post.json │ │ │ ├── aurorian_andesite_wall_side.json │ │ │ ├── aurorian_andesite_wall_side_tall.json │ │ │ ├── aurorian_barrier_stone.json │ │ │ ├── aurorian_castle_rune_stone.json │ │ │ ├── aurorian_castle_rune_stone_slab.json │ │ │ ├── aurorian_castle_rune_stone_slab_top.json │ │ │ ├── aurorian_castle_rune_stone_stairs.json │ │ │ ├── aurorian_castle_rune_stone_stairs_inner.json │ │ │ ├── aurorian_castle_rune_stone_stairs_outer.json │ │ │ ├── aurorian_castle_rune_stone_wall.json │ │ │ ├── aurorian_castle_rune_stone_wall_post.json │ │ │ ├── aurorian_castle_rune_stone_wall_side.json │ │ │ ├── aurorian_castle_rune_stone_wall_side_tall.json │ │ │ ├── aurorian_coal_block.json │ │ │ ├── aurorian_coal_ore.json │ │ │ ├── aurorian_cobblestone.json │ │ │ ├── aurorian_cobblestone_slab.json │ │ │ ├── aurorian_cobblestone_slab_top.json │ │ │ ├── aurorian_cobblestone_stairs.json │ │ │ ├── aurorian_cobblestone_stairs_inner.json │ │ │ ├── aurorian_cobblestone_stairs_outer.json │ │ │ ├── aurorian_cobblestone_wall.json │ │ │ ├── aurorian_cobblestone_wall_post.json │ │ │ ├── aurorian_cobblestone_wall_side.json │ │ │ ├── aurorian_cobblestone_wall_side_tall.json │ │ │ ├── aurorian_copper_ore.json │ │ │ ├── aurorian_diamond_ore.json │ │ │ ├── aurorian_diorite.json │ │ │ ├── aurorian_diorite_slab.json │ │ │ ├── aurorian_diorite_slab_top.json │ │ │ ├── aurorian_diorite_stairs.json │ │ │ ├── aurorian_diorite_stairs_inner.json │ │ │ ├── aurorian_diorite_stairs_outer.json │ │ │ ├── aurorian_diorite_wall.json │ │ │ ├── aurorian_diorite_wall_post.json │ │ │ ├── aurorian_diorite_wall_side.json │ │ │ ├── aurorian_diorite_wall_side_tall.json │ │ │ ├── aurorian_dirt.json │ │ │ ├── aurorian_emerald_ore.json │ │ │ ├── aurorian_erosive.json │ │ │ ├── aurorian_glass.json │ │ │ ├── aurorian_glass_pane_noside.json │ │ │ ├── aurorian_glass_pane_noside_alt.json │ │ │ ├── aurorian_glass_pane_post.json │ │ │ ├── aurorian_glass_pane_side.json │ │ │ ├── aurorian_glass_pane_side_alt.json │ │ │ ├── aurorian_gold_ore.json │ │ │ ├── aurorian_granite.json │ │ │ ├── aurorian_granite_slab.json │ │ │ ├── aurorian_granite_slab_top.json │ │ │ ├── aurorian_granite_stairs.json │ │ │ ├── aurorian_granite_stairs_inner.json │ │ │ ├── aurorian_granite_stairs_outer.json │ │ │ ├── aurorian_granite_wall.json │ │ │ ├── aurorian_granite_wall_post.json │ │ │ ├── aurorian_granite_wall_side.json │ │ │ ├── aurorian_granite_wall_side_tall.json │ │ │ ├── aurorian_grass.json │ │ │ ├── aurorian_grass_block.json │ │ │ ├── aurorian_grass_light.json │ │ │ ├── aurorian_iron_ore.json │ │ │ ├── aurorian_lapis_ore.json │ │ │ ├── aurorian_peridotite.json │ │ │ ├── aurorian_peridotite_slab.json │ │ │ ├── aurorian_peridotite_slab_top.json │ │ │ ├── aurorian_peridotite_stairs.json │ │ │ ├── aurorian_peridotite_stairs_inner.json │ │ │ ├── aurorian_peridotite_stairs_outer.json │ │ │ ├── aurorian_peridotite_wall.json │ │ │ ├── aurorian_peridotite_wall_post.json │ │ │ ├── aurorian_peridotite_wall_side.json │ │ │ ├── aurorian_peridotite_wall_side_tall.json │ │ │ ├── aurorian_portal_frame_bricks.json │ │ │ ├── aurorian_redstone_ore.json │ │ │ ├── aurorian_steel_block.json │ │ │ ├── aurorian_steel_castle_rune_stone.json │ │ │ ├── aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── aurorian_steel_castle_rune_stone_slab_top.json │ │ │ ├── aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── aurorian_steel_castle_rune_stone_stairs_inner.json │ │ │ ├── aurorian_steel_castle_rune_stone_stairs_outer.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall_post.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall_side.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall_side_tall.json │ │ │ ├── aurorian_stone.json │ │ │ ├── aurorian_stone_brick_slab.json │ │ │ ├── aurorian_stone_brick_slab_top.json │ │ │ ├── aurorian_stone_brick_stairs.json │ │ │ ├── aurorian_stone_brick_stairs_inner.json │ │ │ ├── aurorian_stone_brick_stairs_outer.json │ │ │ ├── aurorian_stone_brick_wall.json │ │ │ ├── aurorian_stone_brick_wall_post.json │ │ │ ├── aurorian_stone_brick_wall_side.json │ │ │ ├── aurorian_stone_brick_wall_side_tall.json │ │ │ ├── aurorian_stone_bricks.json │ │ │ ├── aurorian_stone_slab.json │ │ │ ├── aurorian_stone_slab_top.json │ │ │ ├── aurorian_stone_stairs.json │ │ │ ├── aurorian_stone_stairs_inner.json │ │ │ ├── aurorian_stone_stairs_outer.json │ │ │ ├── aurorian_stone_wall.json │ │ │ ├── aurorian_stone_wall_post.json │ │ │ ├── aurorian_stone_wall_side.json │ │ │ ├── aurorian_stone_wall_side_tall.json │ │ │ ├── aurorian_water_grass.json │ │ │ ├── blueberry_bush_stage0.json │ │ │ ├── blueberry_bush_stage1.json │ │ │ ├── blueberry_bush_stage2.json │ │ │ ├── blueberry_bush_stage3.json │ │ │ ├── bright_moon_sand.json │ │ │ ├── bright_moon_sandstone.json │ │ │ ├── cerulean_block.json │ │ │ ├── cerulean_castle_rune_stone.json │ │ │ ├── cerulean_castle_rune_stone_slab.json │ │ │ ├── cerulean_castle_rune_stone_slab_top.json │ │ │ ├── cerulean_castle_rune_stone_stairs.json │ │ │ ├── cerulean_castle_rune_stone_stairs_inner.json │ │ │ ├── cerulean_castle_rune_stone_stairs_outer.json │ │ │ ├── cerulean_castle_rune_stone_wall.json │ │ │ ├── cerulean_castle_rune_stone_wall_post.json │ │ │ ├── cerulean_castle_rune_stone_wall_side.json │ │ │ ├── cerulean_castle_rune_stone_wall_side_tall.json │ │ │ ├── cerulean_cluster.json │ │ │ ├── cerulean_ore.json │ │ │ ├── chiseled_dark_stone_brick_slab.json │ │ │ ├── chiseled_dark_stone_brick_slab_top.json │ │ │ ├── chiseled_dark_stone_brick_stairs.json │ │ │ ├── chiseled_dark_stone_brick_stairs_inner.json │ │ │ ├── chiseled_dark_stone_brick_stairs_outer.json │ │ │ ├── chiseled_dark_stone_brick_wall.json │ │ │ ├── chiseled_dark_stone_brick_wall_post.json │ │ │ ├── chiseled_dark_stone_brick_wall_side.json │ │ │ ├── chiseled_dark_stone_brick_wall_side_tall.json │ │ │ ├── chiseled_dark_stone_bricks.json │ │ │ ├── chiseled_moon_temple_brick_slab.json │ │ │ ├── chiseled_moon_temple_brick_slab_top.json │ │ │ ├── chiseled_moon_temple_brick_stairs.json │ │ │ ├── chiseled_moon_temple_brick_stairs_inner.json │ │ │ ├── chiseled_moon_temple_brick_stairs_outer.json │ │ │ ├── chiseled_moon_temple_brick_wall.json │ │ │ ├── chiseled_moon_temple_brick_wall_post.json │ │ │ ├── chiseled_moon_temple_brick_wall_side.json │ │ │ ├── chiseled_moon_temple_brick_wall_side_tall.json │ │ │ ├── chiseled_moon_temple_bricks.json │ │ │ ├── chiseled_rune_stone.json │ │ │ ├── chiseled_rune_stone_slab.json │ │ │ ├── chiseled_rune_stone_slab_top.json │ │ │ ├── chiseled_rune_stone_stairs.json │ │ │ ├── chiseled_rune_stone_stairs_inner.json │ │ │ ├── chiseled_rune_stone_stairs_outer.json │ │ │ ├── chiseled_rune_stone_wall.json │ │ │ ├── chiseled_rune_stone_wall_post.json │ │ │ ├── chiseled_rune_stone_wall_side.json │ │ │ ├── chiseled_rune_stone_wall_side_tall.json │ │ │ ├── crisped_mallow.json │ │ │ ├── crystalline_castle_rune_stone.json │ │ │ ├── crystalline_castle_rune_stone_slab.json │ │ │ ├── crystalline_castle_rune_stone_slab_top.json │ │ │ ├── crystalline_castle_rune_stone_stairs.json │ │ │ ├── crystalline_castle_rune_stone_stairs_inner.json │ │ │ ├── crystalline_castle_rune_stone_stairs_outer.json │ │ │ ├── crystalline_castle_rune_stone_wall.json │ │ │ ├── crystalline_castle_rune_stone_wall_post.json │ │ │ ├── crystalline_castle_rune_stone_wall_side.json │ │ │ ├── crystalline_castle_rune_stone_wall_side_tall.json │ │ │ ├── cursed_frost_tree_leaves.json │ │ │ ├── cursed_frost_tree_log.json │ │ │ ├── cursed_frost_tree_log_horizontal.json │ │ │ ├── cursed_frost_tree_planks.json │ │ │ ├── cursed_frost_tree_sapling.json │ │ │ ├── cursed_frost_tree_wood.json │ │ │ ├── cursed_frost_tree_wood_horizontal.json │ │ │ ├── cursed_frost_wood_button.json │ │ │ ├── cursed_frost_wood_button_inventory.json │ │ │ ├── cursed_frost_wood_button_pressed.json │ │ │ ├── cursed_frost_wood_door_bottom_left.json │ │ │ ├── cursed_frost_wood_door_bottom_left_open.json │ │ │ ├── cursed_frost_wood_door_bottom_right.json │ │ │ ├── cursed_frost_wood_door_bottom_right_open.json │ │ │ ├── cursed_frost_wood_door_top_left.json │ │ │ ├── cursed_frost_wood_door_top_left_open.json │ │ │ ├── cursed_frost_wood_door_top_right.json │ │ │ ├── cursed_frost_wood_door_top_right_open.json │ │ │ ├── cursed_frost_wood_fence.json │ │ │ ├── cursed_frost_wood_fence_gate.json │ │ │ ├── cursed_frost_wood_fence_gate_open.json │ │ │ ├── cursed_frost_wood_fence_gate_wall.json │ │ │ ├── cursed_frost_wood_fence_gate_wall_open.json │ │ │ ├── cursed_frost_wood_fence_post.json │ │ │ ├── cursed_frost_wood_fence_side.json │ │ │ ├── cursed_frost_wood_hanging_sign.json │ │ │ ├── cursed_frost_wood_pressure_plate.json │ │ │ ├── cursed_frost_wood_pressure_plate_down.json │ │ │ ├── cursed_frost_wood_sign.json │ │ │ ├── cursed_frost_wood_slab.json │ │ │ ├── cursed_frost_wood_slab_top.json │ │ │ ├── cursed_frost_wood_stairs.json │ │ │ ├── cursed_frost_wood_stairs_inner.json │ │ │ ├── cursed_frost_wood_stairs_outer.json │ │ │ ├── cursed_frost_wood_trapdoor.json │ │ │ ├── cursed_frost_wood_trapdoor_bottom.json │ │ │ ├── cursed_frost_wood_trapdoor_open.json │ │ │ ├── cursed_frost_wood_trapdoor_top.json │ │ │ ├── curtain_tree_leaves.json │ │ │ ├── curtain_tree_log.json │ │ │ ├── curtain_tree_log_horizontal.json │ │ │ ├── curtain_tree_planks.json │ │ │ ├── curtain_tree_sapling.json │ │ │ ├── curtain_tree_wood.json │ │ │ ├── curtain_tree_wood_horizontal.json │ │ │ ├── curtain_wood_button.json │ │ │ ├── curtain_wood_button_inventory.json │ │ │ ├── curtain_wood_button_pressed.json │ │ │ ├── curtain_wood_door_bottom_left.json │ │ │ ├── curtain_wood_door_bottom_left_open.json │ │ │ ├── curtain_wood_door_bottom_right.json │ │ │ ├── curtain_wood_door_bottom_right_open.json │ │ │ ├── curtain_wood_door_top_left.json │ │ │ ├── curtain_wood_door_top_left_open.json │ │ │ ├── curtain_wood_door_top_right.json │ │ │ ├── curtain_wood_door_top_right_open.json │ │ │ ├── curtain_wood_fence.json │ │ │ ├── curtain_wood_fence_gate.json │ │ │ ├── curtain_wood_fence_gate_open.json │ │ │ ├── curtain_wood_fence_gate_wall.json │ │ │ ├── curtain_wood_fence_gate_wall_open.json │ │ │ ├── curtain_wood_fence_post.json │ │ │ ├── curtain_wood_fence_side.json │ │ │ ├── curtain_wood_hanging_sign.json │ │ │ ├── curtain_wood_pressure_plate.json │ │ │ ├── curtain_wood_pressure_plate_down.json │ │ │ ├── curtain_wood_sign.json │ │ │ ├── curtain_wood_slab.json │ │ │ ├── curtain_wood_slab_top.json │ │ │ ├── curtain_wood_stairs.json │ │ │ ├── curtain_wood_stairs_inner.json │ │ │ ├── curtain_wood_stairs_outer.json │ │ │ ├── curtain_wood_trapdoor.json │ │ │ ├── curtain_wood_trapdoor_bottom.json │ │ │ ├── curtain_wood_trapdoor_open.json │ │ │ ├── curtain_wood_trapdoor_top.json │ │ │ ├── cut_moon_sandstone.json │ │ │ ├── dark_stone_bars_cap.json │ │ │ ├── dark_stone_bars_cap_alt.json │ │ │ ├── dark_stone_bars_post.json │ │ │ ├── dark_stone_bars_post_ends.json │ │ │ ├── dark_stone_bars_side.json │ │ │ ├── dark_stone_bars_side_alt.json │ │ │ ├── dark_stone_brick_slab.json │ │ │ ├── dark_stone_brick_slab_top.json │ │ │ ├── dark_stone_brick_stairs.json │ │ │ ├── dark_stone_brick_stairs_inner.json │ │ │ ├── dark_stone_brick_stairs_outer.json │ │ │ ├── dark_stone_brick_wall.json │ │ │ ├── dark_stone_brick_wall_post.json │ │ │ ├── dark_stone_brick_wall_side.json │ │ │ ├── dark_stone_brick_wall_side_tall.json │ │ │ ├── dark_stone_bricks.json │ │ │ ├── dark_stone_fancy.json │ │ │ ├── dark_stone_gate.json │ │ │ ├── dark_stone_gate_keyhole.json │ │ │ ├── dark_stone_gate_keyhole_unlocked.json │ │ │ ├── dark_stone_glass.json │ │ │ ├── dark_stone_glass_pane_noside.json │ │ │ ├── dark_stone_glass_pane_noside_alt.json │ │ │ ├── dark_stone_glass_pane_post.json │ │ │ ├── dark_stone_glass_pane_side.json │ │ │ ├── dark_stone_glass_pane_side_alt.json │ │ │ ├── dark_stone_lamp.json │ │ │ ├── dark_stone_layers.json │ │ │ ├── dark_stone_pillar.json │ │ │ ├── dark_stone_pillar_horizontal.json │ │ │ ├── equinox_flower.json │ │ │ ├── erosive_aurorian_copper_ore.json │ │ │ ├── erosive_aurorian_diamond_ore.json │ │ │ ├── erosive_aurorian_emerald_ore.json │ │ │ ├── erosive_aurorian_gold_ore.json │ │ │ ├── erosive_aurorian_iron_ore.json │ │ │ ├── erosive_aurorian_lapis_ore.json │ │ │ ├── erosive_aurorian_redstone_ore.json │ │ │ ├── erosive_cerulean_ore.json │ │ │ ├── erosive_geode_ore.json │ │ │ ├── erosive_moonstone_ore.json │ │ │ ├── filthy_ice.json │ │ │ ├── frost_snow_grass.json │ │ │ ├── geode_ore.json │ │ │ ├── ice_calendula.json │ │ │ ├── indigo_mushroom.json │ │ │ ├── indigo_mushroom_crystal.json │ │ │ ├── large_cerulean_bud.json │ │ │ ├── large_filthy_ice_spike_lower.json │ │ │ ├── large_filthy_ice_spike_upper.json │ │ │ ├── large_moonstone_bud.json │ │ │ ├── lavender_crop_stage0.json │ │ │ ├── lavender_crop_stage1.json │ │ │ ├── lavender_crop_stage2.json │ │ │ ├── lavender_crop_stage3.json │ │ │ ├── lavender_plant.json │ │ │ ├── light_aurorian_grass_block.json │ │ │ ├── luminous_aurorian_castle_rune_stone.json │ │ │ ├── luminous_aurorian_castle_rune_stone_slab.json │ │ │ ├── luminous_aurorian_castle_rune_stone_slab_top.json │ │ │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ │ │ ├── luminous_aurorian_castle_rune_stone_stairs_inner.json │ │ │ ├── luminous_aurorian_castle_rune_stone_stairs_outer.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall_post.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall_side.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall_side_tall.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab_top.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs_inner.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs_outer.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall_post.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall_side.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall_side_tall.json │ │ │ ├── luminous_cerulean_castle_rune_stone.json │ │ │ ├── luminous_cerulean_castle_rune_stone_slab.json │ │ │ ├── luminous_cerulean_castle_rune_stone_slab_top.json │ │ │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ │ │ ├── luminous_cerulean_castle_rune_stone_stairs_inner.json │ │ │ ├── luminous_cerulean_castle_rune_stone_stairs_outer.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall_post.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall_side.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall_side_tall.json │ │ │ ├── luminous_crystalline_castle_rune_stone.json │ │ │ ├── luminous_crystalline_castle_rune_stone_slab.json │ │ │ ├── luminous_crystalline_castle_rune_stone_slab_top.json │ │ │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ │ │ ├── luminous_crystalline_castle_rune_stone_stairs_inner.json │ │ │ ├── luminous_crystalline_castle_rune_stone_stairs_outer.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall_post.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall_side.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall_side_tall.json │ │ │ ├── luminous_moon_castle_rune_stone.json │ │ │ ├── luminous_moon_castle_rune_stone_slab.json │ │ │ ├── luminous_moon_castle_rune_stone_slab_top.json │ │ │ ├── luminous_moon_castle_rune_stone_stairs.json │ │ │ ├── luminous_moon_castle_rune_stone_stairs_inner.json │ │ │ ├── luminous_moon_castle_rune_stone_stairs_outer.json │ │ │ ├── luminous_moon_castle_rune_stone_wall.json │ │ │ ├── luminous_moon_castle_rune_stone_wall_post.json │ │ │ ├── luminous_moon_castle_rune_stone_wall_side.json │ │ │ ├── luminous_moon_castle_rune_stone_wall_side_tall.json │ │ │ ├── medium_cerulean_bud.json │ │ │ ├── medium_filthy_ice_spike.json │ │ │ ├── medium_moonstone_bud.json │ │ │ ├── molten_aurorian_steel.json │ │ │ ├── molten_cerulean.json │ │ │ ├── molten_moonstone.json │ │ │ ├── moon_castle_rune_stone.json │ │ │ ├── moon_castle_rune_stone_slab.json │ │ │ ├── moon_castle_rune_stone_slab_top.json │ │ │ ├── moon_castle_rune_stone_stairs.json │ │ │ ├── moon_castle_rune_stone_stairs_inner.json │ │ │ ├── moon_castle_rune_stone_stairs_outer.json │ │ │ ├── moon_castle_rune_stone_wall.json │ │ │ ├── moon_castle_rune_stone_wall_post.json │ │ │ ├── moon_castle_rune_stone_wall_side.json │ │ │ ├── moon_castle_rune_stone_wall_side_tall.json │ │ │ ├── moon_frost_flower.json │ │ │ ├── moon_glass.json │ │ │ ├── moon_glass_pane_noside.json │ │ │ ├── moon_glass_pane_noside_alt.json │ │ │ ├── moon_glass_pane_post.json │ │ │ ├── moon_glass_pane_side.json │ │ │ ├── moon_glass_pane_side_alt.json │ │ │ ├── moon_sand.json │ │ │ ├── moon_sand_river.json │ │ │ ├── moon_sandstone.json │ │ │ ├── moon_temple_bars_cap.json │ │ │ ├── moon_temple_bars_cap_alt.json │ │ │ ├── moon_temple_bars_post.json │ │ │ ├── moon_temple_bars_post_ends.json │ │ │ ├── moon_temple_bars_side.json │ │ │ ├── moon_temple_bars_side_alt.json │ │ │ ├── moon_temple_brick_slab.json │ │ │ ├── moon_temple_brick_slab_top.json │ │ │ ├── moon_temple_brick_stairs.json │ │ │ ├── moon_temple_brick_stairs_inner.json │ │ │ ├── moon_temple_brick_stairs_outer.json │ │ │ ├── moon_temple_brick_wall.json │ │ │ ├── moon_temple_brick_wall_post.json │ │ │ ├── moon_temple_brick_wall_side.json │ │ │ ├── moon_temple_brick_wall_side_tall.json │ │ │ ├── moon_temple_bricks.json │ │ │ ├── moon_temple_cell_gate.json │ │ │ ├── moon_temple_cell_gate_keyhole.json │ │ │ ├── moon_temple_cell_gate_keyhole_unlocked.json │ │ │ ├── moon_temple_gate.json │ │ │ ├── moon_temple_gate_keyhole.json │ │ │ ├── moon_temple_gate_keyhole_unlocked.json │ │ │ ├── moon_temple_lamp.json │ │ │ ├── moon_temple_pillar.json │ │ │ ├── moon_temple_pillar_horizontal.json │ │ │ ├── moon_torch.json │ │ │ ├── moon_wall_torch.json │ │ │ ├── moon_water.json │ │ │ ├── moonstone_block.json │ │ │ ├── moonstone_cluster.json │ │ │ ├── moonstone_ore.json │ │ │ ├── mysterium_wool.json │ │ │ ├── mystical_barrier.json │ │ │ ├── nebula_blossom_cluster.json │ │ │ ├── petunia_plant.json │ │ │ ├── potted_aurorian_grass.json │ │ │ ├── potted_aurorian_grass_light.json │ │ │ ├── potted_cursed_frost_tree_sapling.json │ │ │ ├── potted_curtain_tree_sapling.json │ │ │ ├── potted_equinox_flower.json │ │ │ ├── potted_lavender_plant.json │ │ │ ├── potted_moon_frost_flower.json │ │ │ ├── potted_nebula_blossom_cluster.json │ │ │ ├── potted_petunia_plant.json │ │ │ ├── potted_silent_tree_sapling.json │ │ │ ├── potted_void_candle_flower.json │ │ │ ├── potted_wick_grass.json │ │ │ ├── red_aurorian_grass_block.json │ │ │ ├── rune_crystal.json │ │ │ ├── rune_stone.json │ │ │ ├── rune_stone_bars_cap.json │ │ │ ├── rune_stone_bars_cap_alt.json │ │ │ ├── rune_stone_bars_post.json │ │ │ ├── rune_stone_bars_post_ends.json │ │ │ ├── rune_stone_bars_side.json │ │ │ ├── rune_stone_bars_side_alt.json │ │ │ ├── rune_stone_gate.json │ │ │ ├── rune_stone_gate_keyhole.json │ │ │ ├── rune_stone_gate_keyhole_unlocked.json │ │ │ ├── rune_stone_lamp.json │ │ │ ├── rune_stone_loot_gate.json │ │ │ ├── rune_stone_loot_gate_keyhole.json │ │ │ ├── rune_stone_loot_gate_keyhole_unlocked.json │ │ │ ├── rune_stone_pillar.json │ │ │ ├── rune_stone_pillar_horizontal.json │ │ │ ├── rune_stone_slab.json │ │ │ ├── rune_stone_slab_top.json │ │ │ ├── rune_stone_stairs.json │ │ │ ├── rune_stone_stairs_inner.json │ │ │ ├── rune_stone_stairs_outer.json │ │ │ ├── rune_stone_wall.json │ │ │ ├── rune_stone_wall_post.json │ │ │ ├── rune_stone_wall_side.json │ │ │ ├── rune_stone_wall_side_tall.json │ │ │ ├── silent_tree_leaves.json │ │ │ ├── silent_tree_log.json │ │ │ ├── silent_tree_log_horizontal.json │ │ │ ├── silent_tree_planks.json │ │ │ ├── silent_tree_sapling.json │ │ │ ├── silent_tree_wood.json │ │ │ ├── silent_tree_wood_horizontal.json │ │ │ ├── silent_wood_button.json │ │ │ ├── silent_wood_button_inventory.json │ │ │ ├── silent_wood_button_pressed.json │ │ │ ├── silent_wood_chest.json │ │ │ ├── silent_wood_door_bottom_left.json │ │ │ ├── silent_wood_door_bottom_left_open.json │ │ │ ├── silent_wood_door_bottom_right.json │ │ │ ├── silent_wood_door_bottom_right_open.json │ │ │ ├── silent_wood_door_top_left.json │ │ │ ├── silent_wood_door_top_left_open.json │ │ │ ├── silent_wood_door_top_right.json │ │ │ ├── silent_wood_door_top_right_open.json │ │ │ ├── silent_wood_fence.json │ │ │ ├── silent_wood_fence_gate.json │ │ │ ├── silent_wood_fence_gate_open.json │ │ │ ├── silent_wood_fence_gate_wall.json │ │ │ ├── silent_wood_fence_gate_wall_open.json │ │ │ ├── silent_wood_fence_post.json │ │ │ ├── silent_wood_fence_side.json │ │ │ ├── silent_wood_hanging_sign.json │ │ │ ├── silent_wood_ladder.json │ │ │ ├── silent_wood_pressure_plate.json │ │ │ ├── silent_wood_pressure_plate_down.json │ │ │ ├── silent_wood_sign.json │ │ │ ├── silent_wood_slab.json │ │ │ ├── silent_wood_slab_top.json │ │ │ ├── silent_wood_stairs.json │ │ │ ├── silent_wood_stairs_inner.json │ │ │ ├── silent_wood_stairs_outer.json │ │ │ ├── silent_wood_torch.json │ │ │ ├── silent_wood_trapdoor.json │ │ │ ├── silent_wood_trapdoor_bottom.json │ │ │ ├── silent_wood_trapdoor_open.json │ │ │ ├── silent_wood_trapdoor_top.json │ │ │ ├── silent_wood_wall_torch.json │ │ │ ├── silk_berry_crop_stage0.json │ │ │ ├── silk_berry_crop_stage1.json │ │ │ ├── silk_berry_crop_stage2.json │ │ │ ├── silk_berry_crop_stage3.json │ │ │ ├── small_cerulean_bud.json │ │ │ ├── small_filthy_ice_spike.json │ │ │ ├── small_moonstone_bud.json │ │ │ ├── smooth_aurorian_peridotite.json │ │ │ ├── smooth_aurorian_peridotite_slab.json │ │ │ ├── smooth_aurorian_peridotite_slab_top.json │ │ │ ├── smooth_aurorian_peridotite_stairs.json │ │ │ ├── smooth_aurorian_peridotite_stairs_inner.json │ │ │ ├── smooth_aurorian_peridotite_stairs_outer.json │ │ │ ├── smooth_aurorian_peridotite_wall.json │ │ │ ├── smooth_aurorian_peridotite_wall_post.json │ │ │ ├── smooth_aurorian_peridotite_wall_side.json │ │ │ ├── smooth_aurorian_peridotite_wall_side_tall.json │ │ │ ├── smooth_dark_stone_brick_slab.json │ │ │ ├── smooth_dark_stone_brick_slab_top.json │ │ │ ├── smooth_dark_stone_brick_stairs.json │ │ │ ├── smooth_dark_stone_brick_stairs_inner.json │ │ │ ├── smooth_dark_stone_brick_stairs_outer.json │ │ │ ├── smooth_dark_stone_brick_wall.json │ │ │ ├── smooth_dark_stone_brick_wall_post.json │ │ │ ├── smooth_dark_stone_brick_wall_side.json │ │ │ ├── smooth_dark_stone_brick_wall_side_tall.json │ │ │ ├── smooth_dark_stone_bricks.json │ │ │ ├── smooth_moon_sandstone.json │ │ │ ├── smooth_moon_temple_brick_slab.json │ │ │ ├── smooth_moon_temple_brick_slab_top.json │ │ │ ├── smooth_moon_temple_brick_stairs.json │ │ │ ├── smooth_moon_temple_brick_stairs_inner.json │ │ │ ├── smooth_moon_temple_brick_stairs_outer.json │ │ │ ├── smooth_moon_temple_brick_wall.json │ │ │ ├── smooth_moon_temple_brick_wall_post.json │ │ │ ├── smooth_moon_temple_brick_wall_side.json │ │ │ ├── smooth_moon_temple_brick_wall_side_tall.json │ │ │ ├── smooth_moon_temple_bricks.json │ │ │ ├── smooth_rune_stone.json │ │ │ ├── smooth_rune_stone_slab.json │ │ │ ├── smooth_rune_stone_slab_top.json │ │ │ ├── smooth_rune_stone_stairs.json │ │ │ ├── smooth_rune_stone_stairs_inner.json │ │ │ ├── smooth_rune_stone_stairs_outer.json │ │ │ ├── smooth_rune_stone_wall.json │ │ │ ├── smooth_rune_stone_wall_post.json │ │ │ ├── smooth_rune_stone_wall_side.json │ │ │ ├── smooth_rune_stone_wall_side_tall.json │ │ │ ├── snow_aurorian_grass_block.json │ │ │ ├── stripped_cursed_frost_tree_log.json │ │ │ ├── stripped_cursed_frost_tree_log_horizontal.json │ │ │ ├── stripped_cursed_frost_tree_wood.json │ │ │ ├── stripped_cursed_frost_tree_wood_horizontal.json │ │ │ ├── stripped_curtain_tree_log.json │ │ │ ├── stripped_curtain_tree_log_horizontal.json │ │ │ ├── stripped_curtain_tree_wood.json │ │ │ ├── stripped_curtain_tree_wood_horizontal.json │ │ │ ├── stripped_silent_tree_log.json │ │ │ ├── stripped_silent_tree_log_horizontal.json │ │ │ ├── stripped_silent_tree_wood.json │ │ │ ├── stripped_silent_tree_wood_horizontal.json │ │ │ ├── stripped_weeping_willow_log.json │ │ │ ├── stripped_weeping_willow_log_horizontal.json │ │ │ ├── stripped_weeping_willow_wood.json │ │ │ ├── stripped_weeping_willow_wood_horizontal.json │ │ │ ├── tall_aurorian_grass_light_lower.json │ │ │ ├── tall_aurorian_grass_light_upper.json │ │ │ ├── tall_aurorian_grass_lower.json │ │ │ ├── tall_aurorian_grass_upper.json │ │ │ ├── tall_aurorian_water_grass_lower.json │ │ │ ├── tall_aurorian_water_grass_upper.json │ │ │ ├── tall_lavender_plant_lower.json │ │ │ ├── tall_lavender_plant_upper.json │ │ │ ├── tall_wick_grass_lower.json │ │ │ ├── tall_wick_grass_upper.json │ │ │ ├── transparent_rune_stone.json │ │ │ ├── transparent_rune_stone_slab.json │ │ │ ├── transparent_rune_stone_slab_top.json │ │ │ ├── transparent_rune_stone_stairs.json │ │ │ ├── transparent_rune_stone_stairs_inner.json │ │ │ ├── transparent_rune_stone_stairs_outer.json │ │ │ ├── transparent_rune_stone_wall.json │ │ │ ├── transparent_rune_stone_wall_post.json │ │ │ ├── transparent_rune_stone_wall_side.json │ │ │ ├── transparent_rune_stone_wall_side_tall.json │ │ │ ├── umbra_castle_rune_stone.json │ │ │ ├── umbra_castle_rune_stone_slab.json │ │ │ ├── umbra_castle_rune_stone_slab_top.json │ │ │ ├── umbra_castle_rune_stone_stairs.json │ │ │ ├── umbra_castle_rune_stone_stairs_inner.json │ │ │ ├── umbra_castle_rune_stone_stairs_outer.json │ │ │ ├── umbra_castle_rune_stone_wall.json │ │ │ ├── umbra_castle_rune_stone_wall_post.json │ │ │ ├── umbra_castle_rune_stone_wall_side.json │ │ │ ├── umbra_castle_rune_stone_wall_side_tall.json │ │ │ ├── umbra_stone.json │ │ │ ├── umbra_stone_cracked.json │ │ │ ├── umbra_stone_cracked_slab.json │ │ │ ├── umbra_stone_cracked_slab_top.json │ │ │ ├── umbra_stone_cracked_stairs.json │ │ │ ├── umbra_stone_cracked_stairs_inner.json │ │ │ ├── umbra_stone_cracked_stairs_outer.json │ │ │ ├── umbra_stone_cracked_wall.json │ │ │ ├── umbra_stone_cracked_wall_post.json │ │ │ ├── umbra_stone_cracked_wall_side.json │ │ │ ├── umbra_stone_cracked_wall_side_tall.json │ │ │ ├── umbra_stone_roof_slab.json │ │ │ ├── umbra_stone_roof_slab_top.json │ │ │ ├── umbra_stone_roof_stairs.json │ │ │ ├── umbra_stone_roof_stairs_inner.json │ │ │ ├── umbra_stone_roof_stairs_outer.json │ │ │ ├── umbra_stone_roof_tiles.json │ │ │ ├── umbra_stone_roof_wall.json │ │ │ ├── umbra_stone_roof_wall_post.json │ │ │ ├── umbra_stone_roof_wall_side.json │ │ │ ├── umbra_stone_roof_wall_side_tall.json │ │ │ ├── umbra_stone_slab.json │ │ │ ├── umbra_stone_slab_top.json │ │ │ ├── umbra_stone_stairs.json │ │ │ ├── umbra_stone_stairs_inner.json │ │ │ ├── umbra_stone_stairs_outer.json │ │ │ ├── umbra_stone_wall.json │ │ │ ├── umbra_stone_wall_post.json │ │ │ ├── umbra_stone_wall_side.json │ │ │ ├── umbra_stone_wall_side_tall.json │ │ │ ├── vertical_aurorian_andesite_slab.json │ │ │ ├── vertical_aurorian_andesite_slab_full.json │ │ │ ├── vertical_aurorian_andesite_slab_post.json │ │ │ ├── vertical_aurorian_andesite_stairs.json │ │ │ ├── vertical_aurorian_castle_rune_stone_slab.json │ │ │ ├── vertical_aurorian_castle_rune_stone_slab_full.json │ │ │ ├── vertical_aurorian_castle_rune_stone_slab_post.json │ │ │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ │ │ ├── vertical_aurorian_cobblestone_slab.json │ │ │ ├── vertical_aurorian_cobblestone_slab_full.json │ │ │ ├── vertical_aurorian_cobblestone_slab_post.json │ │ │ ├── vertical_aurorian_cobblestone_stairs.json │ │ │ ├── vertical_aurorian_diorite_slab.json │ │ │ ├── vertical_aurorian_diorite_slab_full.json │ │ │ ├── vertical_aurorian_diorite_slab_post.json │ │ │ ├── vertical_aurorian_diorite_stairs.json │ │ │ ├── vertical_aurorian_granite_slab.json │ │ │ ├── vertical_aurorian_granite_slab_full.json │ │ │ ├── vertical_aurorian_granite_slab_post.json │ │ │ ├── vertical_aurorian_granite_stairs.json │ │ │ ├── vertical_aurorian_peridotite_slab.json │ │ │ ├── vertical_aurorian_peridotite_slab_full.json │ │ │ ├── vertical_aurorian_peridotite_slab_post.json │ │ │ ├── vertical_aurorian_peridotite_stairs.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab_full.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab_post.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── vertical_aurorian_stone_brick_slab.json │ │ │ ├── vertical_aurorian_stone_brick_slab_full.json │ │ │ ├── vertical_aurorian_stone_brick_slab_post.json │ │ │ ├── vertical_aurorian_stone_brick_stairs.json │ │ │ ├── vertical_aurorian_stone_slab.json │ │ │ ├── vertical_aurorian_stone_slab_full.json │ │ │ ├── vertical_aurorian_stone_slab_post.json │ │ │ ├── vertical_aurorian_stone_stairs.json │ │ │ ├── vertical_cerulean_castle_rune_stone_slab.json │ │ │ ├── vertical_cerulean_castle_rune_stone_slab_full.json │ │ │ ├── vertical_cerulean_castle_rune_stone_slab_post.json │ │ │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ │ │ ├── vertical_chiseled_dark_stone_brick_slab.json │ │ │ ├── vertical_chiseled_dark_stone_brick_slab_full.json │ │ │ ├── vertical_chiseled_dark_stone_brick_slab_post.json │ │ │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ │ │ ├── vertical_chiseled_moon_temple_brick_slab.json │ │ │ ├── vertical_chiseled_moon_temple_brick_slab_full.json │ │ │ ├── vertical_chiseled_moon_temple_brick_slab_post.json │ │ │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ │ │ ├── vertical_chiseled_rune_stone_slab.json │ │ │ ├── vertical_chiseled_rune_stone_slab_full.json │ │ │ ├── vertical_chiseled_rune_stone_slab_post.json │ │ │ ├── vertical_chiseled_rune_stone_stairs.json │ │ │ ├── vertical_crystalline_castle_rune_stone_slab.json │ │ │ ├── vertical_crystalline_castle_rune_stone_slab_full.json │ │ │ ├── vertical_crystalline_castle_rune_stone_slab_post.json │ │ │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ │ │ ├── vertical_cursed_frost_wood_slab.json │ │ │ ├── vertical_cursed_frost_wood_slab_full.json │ │ │ ├── vertical_cursed_frost_wood_slab_post.json │ │ │ ├── vertical_cursed_frost_wood_stairs.json │ │ │ ├── vertical_curtain_wood_slab.json │ │ │ ├── vertical_curtain_wood_slab_full.json │ │ │ ├── vertical_curtain_wood_slab_post.json │ │ │ ├── vertical_curtain_wood_stairs.json │ │ │ ├── vertical_dark_stone_brick_slab.json │ │ │ ├── vertical_dark_stone_brick_slab_full.json │ │ │ ├── vertical_dark_stone_brick_slab_post.json │ │ │ ├── vertical_dark_stone_brick_stairs.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab_full.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab_post.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab_full.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab_post.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab_full.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab_post.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab_full.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab_post.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_slab_full.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_slab_post.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ │ │ ├── vertical_moon_castle_rune_stone_slab.json │ │ │ ├── vertical_moon_castle_rune_stone_slab_full.json │ │ │ ├── vertical_moon_castle_rune_stone_slab_post.json │ │ │ ├── vertical_moon_castle_rune_stone_stairs.json │ │ │ ├── vertical_moon_temple_brick_slab.json │ │ │ ├── vertical_moon_temple_brick_slab_full.json │ │ │ ├── vertical_moon_temple_brick_slab_post.json │ │ │ ├── vertical_moon_temple_brick_stairs.json │ │ │ ├── vertical_rune_stone_slab.json │ │ │ ├── vertical_rune_stone_slab_full.json │ │ │ ├── vertical_rune_stone_slab_post.json │ │ │ ├── vertical_rune_stone_stairs.json │ │ │ ├── vertical_silent_wood_slab.json │ │ │ ├── vertical_silent_wood_slab_full.json │ │ │ ├── vertical_silent_wood_slab_post.json │ │ │ ├── vertical_silent_wood_stairs.json │ │ │ ├── vertical_smooth_aurorian_peridotite_slab.json │ │ │ ├── vertical_smooth_aurorian_peridotite_slab_full.json │ │ │ ├── vertical_smooth_aurorian_peridotite_slab_post.json │ │ │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ │ │ ├── vertical_smooth_dark_stone_brick_slab.json │ │ │ ├── vertical_smooth_dark_stone_brick_slab_full.json │ │ │ ├── vertical_smooth_dark_stone_brick_slab_post.json │ │ │ ├── vertical_smooth_dark_stone_brick_stairs.json │ │ │ ├── vertical_smooth_moon_temple_brick_slab.json │ │ │ ├── vertical_smooth_moon_temple_brick_slab_full.json │ │ │ ├── vertical_smooth_moon_temple_brick_slab_post.json │ │ │ ├── vertical_smooth_moon_temple_brick_stairs.json │ │ │ ├── vertical_smooth_rune_stone_slab.json │ │ │ ├── vertical_smooth_rune_stone_slab_full.json │ │ │ ├── vertical_smooth_rune_stone_slab_post.json │ │ │ ├── vertical_smooth_rune_stone_stairs.json │ │ │ ├── vertical_transparent_rune_stone_slab.json │ │ │ ├── vertical_transparent_rune_stone_slab_full.json │ │ │ ├── vertical_transparent_rune_stone_slab_post.json │ │ │ ├── vertical_transparent_rune_stone_stairs.json │ │ │ ├── vertical_umbra_castle_rune_stone_slab.json │ │ │ ├── vertical_umbra_castle_rune_stone_slab_full.json │ │ │ ├── vertical_umbra_castle_rune_stone_slab_post.json │ │ │ ├── vertical_umbra_castle_rune_stone_stairs.json │ │ │ ├── vertical_umbra_stone_cracked_slab.json │ │ │ ├── vertical_umbra_stone_cracked_slab_full.json │ │ │ ├── vertical_umbra_stone_cracked_slab_post.json │ │ │ ├── vertical_umbra_stone_cracked_stairs.json │ │ │ ├── vertical_umbra_stone_roof_slab.json │ │ │ ├── vertical_umbra_stone_roof_slab_full.json │ │ │ ├── vertical_umbra_stone_roof_slab_post.json │ │ │ ├── vertical_umbra_stone_roof_stairs.json │ │ │ ├── vertical_umbra_stone_slab.json │ │ │ ├── vertical_umbra_stone_slab_full.json │ │ │ ├── vertical_umbra_stone_slab_post.json │ │ │ ├── vertical_umbra_stone_stairs.json │ │ │ ├── vertical_weeping_willow_slab.json │ │ │ ├── vertical_weeping_willow_slab_full.json │ │ │ ├── vertical_weeping_willow_slab_post.json │ │ │ ├── vertical_weeping_willow_stairs.json │ │ │ ├── void_candle_flower.json │ │ │ ├── void_stone.json │ │ │ ├── weeping_willow_button.json │ │ │ ├── weeping_willow_button_inventory.json │ │ │ ├── weeping_willow_button_pressed.json │ │ │ ├── weeping_willow_door_bottom_left.json │ │ │ ├── weeping_willow_door_bottom_left_open.json │ │ │ ├── weeping_willow_door_bottom_right.json │ │ │ ├── weeping_willow_door_bottom_right_open.json │ │ │ ├── weeping_willow_door_top_left.json │ │ │ ├── weeping_willow_door_top_left_open.json │ │ │ ├── weeping_willow_door_top_right.json │ │ │ ├── weeping_willow_door_top_right_open.json │ │ │ ├── weeping_willow_fence.json │ │ │ ├── weeping_willow_fence_gate.json │ │ │ ├── weeping_willow_fence_gate_open.json │ │ │ ├── weeping_willow_fence_gate_wall.json │ │ │ ├── weeping_willow_fence_gate_wall_open.json │ │ │ ├── weeping_willow_fence_post.json │ │ │ ├── weeping_willow_fence_side.json │ │ │ ├── weeping_willow_leaves.json │ │ │ ├── weeping_willow_log.json │ │ │ ├── weeping_willow_log_horizontal.json │ │ │ ├── weeping_willow_planks.json │ │ │ ├── weeping_willow_pressure_plate.json │ │ │ ├── weeping_willow_pressure_plate_down.json │ │ │ ├── weeping_willow_slab.json │ │ │ ├── weeping_willow_slab_top.json │ │ │ ├── weeping_willow_stairs.json │ │ │ ├── weeping_willow_stairs_inner.json │ │ │ ├── weeping_willow_stairs_outer.json │ │ │ ├── weeping_willow_trapdoor.json │ │ │ ├── weeping_willow_trapdoor_bottom.json │ │ │ ├── weeping_willow_trapdoor_open.json │ │ │ ├── weeping_willow_trapdoor_top.json │ │ │ ├── weeping_willow_wood.json │ │ │ ├── weeping_willow_wood_hanging_sign.json │ │ │ ├── weeping_willow_wood_horizontal.json │ │ │ ├── weeping_willow_wood_sign.json │ │ │ ├── wick_grass.json │ │ │ └── winter_root.json │ │ └── item │ │ │ ├── absorption_orb.json │ │ │ ├── aurorian_andesite.json │ │ │ ├── aurorian_andesite_slab.json │ │ │ ├── aurorian_andesite_stairs.json │ │ │ ├── aurorian_andesite_wall.json │ │ │ ├── aurorian_bacon.json │ │ │ ├── aurorian_barrier_stone.json │ │ │ ├── aurorian_beef.json │ │ │ ├── aurorian_berry.json │ │ │ ├── aurorian_castle_rune_stone.json │ │ │ ├── aurorian_castle_rune_stone_slab.json │ │ │ ├── aurorian_castle_rune_stone_stairs.json │ │ │ ├── aurorian_castle_rune_stone_wall.json │ │ │ ├── aurorian_chain.json │ │ │ ├── aurorian_coal.json │ │ │ ├── aurorian_coal_block.json │ │ │ ├── aurorian_coal_nugget.json │ │ │ ├── aurorian_coal_ore.json │ │ │ ├── aurorian_cobblestone.json │ │ │ ├── aurorian_cobblestone_slab.json │ │ │ ├── aurorian_cobblestone_stairs.json │ │ │ ├── aurorian_cobblestone_wall.json │ │ │ ├── aurorian_copper_ore.json │ │ │ ├── aurorian_cow_spawn_egg.json │ │ │ ├── aurorian_crafting_table.json │ │ │ ├── aurorian_crystal.json │ │ │ ├── aurorian_diamond_ore.json │ │ │ ├── aurorian_diorite.json │ │ │ ├── aurorian_diorite_slab.json │ │ │ ├── aurorian_diorite_stairs.json │ │ │ ├── aurorian_diorite_wall.json │ │ │ ├── aurorian_dirt.json │ │ │ ├── aurorian_emerald_ore.json │ │ │ ├── aurorian_erosive.json │ │ │ ├── aurorian_glass.json │ │ │ ├── aurorian_glass_pane.json │ │ │ ├── aurorian_gold_ore.json │ │ │ ├── aurorian_granite.json │ │ │ ├── aurorian_granite_slab.json │ │ │ ├── aurorian_granite_stairs.json │ │ │ ├── aurorian_granite_wall.json │ │ │ ├── aurorian_grass.json │ │ │ ├── aurorian_grass_block.json │ │ │ ├── aurorian_grass_light.json │ │ │ ├── aurorian_iron_ore.json │ │ │ ├── aurorian_lapis_ore.json │ │ │ ├── aurorian_mutton.json │ │ │ ├── aurorian_peridotite.json │ │ │ ├── aurorian_peridotite_slab.json │ │ │ ├── aurorian_peridotite_stairs.json │ │ │ ├── aurorian_peridotite_wall.json │ │ │ ├── aurorian_pig_spawn_egg.json │ │ │ ├── aurorian_pixie_spawn_egg.json │ │ │ ├── aurorian_pork.json │ │ │ ├── aurorian_portal_frame_bricks.json │ │ │ ├── aurorian_rabbit.json │ │ │ ├── aurorian_rabbit_spawn_egg.json │ │ │ ├── aurorian_redstone_ore.json │ │ │ ├── aurorian_sheep_spawn_egg.json │ │ │ ├── aurorian_slate_brick.json │ │ │ ├── aurorian_slime_boots.json │ │ │ ├── aurorian_slime_spawn_egg.json │ │ │ ├── aurorian_slimeball.json │ │ │ ├── aurorian_specialty_drink.json │ │ │ ├── aurorian_steel.json │ │ │ ├── aurorian_steel_axe.json │ │ │ ├── aurorian_steel_block.json │ │ │ ├── aurorian_steel_boots.json │ │ │ ├── aurorian_steel_castle_rune_stone.json │ │ │ ├── aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall.json │ │ │ ├── aurorian_steel_chestplate.json │ │ │ ├── aurorian_steel_helmet.json │ │ │ ├── aurorian_steel_hoe.json │ │ │ ├── aurorian_steel_leggings.json │ │ │ ├── aurorian_steel_nugget.json │ │ │ ├── aurorian_steel_pickaxe.json │ │ │ ├── aurorian_steel_shovel.json │ │ │ ├── aurorian_steel_sword.json │ │ │ ├── aurorian_stone.json │ │ │ ├── aurorian_stone_axe.json │ │ │ ├── aurorian_stone_brick_slab.json │ │ │ ├── aurorian_stone_brick_stairs.json │ │ │ ├── aurorian_stone_brick_wall.json │ │ │ ├── aurorian_stone_bricks.json │ │ │ ├── aurorian_stone_hoe.json │ │ │ ├── aurorian_stone_pickaxe.json │ │ │ ├── aurorian_stone_shovel.json │ │ │ ├── aurorian_stone_sickle.json │ │ │ ├── aurorian_stone_slab.json │ │ │ ├── aurorian_stone_stairs.json │ │ │ ├── aurorian_stone_sword.json │ │ │ ├── aurorian_stone_wall.json │ │ │ ├── aurorian_villager_spawn_egg.json │ │ │ ├── aurorian_water_grass.json │ │ │ ├── aurorian_winged_fish.json │ │ │ ├── aurorian_winged_fish_bucket.json │ │ │ ├── aurorian_winged_fish_spawn_egg.json │ │ │ ├── aurorian_winter_root.json │ │ │ ├── aurorianite_axe.json │ │ │ ├── aurorianite_ingot.json │ │ │ ├── aurorianite_pickaxe.json │ │ │ ├── aurorianite_scrap.json │ │ │ ├── aurorianite_sword.json │ │ │ ├── bepsi.json │ │ │ ├── blue_tail_wolf_spawn_egg.json │ │ │ ├── blueberry.json │ │ │ ├── bread_beast_spawn_egg.json │ │ │ ├── bright_moon_sand.json │ │ │ ├── bright_moon_sandstone.json │ │ │ ├── broken_ox_horn.json │ │ │ ├── candy.json │ │ │ ├── candy_cane.json │ │ │ ├── cat_bell.json │ │ │ ├── cave_dweller_spawn_egg.json │ │ │ ├── cerulean_arrow.json │ │ │ ├── cerulean_block.json │ │ │ ├── cerulean_boots.json │ │ │ ├── cerulean_castle_rune_stone.json │ │ │ ├── cerulean_castle_rune_stone_slab.json │ │ │ ├── cerulean_castle_rune_stone_stairs.json │ │ │ ├── cerulean_castle_rune_stone_wall.json │ │ │ ├── cerulean_chestplate.json │ │ │ ├── cerulean_cluster.json │ │ │ ├── cerulean_helmet.json │ │ │ ├── cerulean_ingot.json │ │ │ ├── cerulean_leggings.json │ │ │ ├── cerulean_nugget.json │ │ │ ├── cerulean_ore.json │ │ │ ├── cerulean_shield.json │ │ │ ├── cerulean_shield_blocking.json │ │ │ ├── chiseled_dark_stone_brick_slab.json │ │ │ ├── chiseled_dark_stone_brick_stairs.json │ │ │ ├── chiseled_dark_stone_brick_wall.json │ │ │ ├── chiseled_dark_stone_bricks.json │ │ │ ├── chiseled_moon_temple_brick_slab.json │ │ │ ├── chiseled_moon_temple_brick_stairs.json │ │ │ ├── chiseled_moon_temple_brick_wall.json │ │ │ ├── chiseled_moon_temple_bricks.json │ │ │ ├── chiseled_rune_stone.json │ │ │ ├── chiseled_rune_stone_slab.json │ │ │ ├── chiseled_rune_stone_stairs.json │ │ │ ├── chiseled_rune_stone_wall.json │ │ │ ├── cooked_aurorian_beef.json │ │ │ ├── cooked_aurorian_mutton.json │ │ │ ├── cooked_aurorian_pork.json │ │ │ ├── cooked_aurorian_rabbit.json │ │ │ ├── cooked_aurorian_winged_fish.json │ │ │ ├── cooked_moon_fish.json │ │ │ ├── crisped_mallow.json │ │ │ ├── crystal.json │ │ │ ├── crystal_arrow.json │ │ │ ├── crystal_rune_boots.json │ │ │ ├── crystal_rune_chestplate.json │ │ │ ├── crystal_rune_helmet.json │ │ │ ├── crystal_rune_leggings.json │ │ │ ├── crystalline_castle_rune_stone.json │ │ │ ├── crystalline_castle_rune_stone_slab.json │ │ │ ├── crystalline_castle_rune_stone_stairs.json │ │ │ ├── crystalline_castle_rune_stone_wall.json │ │ │ ├── crystalline_ingot.json │ │ │ ├── crystalline_pickaxe.json │ │ │ ├── crystalline_scrap.json │ │ │ ├── crystalline_shield.json │ │ │ ├── crystalline_shield_blocking.json │ │ │ ├── crystalline_sprite_spawn_egg.json │ │ │ ├── cursed_frost_tree_leaves.json │ │ │ ├── cursed_frost_tree_log.json │ │ │ ├── cursed_frost_tree_planks.json │ │ │ ├── cursed_frost_tree_sapling.json │ │ │ ├── cursed_frost_tree_wood.json │ │ │ ├── cursed_frost_wood_button.json │ │ │ ├── cursed_frost_wood_door.json │ │ │ ├── cursed_frost_wood_fence.json │ │ │ ├── cursed_frost_wood_fence_gate.json │ │ │ ├── cursed_frost_wood_hanging_sign.json │ │ │ ├── cursed_frost_wood_pressure_plate.json │ │ │ ├── cursed_frost_wood_sign.json │ │ │ ├── cursed_frost_wood_slab.json │ │ │ ├── cursed_frost_wood_stairs.json │ │ │ ├── cursed_frost_wood_trapdoor.json │ │ │ ├── curtain_tree_leaves.json │ │ │ ├── curtain_tree_log.json │ │ │ ├── curtain_tree_planks.json │ │ │ ├── curtain_tree_sapling.json │ │ │ ├── curtain_tree_wood.json │ │ │ ├── curtain_wood_button.json │ │ │ ├── curtain_wood_door.json │ │ │ ├── curtain_wood_fence.json │ │ │ ├── curtain_wood_fence_gate.json │ │ │ ├── curtain_wood_hanging_sign.json │ │ │ ├── curtain_wood_pressure_plate.json │ │ │ ├── curtain_wood_sign.json │ │ │ ├── curtain_wood_slab.json │ │ │ ├── curtain_wood_stairs.json │ │ │ ├── curtain_wood_trapdoor.json │ │ │ ├── cut_moon_sandstone.json │ │ │ ├── dark_amulet.json │ │ │ ├── dark_stone_bars.json │ │ │ ├── dark_stone_brick_slab.json │ │ │ ├── dark_stone_brick_stairs.json │ │ │ ├── dark_stone_brick_wall.json │ │ │ ├── dark_stone_bricks.json │ │ │ ├── dark_stone_fancy.json │ │ │ ├── dark_stone_gate.json │ │ │ ├── dark_stone_gate_keyhole.json │ │ │ ├── dark_stone_glass.json │ │ │ ├── dark_stone_glass_pane.json │ │ │ ├── dark_stone_key.json │ │ │ ├── dark_stone_lamp.json │ │ │ ├── dark_stone_layers.json │ │ │ ├── dark_stone_pillar.json │ │ │ ├── dark_stone_shrimp.json │ │ │ ├── developer_gift.json │ │ │ ├── disturbed_hollow_spawn_egg.json │ │ │ ├── dream_dyeing_crystal_fragment.json │ │ │ ├── dungeon_keeper_amulet.json │ │ │ ├── dungeon_locator.json │ │ │ ├── equinox_flower.json │ │ │ ├── equinox_mushroom.json │ │ │ ├── erosive_aurorian_copper_ore.json │ │ │ ├── erosive_aurorian_diamond_ore.json │ │ │ ├── erosive_aurorian_emerald_ore.json │ │ │ ├── erosive_aurorian_gold_ore.json │ │ │ ├── erosive_aurorian_iron_ore.json │ │ │ ├── erosive_aurorian_lapis_ore.json │ │ │ ├── erosive_aurorian_redstone_ore.json │ │ │ ├── erosive_cerulean_ore.json │ │ │ ├── erosive_geode_ore.json │ │ │ ├── erosive_moonstone_ore.json │ │ │ ├── fake_algal_pit_fish.json │ │ │ ├── filthy_ice.json │ │ │ ├── flower_leech_spawn_egg.json │ │ │ ├── forgotten_magic_book_spawn_egg.json │ │ │ ├── frost_snow_grass.json │ │ │ ├── geode_ore.json │ │ │ ├── giant_crystal_spider_spawn_egg.json │ │ │ ├── gingerbread_man.json │ │ │ ├── golden_silent_wood_fruit.json │ │ │ ├── hypha_walking_mushroom_spawn_egg.json │ │ │ ├── ice_calendula.json │ │ │ ├── icefield_deer_spawn_egg.json │ │ │ ├── indigo_mushroom.json │ │ │ ├── indigo_mushroom_crystal.json │ │ │ ├── kebab_with_mushroom.json │ │ │ ├── keepers_bow.json │ │ │ ├── keepers_bow_pulling_0.json │ │ │ ├── keepers_bow_pulling_1.json │ │ │ ├── keepers_bow_pulling_2.json │ │ │ ├── knight_boots.json │ │ │ ├── knight_chestplate.json │ │ │ ├── knight_helmet.json │ │ │ ├── knight_leggings.json │ │ │ ├── large_cerulean_bud.json │ │ │ ├── large_filthy_ice_spike.json │ │ │ ├── large_moonstone_bud.json │ │ │ ├── lavender.json │ │ │ ├── lavender_bread.json │ │ │ ├── lavender_plant.json │ │ │ ├── lavender_salad.json │ │ │ ├── lavender_seeds.json │ │ │ ├── lavender_seedy_tea.json │ │ │ ├── lavender_tea.json │ │ │ ├── light_aurorian_grass_block.json │ │ │ ├── living_divining_rod.json │ │ │ ├── lock_picks.json │ │ │ ├── lucky_rabbit_ear.json │ │ │ ├── luminous_aurorian_castle_rune_stone.json │ │ │ ├── luminous_aurorian_castle_rune_stone_slab.json │ │ │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ │ │ ├── luminous_cerulean_castle_rune_stone.json │ │ │ ├── luminous_cerulean_castle_rune_stone_slab.json │ │ │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall.json │ │ │ ├── luminous_crystalline_castle_rune_stone.json │ │ │ ├── luminous_crystalline_castle_rune_stone_slab.json │ │ │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall.json │ │ │ ├── luminous_moon_castle_rune_stone.json │ │ │ ├── luminous_moon_castle_rune_stone_slab.json │ │ │ ├── luminous_moon_castle_rune_stone_stairs.json │ │ │ ├── luminous_moon_castle_rune_stone_wall.json │ │ │ ├── medium_cerulean_bud.json │ │ │ ├── medium_filthy_ice_spike.json │ │ │ ├── medium_moonstone_bud.json │ │ │ ├── moon_acolyte_spawn_egg.json │ │ │ ├── moon_castle_rune_stone.json │ │ │ ├── moon_castle_rune_stone_slab.json │ │ │ ├── moon_castle_rune_stone_stairs.json │ │ │ ├── moon_castle_rune_stone_wall.json │ │ │ ├── moon_fish.json │ │ │ ├── moon_fish_bucket.json │ │ │ ├── moon_fish_spawn_egg.json │ │ │ ├── moon_frost_flower.json │ │ │ ├── moon_glass.json │ │ │ ├── moon_glass_pane.json │ │ │ ├── moon_queen_spawn_egg.json │ │ │ ├── moon_sand.json │ │ │ ├── moon_sand_river.json │ │ │ ├── moon_sandstone.json │ │ │ ├── moon_shield.json │ │ │ ├── moon_shield_blocking.json │ │ │ ├── moon_shuriken.json │ │ │ ├── moon_temple_bars.json │ │ │ ├── moon_temple_brick_slab.json │ │ │ ├── moon_temple_brick_stairs.json │ │ │ ├── moon_temple_brick_wall.json │ │ │ ├── moon_temple_bricks.json │ │ │ ├── moon_temple_cell_gate.json │ │ │ ├── moon_temple_cell_gate_keyhole.json │ │ │ ├── moon_temple_cell_key.json │ │ │ ├── moon_temple_cell_key_fragment.json │ │ │ ├── moon_temple_gate.json │ │ │ ├── moon_temple_gate_keyhole.json │ │ │ ├── moon_temple_key.json │ │ │ ├── moon_temple_lamp.json │ │ │ ├── moon_temple_pillar.json │ │ │ ├── moon_torch.json │ │ │ ├── moon_water_bucket.json │ │ │ ├── moonlight_knight_spawn_egg.json │ │ │ ├── moonlit_blueberry_specialty_drink.json │ │ │ ├── moonstone_axe.json │ │ │ ├── moonstone_block.json │ │ │ ├── moonstone_cluster.json │ │ │ ├── moonstone_hoe.json │ │ │ ├── moonstone_ingot.json │ │ │ ├── moonstone_nugget.json │ │ │ ├── moonstone_ore.json │ │ │ ├── moonstone_pickaxe.json │ │ │ ├── moonstone_shield.json │ │ │ ├── moonstone_shield_blocking.json │ │ │ ├── moonstone_shovel.json │ │ │ ├── moonstone_sickle.json │ │ │ ├── moonstone_sword.json │ │ │ ├── mysterium_wool.json │ │ │ ├── mysterium_wool_bed.json │ │ │ ├── mysterium_wool_boots.json │ │ │ ├── mysterium_wool_chestplate.json │ │ │ ├── mysterium_wool_helmet.json │ │ │ ├── mysterium_wool_leggings.json │ │ │ ├── nebula_blossom_cluster.json │ │ │ ├── petunia_plant.json │ │ │ ├── petunia_tea.json │ │ │ ├── plant_fiber.json │ │ │ ├── queens_chipper.json │ │ │ ├── raw_cerulean.json │ │ │ ├── raw_moonstone.json │ │ │ ├── red_aurorian_grass_block.json │ │ │ ├── red_book.json │ │ │ ├── red_book_ring.json │ │ │ ├── roasted_aurorian_winter_root.json │ │ │ ├── rock_hammer_spawn_egg.json │ │ │ ├── rune_crystal.json │ │ │ ├── rune_knowledge_fragment.json │ │ │ ├── rune_spider_spawn_egg.json │ │ │ ├── rune_stone.json │ │ │ ├── rune_stone_bars.json │ │ │ ├── rune_stone_gate.json │ │ │ ├── rune_stone_gate_keyhole.json │ │ │ ├── rune_stone_key.json │ │ │ ├── rune_stone_lamp.json │ │ │ ├── rune_stone_loot_gate.json │ │ │ ├── rune_stone_loot_gate_keyhole.json │ │ │ ├── rune_stone_loot_key.json │ │ │ ├── rune_stone_pillar.json │ │ │ ├── rune_stone_slab.json │ │ │ ├── rune_stone_stairs.json │ │ │ ├── rune_stone_wall.json │ │ │ ├── runestone_blaze.json │ │ │ ├── runestone_darkness.json │ │ │ ├── runestone_ice.json │ │ │ ├── runestone_keeper_spawn_egg.json │ │ │ ├── runestone_life.json │ │ │ ├── runestone_light.json │ │ │ ├── runestone_thunder.json │ │ │ ├── runestone_water.json │ │ │ ├── sashimi.json │ │ │ ├── scrapper.json │ │ │ ├── silent_campfire.json │ │ │ ├── silent_tree_leaves.json │ │ │ ├── silent_tree_log.json │ │ │ ├── silent_tree_planks.json │ │ │ ├── silent_tree_sapling.json │ │ │ ├── silent_tree_wood.json │ │ │ ├── silent_wood_axe.json │ │ │ ├── silent_wood_bow.json │ │ │ ├── silent_wood_bow_pulling_0.json │ │ │ ├── silent_wood_bow_pulling_1.json │ │ │ ├── silent_wood_bow_pulling_2.json │ │ │ ├── silent_wood_button.json │ │ │ ├── silent_wood_chest.json │ │ │ ├── silent_wood_door.json │ │ │ ├── silent_wood_fence.json │ │ │ ├── silent_wood_fence_gate.json │ │ │ ├── silent_wood_fruit.json │ │ │ ├── silent_wood_hanging_sign.json │ │ │ ├── silent_wood_hoe.json │ │ │ ├── silent_wood_ladder.json │ │ │ ├── silent_wood_pickaxe.json │ │ │ ├── silent_wood_pressure_plate.json │ │ │ ├── silent_wood_shovel.json │ │ │ ├── silent_wood_sickle.json │ │ │ ├── silent_wood_sign.json │ │ │ ├── silent_wood_slab.json │ │ │ ├── silent_wood_stairs.json │ │ │ ├── silent_wood_stick.json │ │ │ ├── silent_wood_sword.json │ │ │ ├── silent_wood_torch.json │ │ │ ├── silent_wood_trapdoor.json │ │ │ ├── silk_berry.json │ │ │ ├── silk_berry_jam.json │ │ │ ├── silk_berry_jam_sandwich.json │ │ │ ├── silk_berry_tea.json │ │ │ ├── silk_shroom_stew.json │ │ │ ├── sleeping_black_tea.json │ │ │ ├── small_cerulean_bud.json │ │ │ ├── small_filthy_ice_spike.json │ │ │ ├── small_moonstone_bud.json │ │ │ ├── smooth_aurorian_peridotite.json │ │ │ ├── smooth_aurorian_peridotite_slab.json │ │ │ ├── smooth_aurorian_peridotite_stairs.json │ │ │ ├── smooth_aurorian_peridotite_wall.json │ │ │ ├── smooth_dark_stone_brick_slab.json │ │ │ ├── smooth_dark_stone_brick_stairs.json │ │ │ ├── smooth_dark_stone_brick_wall.json │ │ │ ├── smooth_dark_stone_bricks.json │ │ │ ├── smooth_moon_sandstone.json │ │ │ ├── smooth_moon_temple_brick_slab.json │ │ │ ├── smooth_moon_temple_brick_stairs.json │ │ │ ├── smooth_moon_temple_brick_wall.json │ │ │ ├── smooth_moon_temple_bricks.json │ │ │ ├── smooth_rune_stone.json │ │ │ ├── smooth_rune_stone_slab.json │ │ │ ├── smooth_rune_stone_stairs.json │ │ │ ├── smooth_rune_stone_wall.json │ │ │ ├── snow_aurorian_grass_block.json │ │ │ ├── snow_tundra_giant_crab_spawn_egg.json │ │ │ ├── soulless_flesh.json │ │ │ ├── spectral_boots.json │ │ │ ├── spectral_chestplate.json │ │ │ ├── spectral_helmet.json │ │ │ ├── spectral_leggings.json │ │ │ ├── spectral_silk.json │ │ │ ├── spider_mother_spawn_egg.json │ │ │ ├── spiderling_crystal_shell_spawn_egg.json │ │ │ ├── spiderling_spawn_egg.json │ │ │ ├── spiderling_wall_climber_spawn_egg.json │ │ │ ├── spiked_chestplate.json │ │ │ ├── spirit_spawn_egg.json │ │ │ ├── sticky_spiker.json │ │ │ ├── strange_meat.json │ │ │ ├── stripped_cursed_frost_tree_log.json │ │ │ ├── stripped_cursed_frost_tree_wood.json │ │ │ ├── stripped_curtain_tree_log.json │ │ │ ├── stripped_curtain_tree_wood.json │ │ │ ├── stripped_silent_tree_log.json │ │ │ ├── stripped_silent_tree_wood.json │ │ │ ├── stripped_weeping_willow_log.json │ │ │ ├── stripped_weeping_willow_wood.json │ │ │ ├── tall_aurorian_grass.json │ │ │ ├── tall_aurorian_grass_light.json │ │ │ ├── tall_aurorian_water_grass.json │ │ │ ├── tall_lavender_plant.json │ │ │ ├── tall_wick_grass.json │ │ │ ├── tea_cup.json │ │ │ ├── tong_scorpion_spawn_egg.json │ │ │ ├── transparent_rune_stone.json │ │ │ ├── transparent_rune_stone_slab.json │ │ │ ├── transparent_rune_stone_stairs.json │ │ │ ├── transparent_rune_stone_wall.json │ │ │ ├── trophy_keeper.json │ │ │ ├── trophy_moon_queen.json │ │ │ ├── trophy_spider_mother.json │ │ │ ├── tslat_sword.json │ │ │ ├── umbra_castle_rune_stone.json │ │ │ ├── umbra_castle_rune_stone_slab.json │ │ │ ├── umbra_castle_rune_stone_stairs.json │ │ │ ├── umbra_castle_rune_stone_wall.json │ │ │ ├── umbra_ingot.json │ │ │ ├── umbra_pickaxe.json │ │ │ ├── umbra_scrap.json │ │ │ ├── umbra_shield.json │ │ │ ├── umbra_shield_blocking.json │ │ │ ├── umbra_stone.json │ │ │ ├── umbra_stone_cracked.json │ │ │ ├── umbra_stone_cracked_slab.json │ │ │ ├── umbra_stone_cracked_stairs.json │ │ │ ├── umbra_stone_cracked_wall.json │ │ │ ├── umbra_stone_roof_slab.json │ │ │ ├── umbra_stone_roof_stairs.json │ │ │ ├── umbra_stone_roof_tiles.json │ │ │ ├── umbra_stone_roof_wall.json │ │ │ ├── umbra_stone_slab.json │ │ │ ├── umbra_stone_stairs.json │ │ │ ├── umbra_stone_wall.json │ │ │ ├── umbra_sword.json │ │ │ ├── undead_knight_spawn_egg.json │ │ │ ├── unstable_crystal.json │ │ │ ├── vertical_aurorian_andesite_slab.json │ │ │ ├── vertical_aurorian_andesite_stairs.json │ │ │ ├── vertical_aurorian_castle_rune_stone_slab.json │ │ │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ │ │ ├── vertical_aurorian_cobblestone_slab.json │ │ │ ├── vertical_aurorian_cobblestone_stairs.json │ │ │ ├── vertical_aurorian_diorite_slab.json │ │ │ ├── vertical_aurorian_diorite_stairs.json │ │ │ ├── vertical_aurorian_granite_slab.json │ │ │ ├── vertical_aurorian_granite_stairs.json │ │ │ ├── vertical_aurorian_peridotite_slab.json │ │ │ ├── vertical_aurorian_peridotite_stairs.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── vertical_aurorian_stone_brick_slab.json │ │ │ ├── vertical_aurorian_stone_brick_stairs.json │ │ │ ├── vertical_aurorian_stone_slab.json │ │ │ ├── vertical_aurorian_stone_stairs.json │ │ │ ├── vertical_cerulean_castle_rune_stone_slab.json │ │ │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ │ │ ├── vertical_chiseled_dark_stone_brick_slab.json │ │ │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ │ │ ├── vertical_chiseled_moon_temple_brick_slab.json │ │ │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ │ │ ├── vertical_chiseled_rune_stone_slab.json │ │ │ ├── vertical_chiseled_rune_stone_stairs.json │ │ │ ├── vertical_crystalline_castle_rune_stone_slab.json │ │ │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ │ │ ├── vertical_cursed_frost_wood_slab.json │ │ │ ├── vertical_cursed_frost_wood_stairs.json │ │ │ ├── vertical_curtain_wood_slab.json │ │ │ ├── vertical_curtain_wood_stairs.json │ │ │ ├── vertical_dark_stone_brick_slab.json │ │ │ ├── vertical_dark_stone_brick_stairs.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ │ │ ├── vertical_moon_castle_rune_stone_slab.json │ │ │ ├── vertical_moon_castle_rune_stone_stairs.json │ │ │ ├── vertical_moon_temple_brick_slab.json │ │ │ ├── vertical_moon_temple_brick_stairs.json │ │ │ ├── vertical_rune_stone_slab.json │ │ │ ├── vertical_rune_stone_stairs.json │ │ │ ├── vertical_silent_wood_slab.json │ │ │ ├── vertical_silent_wood_stairs.json │ │ │ ├── vertical_smooth_aurorian_peridotite_slab.json │ │ │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ │ │ ├── vertical_smooth_dark_stone_brick_slab.json │ │ │ ├── vertical_smooth_dark_stone_brick_stairs.json │ │ │ ├── vertical_smooth_moon_temple_brick_slab.json │ │ │ ├── vertical_smooth_moon_temple_brick_stairs.json │ │ │ ├── vertical_smooth_rune_stone_slab.json │ │ │ ├── vertical_smooth_rune_stone_stairs.json │ │ │ ├── vertical_transparent_rune_stone_slab.json │ │ │ ├── vertical_transparent_rune_stone_stairs.json │ │ │ ├── vertical_umbra_castle_rune_stone_slab.json │ │ │ ├── vertical_umbra_castle_rune_stone_stairs.json │ │ │ ├── vertical_umbra_stone_cracked_slab.json │ │ │ ├── vertical_umbra_stone_cracked_stairs.json │ │ │ ├── vertical_umbra_stone_roof_slab.json │ │ │ ├── vertical_umbra_stone_roof_stairs.json │ │ │ ├── vertical_umbra_stone_slab.json │ │ │ ├── vertical_umbra_stone_stairs.json │ │ │ ├── vertical_weeping_willow_slab.json │ │ │ ├── vertical_weeping_willow_stairs.json │ │ │ ├── void_candle_flower.json │ │ │ ├── void_stone.json │ │ │ ├── webbing.json │ │ │ ├── weeping_willow_button.json │ │ │ ├── weeping_willow_door.json │ │ │ ├── weeping_willow_fence.json │ │ │ ├── weeping_willow_fence_gate.json │ │ │ ├── weeping_willow_leaves.json │ │ │ ├── weeping_willow_log.json │ │ │ ├── weeping_willow_planks.json │ │ │ ├── weeping_willow_pressure_plate.json │ │ │ ├── weeping_willow_sap.json │ │ │ ├── weeping_willow_slab.json │ │ │ ├── weeping_willow_stairs.json │ │ │ ├── weeping_willow_trapdoor.json │ │ │ ├── weeping_willow_wood.json │ │ │ ├── weeping_willow_wood_hanging_sign.json │ │ │ ├── weeping_willow_wood_sign.json │ │ │ ├── white_chocolate.json │ │ │ ├── wick_grass.json │ │ │ ├── winter_root.json │ │ │ ├── world_scroll.json │ │ │ └── world_scroll_fragment.json │ │ └── sounds.json │ └── data │ ├── forge │ └── tags │ │ ├── blocks │ │ └── chests │ │ │ └── wooden.json │ │ ├── entity_types │ │ └── bosses.json │ │ └── items │ │ ├── rods │ │ └── wooden.json │ │ └── tools │ │ ├── bows.json │ │ └── shields.json │ ├── minecraft │ ├── advancements │ │ └── recipes │ │ │ ├── building_blocks │ │ │ ├── aurorian_andesite_slab_from_aurorian_andesite_stonecutting.json │ │ │ ├── aurorian_andesite_stairs_from_aurorian_andesite_stonecutting.json │ │ │ ├── aurorian_andesite_wall_from_aurorian_andesite_stonecutting.json │ │ │ ├── aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_castle_rune_stone_wall_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_coal_block.json │ │ │ ├── aurorian_cobblestone_slab_from_aurorian_cobblestone_stonecutting.json │ │ │ ├── aurorian_cobblestone_stairs_from_aurorian_cobblestone_stonecutting.json │ │ │ ├── aurorian_cobblestone_wall_from_aurorian_cobblestone_stonecutting.json │ │ │ ├── aurorian_diorite_slab_from_aurorian_diorite_stonecutting.json │ │ │ ├── aurorian_diorite_stairs_from_aurorian_diorite_stonecutting.json │ │ │ ├── aurorian_diorite_wall_from_aurorian_diorite_stonecutting.json │ │ │ ├── aurorian_granite_slab_from_aurorian_granite_stonecutting.json │ │ │ ├── aurorian_granite_stairs_from_aurorian_granite_stonecutting.json │ │ │ ├── aurorian_granite_wall_from_aurorian_granite_stonecutting.json │ │ │ ├── aurorian_peridotite_slab_from_aurorian_peridotite_stonecutting.json │ │ │ ├── aurorian_peridotite_stairs_from_aurorian_peridotite_stonecutting.json │ │ │ ├── aurorian_peridotite_wall_from_aurorian_peridotite_stonecutting.json │ │ │ ├── aurorian_steel_block.json │ │ │ ├── aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_steel_castle_rune_stone_wall_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── aurorian_stone_brick_slab_from_aurorian_stone_bricks_stonecutting.json │ │ │ ├── aurorian_stone_brick_stairs_from_aurorian_stone_bricks_stonecutting.json │ │ │ ├── aurorian_stone_brick_wall_from_aurorian_stone_bricks_stonecutting.json │ │ │ ├── aurorian_stone_bricks_from_aurorian_stone_stonecutting.json │ │ │ ├── aurorian_stone_slab_from_aurorian_stone_stonecutting.json │ │ │ ├── aurorian_stone_stairs_from_aurorian_stone_stonecutting.json │ │ │ ├── aurorian_stone_wall_from_aurorian_stone_stonecutting.json │ │ │ ├── cerulean_block.json │ │ │ ├── cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── cerulean_castle_rune_stone_wall_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── chiseled_dark_stone_brick_slab_from_chiseled_dark_stone_bricks_stonecutting.json │ │ │ ├── chiseled_dark_stone_brick_stairs_from_chiseled_dark_stone_bricks_stonecutting.json │ │ │ ├── chiseled_dark_stone_brick_wall_from_chiseled_dark_stone_bricks_stonecutting.json │ │ │ ├── chiseled_moon_temple_brick_slab_from_chiseled_moon_temple_bricks_stonecutting.json │ │ │ ├── chiseled_moon_temple_brick_stairs_from_chiseled_moon_temple_bricks_stonecutting.json │ │ │ ├── chiseled_moon_temple_brick_wall_from_chiseled_moon_temple_bricks_stonecutting.json │ │ │ ├── chiseled_rune_stone_slab_from_chiseled_rune_stone_stonecutting.json │ │ │ ├── chiseled_rune_stone_stairs_from_chiseled_rune_stone_stonecutting.json │ │ │ ├── chiseled_rune_stone_wall_from_chiseled_rune_stone_stonecutting.json │ │ │ ├── crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── crystalline_castle_rune_stone_wall_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── cut_moon_sandstone_from_moon_sandstone_stonecutting.json │ │ │ ├── dark_stone_brick_slab_from_dark_stone_bricks_stonecutting.json │ │ │ ├── dark_stone_brick_stairs_from_dark_stone_bricks_stonecutting.json │ │ │ ├── dark_stone_brick_wall_from_dark_stone_bricks_stonecutting.json │ │ │ ├── luminous_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_aurorian_castle_rune_stone_wall_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_cerulean_castle_rune_stone_wall_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_crystalline_castle_rune_stone_wall_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── luminous_moon_castle_rune_stone_wall_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── moon_castle_rune_stone_wall_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── moon_temple_brick_slab_from_moon_temple_bricks_stonecutting.json │ │ │ ├── moon_temple_brick_stairs_from_moon_temple_bricks_stonecutting.json │ │ │ ├── moon_temple_brick_wall_from_moon_temple_bricks_stonecutting.json │ │ │ ├── moonstone_block.json │ │ │ ├── rune_stone_slab_from_rune_stone_stonecutting.json │ │ │ ├── rune_stone_stairs_from_rune_stone_stonecutting.json │ │ │ ├── rune_stone_wall_from_rune_stone_stonecutting.json │ │ │ ├── smooth_aurorian_peridotite_slab_from_smooth_aurorian_peridotite_stonecutting.json │ │ │ ├── smooth_aurorian_peridotite_stairs_from_smooth_aurorian_peridotite_stonecutting.json │ │ │ ├── smooth_aurorian_peridotite_wall_from_smooth_aurorian_peridotite_stonecutting.json │ │ │ ├── smooth_dark_stone_brick_slab_from_smooth_dark_stone_bricks_stonecutting.json │ │ │ ├── smooth_dark_stone_brick_stairs_from_smooth_dark_stone_bricks_stonecutting.json │ │ │ ├── smooth_dark_stone_brick_wall_from_smooth_dark_stone_bricks_stonecutting.json │ │ │ ├── smooth_moon_temple_brick_slab_from_smooth_moon_temple_bricks_stonecutting.json │ │ │ ├── smooth_moon_temple_brick_stairs_from_smooth_moon_temple_bricks_stonecutting.json │ │ │ ├── smooth_moon_temple_brick_wall_from_smooth_moon_temple_bricks_stonecutting.json │ │ │ ├── smooth_rune_stone_slab_from_smooth_rune_stone_stonecutting.json │ │ │ ├── smooth_rune_stone_stairs_from_smooth_rune_stone_stonecutting.json │ │ │ ├── smooth_rune_stone_wall_from_smooth_rune_stone_stonecutting.json │ │ │ ├── transparent_rune_stone_slab_from_transparent_rune_stone_stonecutting.json │ │ │ ├── transparent_rune_stone_stairs_from_transparent_rune_stone_stonecutting.json │ │ │ ├── transparent_rune_stone_wall_from_transparent_rune_stone_stonecutting.json │ │ │ ├── umbra_castle_rune_stone_slab_from_umbra_castle_rune_stone_stonecutting.json │ │ │ ├── umbra_castle_rune_stone_stairs_from_umbra_castle_rune_stone_stonecutting.json │ │ │ ├── umbra_castle_rune_stone_wall_from_umbra_castle_rune_stone_stonecutting.json │ │ │ ├── umbra_stone_cracked_slab_from_umbra_stone_cracked_stonecutting.json │ │ │ ├── umbra_stone_cracked_stairs_from_umbra_stone_cracked_stonecutting.json │ │ │ ├── umbra_stone_cracked_wall_from_umbra_stone_cracked_stonecutting.json │ │ │ ├── umbra_stone_roof_slab_from_umbra_stone_roof_tiles_stonecutting.json │ │ │ ├── umbra_stone_roof_stairs_from_umbra_stone_roof_tiles_stonecutting.json │ │ │ ├── umbra_stone_roof_wall_from_umbra_stone_roof_tiles_stonecutting.json │ │ │ ├── umbra_stone_slab_from_umbra_stone_stonecutting.json │ │ │ ├── umbra_stone_stairs_from_umbra_stone_stonecutting.json │ │ │ ├── umbra_stone_wall_from_umbra_stone_stonecutting.json │ │ │ ├── vertical_aurorian_andesite_slab_from_aurorian_andesite_stonecutting.json │ │ │ ├── vertical_aurorian_andesite_stairs_from_aurorian_andesite_stonecutting.json │ │ │ ├── vertical_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_aurorian_cobblestone_slab_from_aurorian_cobblestone_stonecutting.json │ │ │ ├── vertical_aurorian_cobblestone_stairs_from_aurorian_cobblestone_stonecutting.json │ │ │ ├── vertical_aurorian_diorite_slab_from_aurorian_diorite_stonecutting.json │ │ │ ├── vertical_aurorian_diorite_stairs_from_aurorian_diorite_stonecutting.json │ │ │ ├── vertical_aurorian_granite_slab_from_aurorian_granite_stonecutting.json │ │ │ ├── vertical_aurorian_granite_stairs_from_aurorian_granite_stonecutting.json │ │ │ ├── vertical_aurorian_peridotite_slab_from_aurorian_peridotite_stonecutting.json │ │ │ ├── vertical_aurorian_peridotite_stairs_from_aurorian_peridotite_stonecutting.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_aurorian_stone_brick_slab_from_aurorian_stone_bricks_stonecutting.json │ │ │ ├── vertical_aurorian_stone_brick_stairs_from_aurorian_stone_bricks_stonecutting.json │ │ │ ├── vertical_aurorian_stone_slab_from_aurorian_stone_stonecutting.json │ │ │ ├── vertical_aurorian_stone_stairs_from_aurorian_stone_stonecutting.json │ │ │ ├── vertical_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_chiseled_dark_stone_brick_slab_from_chiseled_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_chiseled_dark_stone_brick_stairs_from_chiseled_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_chiseled_moon_temple_brick_slab_from_chiseled_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_chiseled_moon_temple_brick_stairs_from_chiseled_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_chiseled_rune_stone_slab_from_chiseled_rune_stone_stonecutting.json │ │ │ ├── vertical_chiseled_rune_stone_stairs_from_chiseled_rune_stone_stonecutting.json │ │ │ ├── vertical_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_dark_stone_brick_slab_from_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_dark_stone_brick_stairs_from_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_moon_temple_brick_slab_from_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_moon_temple_brick_stairs_from_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_rune_stone_slab_from_rune_stone_stonecutting.json │ │ │ ├── vertical_rune_stone_stairs_from_rune_stone_stonecutting.json │ │ │ ├── vertical_smooth_aurorian_peridotite_slab_from_smooth_aurorian_peridotite_stonecutting.json │ │ │ ├── vertical_smooth_aurorian_peridotite_stairs_from_smooth_aurorian_peridotite_stonecutting.json │ │ │ ├── vertical_smooth_dark_stone_brick_slab_from_smooth_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_smooth_dark_stone_brick_stairs_from_smooth_dark_stone_bricks_stonecutting.json │ │ │ ├── vertical_smooth_moon_temple_brick_slab_from_smooth_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_smooth_moon_temple_brick_stairs_from_smooth_moon_temple_bricks_stonecutting.json │ │ │ ├── vertical_smooth_rune_stone_slab_from_smooth_rune_stone_stonecutting.json │ │ │ ├── vertical_smooth_rune_stone_stairs_from_smooth_rune_stone_stonecutting.json │ │ │ ├── vertical_transparent_rune_stone_slab_from_transparent_rune_stone_stonecutting.json │ │ │ ├── vertical_transparent_rune_stone_stairs_from_transparent_rune_stone_stonecutting.json │ │ │ ├── vertical_umbra_castle_rune_stone_slab_from_umbra_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_umbra_castle_rune_stone_stairs_from_umbra_castle_rune_stone_stonecutting.json │ │ │ ├── vertical_umbra_stone_cracked_slab_from_umbra_stone_cracked_stonecutting.json │ │ │ ├── vertical_umbra_stone_cracked_stairs_from_umbra_stone_cracked_stonecutting.json │ │ │ ├── vertical_umbra_stone_roof_slab_from_umbra_stone_roof_tiles_stonecutting.json │ │ │ ├── vertical_umbra_stone_roof_stairs_from_umbra_stone_roof_tiles_stonecutting.json │ │ │ ├── vertical_umbra_stone_slab_from_umbra_stone_stonecutting.json │ │ │ └── vertical_umbra_stone_stairs_from_umbra_stone_stonecutting.json │ │ │ └── misc │ │ │ ├── aurorian_coal.json │ │ │ ├── aurorian_coal_from_aurorian_coal_nugget.json │ │ │ ├── aurorian_coal_from_blasting_aurorian_coal_ore.json │ │ │ ├── aurorian_coal_from_smelting_aurorian_coal_ore.json │ │ │ ├── aurorian_coal_nugget.json │ │ │ ├── aurorian_steel.json │ │ │ ├── aurorian_steel_from_aurorian_steel_nugget.json │ │ │ ├── aurorian_steel_nugget.json │ │ │ ├── aurorianite_ingot_from_aurorianite_scrap.json │ │ │ ├── aurorianite_scrap.json │ │ │ ├── cerulean_ingot.json │ │ │ ├── cerulean_ingot_from_blasting_cerulean_ore.json │ │ │ ├── cerulean_ingot_from_blasting_erosive_cerulean_ore.json │ │ │ ├── cerulean_ingot_from_blasting_raw_cerulean.json │ │ │ ├── cerulean_ingot_from_cerulean_nugget.json │ │ │ ├── cerulean_ingot_from_smelting_cerulean_ore.json │ │ │ ├── cerulean_ingot_from_smelting_erosive_cerulean_ore.json │ │ │ ├── cerulean_ingot_from_smelting_raw_cerulean.json │ │ │ ├── cerulean_nugget.json │ │ │ ├── copper_ingot_from_blasting_aurorian_copper_ore.json │ │ │ ├── copper_ingot_from_blasting_erosive_aurorian_copper_ore.json │ │ │ ├── copper_ingot_from_smelting_aurorian_copper_ore.json │ │ │ ├── copper_ingot_from_smelting_erosive_aurorian_copper_ore.json │ │ │ ├── crystal_from_blasting_erosive_geode_ore.json │ │ │ ├── crystal_from_blasting_geode_ore.json │ │ │ ├── crystal_from_smelting_erosive_geode_ore.json │ │ │ ├── crystal_from_smelting_geode_ore.json │ │ │ ├── crystalline_ingot_from_crystalline_scrap.json │ │ │ ├── crystalline_scrap.json │ │ │ ├── diamond_from_blasting_aurorian_diamond_ore.json │ │ │ ├── diamond_from_blasting_erosive_aurorian_diamond_ore.json │ │ │ ├── diamond_from_smelting_aurorian_diamond_ore.json │ │ │ ├── diamond_from_smelting_erosive_aurorian_diamond_ore.json │ │ │ ├── emerald_from_blasting_aurorian_emerald_ore.json │ │ │ ├── emerald_from_blasting_erosive_aurorian_emerald_ore.json │ │ │ ├── emerald_from_smelting_aurorian_emerald_ore.json │ │ │ ├── emerald_from_smelting_erosive_aurorian_emerald_ore.json │ │ │ ├── gold_ingot_from_blasting_aurorian_gold_ore.json │ │ │ ├── gold_ingot_from_blasting_erosive_aurorian_gold_ore.json │ │ │ ├── gold_ingot_from_smelting_aurorian_gold_ore.json │ │ │ ├── gold_ingot_from_smelting_erosive_aurorian_gold_ore.json │ │ │ ├── iron_ingot_from_blasting_aurorian_iron_ore.json │ │ │ ├── iron_ingot_from_blasting_erosive_aurorian_iron_ore.json │ │ │ ├── iron_ingot_from_smelting_aurorian_iron_ore.json │ │ │ ├── iron_ingot_from_smelting_erosive_aurorian_iron_ore.json │ │ │ ├── lapis_lazuli_from_blasting_aurorian_lapis_ore.json │ │ │ ├── lapis_lazuli_from_blasting_erosive_aurorian_lapis_ore.json │ │ │ ├── lapis_lazuli_from_smelting_aurorian_lapis_ore.json │ │ │ ├── lapis_lazuli_from_smelting_erosive_aurorian_lapis_ore.json │ │ │ ├── lavender_seeds_from_lavender.json │ │ │ ├── moonstone_ingot.json │ │ │ ├── moonstone_ingot_from_blasting_erosive_moonstone_ore.json │ │ │ ├── moonstone_ingot_from_blasting_moonstone_ore.json │ │ │ ├── moonstone_ingot_from_blasting_raw_moonstone.json │ │ │ ├── moonstone_ingot_from_moonstone_nugget.json │ │ │ ├── moonstone_ingot_from_smelting_erosive_moonstone_ore.json │ │ │ ├── moonstone_ingot_from_smelting_moonstone_ore.json │ │ │ ├── moonstone_ingot_from_smelting_raw_moonstone.json │ │ │ ├── moonstone_nugget.json │ │ │ ├── pink_dye_from_petunia_plant.json │ │ │ ├── redstone_from_blasting_aurorian_redstone_ore.json │ │ │ ├── redstone_from_blasting_erosive_aurorian_redstone_ore.json │ │ │ ├── redstone_from_smelting_aurorian_redstone_ore.json │ │ │ ├── redstone_from_smelting_erosive_aurorian_redstone_ore.json │ │ │ ├── rotten_flesh_from_soulless_flesh.json │ │ │ ├── umbra_ingot_from_umbra_scrap.json │ │ │ └── umbra_scrap.json │ ├── recipes │ │ ├── aurorian_andesite_slab_from_aurorian_andesite_stonecutting.json │ │ ├── aurorian_andesite_stairs_from_aurorian_andesite_stonecutting.json │ │ ├── aurorian_andesite_wall_from_aurorian_andesite_stonecutting.json │ │ ├── aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── aurorian_castle_rune_stone_wall_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── aurorian_coal.json │ │ ├── aurorian_coal_block.json │ │ ├── aurorian_coal_from_aurorian_coal_nugget.json │ │ ├── aurorian_coal_from_blasting_aurorian_coal_ore.json │ │ ├── aurorian_coal_from_smelting_aurorian_coal_ore.json │ │ ├── aurorian_coal_nugget.json │ │ ├── aurorian_cobblestone_slab_from_aurorian_cobblestone_stonecutting.json │ │ ├── aurorian_cobblestone_stairs_from_aurorian_cobblestone_stonecutting.json │ │ ├── aurorian_cobblestone_wall_from_aurorian_cobblestone_stonecutting.json │ │ ├── aurorian_diorite_slab_from_aurorian_diorite_stonecutting.json │ │ ├── aurorian_diorite_stairs_from_aurorian_diorite_stonecutting.json │ │ ├── aurorian_diorite_wall_from_aurorian_diorite_stonecutting.json │ │ ├── aurorian_granite_slab_from_aurorian_granite_stonecutting.json │ │ ├── aurorian_granite_stairs_from_aurorian_granite_stonecutting.json │ │ ├── aurorian_granite_wall_from_aurorian_granite_stonecutting.json │ │ ├── aurorian_peridotite_slab_from_aurorian_peridotite_stonecutting.json │ │ ├── aurorian_peridotite_stairs_from_aurorian_peridotite_stonecutting.json │ │ ├── aurorian_peridotite_wall_from_aurorian_peridotite_stonecutting.json │ │ ├── aurorian_steel.json │ │ ├── aurorian_steel_block.json │ │ ├── aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── aurorian_steel_castle_rune_stone_wall_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── aurorian_steel_from_aurorian_steel_nugget.json │ │ ├── aurorian_steel_nugget.json │ │ ├── aurorian_stone_brick_slab_from_aurorian_stone_bricks_stonecutting.json │ │ ├── aurorian_stone_brick_stairs_from_aurorian_stone_bricks_stonecutting.json │ │ ├── aurorian_stone_brick_wall_from_aurorian_stone_bricks_stonecutting.json │ │ ├── aurorian_stone_bricks_from_aurorian_stone_stonecutting.json │ │ ├── aurorian_stone_slab_from_aurorian_stone_stonecutting.json │ │ ├── aurorian_stone_stairs_from_aurorian_stone_stonecutting.json │ │ ├── aurorian_stone_wall_from_aurorian_stone_stonecutting.json │ │ ├── aurorianite_ingot_from_aurorianite_scrap.json │ │ ├── aurorianite_scrap.json │ │ ├── cerulean_block.json │ │ ├── cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── cerulean_castle_rune_stone_wall_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── cerulean_ingot.json │ │ ├── cerulean_ingot_from_blasting_cerulean_ore.json │ │ ├── cerulean_ingot_from_blasting_erosive_cerulean_ore.json │ │ ├── cerulean_ingot_from_blasting_raw_cerulean.json │ │ ├── cerulean_ingot_from_cerulean_nugget.json │ │ ├── cerulean_ingot_from_smelting_cerulean_ore.json │ │ ├── cerulean_ingot_from_smelting_erosive_cerulean_ore.json │ │ ├── cerulean_ingot_from_smelting_raw_cerulean.json │ │ ├── cerulean_nugget.json │ │ ├── chiseled_dark_stone_brick_slab_from_chiseled_dark_stone_bricks_stonecutting.json │ │ ├── chiseled_dark_stone_brick_stairs_from_chiseled_dark_stone_bricks_stonecutting.json │ │ ├── chiseled_dark_stone_brick_wall_from_chiseled_dark_stone_bricks_stonecutting.json │ │ ├── chiseled_moon_temple_brick_slab_from_chiseled_moon_temple_bricks_stonecutting.json │ │ ├── chiseled_moon_temple_brick_stairs_from_chiseled_moon_temple_bricks_stonecutting.json │ │ ├── chiseled_moon_temple_brick_wall_from_chiseled_moon_temple_bricks_stonecutting.json │ │ ├── chiseled_rune_stone_slab_from_chiseled_rune_stone_stonecutting.json │ │ ├── chiseled_rune_stone_stairs_from_chiseled_rune_stone_stonecutting.json │ │ ├── chiseled_rune_stone_wall_from_chiseled_rune_stone_stonecutting.json │ │ ├── copper_ingot_from_blasting_aurorian_copper_ore.json │ │ ├── copper_ingot_from_blasting_erosive_aurorian_copper_ore.json │ │ ├── copper_ingot_from_smelting_aurorian_copper_ore.json │ │ ├── copper_ingot_from_smelting_erosive_aurorian_copper_ore.json │ │ ├── crystal_from_blasting_erosive_geode_ore.json │ │ ├── crystal_from_blasting_geode_ore.json │ │ ├── crystal_from_smelting_erosive_geode_ore.json │ │ ├── crystal_from_smelting_geode_ore.json │ │ ├── crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── crystalline_castle_rune_stone_wall_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── crystalline_ingot_from_crystalline_scrap.json │ │ ├── crystalline_scrap.json │ │ ├── cut_moon_sandstone_from_moon_sandstone_stonecutting.json │ │ ├── dark_stone_brick_slab_from_dark_stone_bricks_stonecutting.json │ │ ├── dark_stone_brick_stairs_from_dark_stone_bricks_stonecutting.json │ │ ├── dark_stone_brick_wall_from_dark_stone_bricks_stonecutting.json │ │ ├── diamond_from_blasting_aurorian_diamond_ore.json │ │ ├── diamond_from_blasting_erosive_aurorian_diamond_ore.json │ │ ├── diamond_from_smelting_aurorian_diamond_ore.json │ │ ├── diamond_from_smelting_erosive_aurorian_diamond_ore.json │ │ ├── emerald_from_blasting_aurorian_emerald_ore.json │ │ ├── emerald_from_blasting_erosive_aurorian_emerald_ore.json │ │ ├── emerald_from_smelting_aurorian_emerald_ore.json │ │ ├── emerald_from_smelting_erosive_aurorian_emerald_ore.json │ │ ├── gold_ingot_from_blasting_aurorian_gold_ore.json │ │ ├── gold_ingot_from_blasting_erosive_aurorian_gold_ore.json │ │ ├── gold_ingot_from_smelting_aurorian_gold_ore.json │ │ ├── gold_ingot_from_smelting_erosive_aurorian_gold_ore.json │ │ ├── iron_ingot_from_blasting_aurorian_iron_ore.json │ │ ├── iron_ingot_from_blasting_erosive_aurorian_iron_ore.json │ │ ├── iron_ingot_from_smelting_aurorian_iron_ore.json │ │ ├── iron_ingot_from_smelting_erosive_aurorian_iron_ore.json │ │ ├── lapis_lazuli_from_blasting_aurorian_lapis_ore.json │ │ ├── lapis_lazuli_from_blasting_erosive_aurorian_lapis_ore.json │ │ ├── lapis_lazuli_from_smelting_aurorian_lapis_ore.json │ │ ├── lapis_lazuli_from_smelting_erosive_aurorian_lapis_ore.json │ │ ├── lavender_seeds_from_lavender.json │ │ ├── luminous_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── luminous_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── luminous_aurorian_castle_rune_stone_wall_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── luminous_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── luminous_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── luminous_cerulean_castle_rune_stone_wall_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── luminous_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── luminous_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── luminous_crystalline_castle_rune_stone_wall_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── luminous_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ ├── luminous_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ ├── luminous_moon_castle_rune_stone_wall_from_moon_castle_rune_stone_stonecutting.json │ │ ├── moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ ├── moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ ├── moon_castle_rune_stone_wall_from_moon_castle_rune_stone_stonecutting.json │ │ ├── moon_temple_brick_slab_from_moon_temple_bricks_stonecutting.json │ │ ├── moon_temple_brick_stairs_from_moon_temple_bricks_stonecutting.json │ │ ├── moon_temple_brick_wall_from_moon_temple_bricks_stonecutting.json │ │ ├── moonstone_block.json │ │ ├── moonstone_ingot.json │ │ ├── moonstone_ingot_from_blasting_erosive_moonstone_ore.json │ │ ├── moonstone_ingot_from_blasting_moonstone_ore.json │ │ ├── moonstone_ingot_from_blasting_raw_moonstone.json │ │ ├── moonstone_ingot_from_moonstone_nugget.json │ │ ├── moonstone_ingot_from_smelting_erosive_moonstone_ore.json │ │ ├── moonstone_ingot_from_smelting_moonstone_ore.json │ │ ├── moonstone_ingot_from_smelting_raw_moonstone.json │ │ ├── moonstone_nugget.json │ │ ├── pink_dye_from_petunia_plant.json │ │ ├── redstone_from_blasting_aurorian_redstone_ore.json │ │ ├── redstone_from_blasting_erosive_aurorian_redstone_ore.json │ │ ├── redstone_from_smelting_aurorian_redstone_ore.json │ │ ├── redstone_from_smelting_erosive_aurorian_redstone_ore.json │ │ ├── rotten_flesh_from_soulless_flesh.json │ │ ├── rune_stone_slab_from_rune_stone_stonecutting.json │ │ ├── rune_stone_stairs_from_rune_stone_stonecutting.json │ │ ├── rune_stone_wall_from_rune_stone_stonecutting.json │ │ ├── smooth_aurorian_peridotite_slab_from_smooth_aurorian_peridotite_stonecutting.json │ │ ├── smooth_aurorian_peridotite_stairs_from_smooth_aurorian_peridotite_stonecutting.json │ │ ├── smooth_aurorian_peridotite_wall_from_smooth_aurorian_peridotite_stonecutting.json │ │ ├── smooth_dark_stone_brick_slab_from_smooth_dark_stone_bricks_stonecutting.json │ │ ├── smooth_dark_stone_brick_stairs_from_smooth_dark_stone_bricks_stonecutting.json │ │ ├── smooth_dark_stone_brick_wall_from_smooth_dark_stone_bricks_stonecutting.json │ │ ├── smooth_moon_temple_brick_slab_from_smooth_moon_temple_bricks_stonecutting.json │ │ ├── smooth_moon_temple_brick_stairs_from_smooth_moon_temple_bricks_stonecutting.json │ │ ├── smooth_moon_temple_brick_wall_from_smooth_moon_temple_bricks_stonecutting.json │ │ ├── smooth_rune_stone_slab_from_smooth_rune_stone_stonecutting.json │ │ ├── smooth_rune_stone_stairs_from_smooth_rune_stone_stonecutting.json │ │ ├── smooth_rune_stone_wall_from_smooth_rune_stone_stonecutting.json │ │ ├── transparent_rune_stone_slab_from_transparent_rune_stone_stonecutting.json │ │ ├── transparent_rune_stone_stairs_from_transparent_rune_stone_stonecutting.json │ │ ├── transparent_rune_stone_wall_from_transparent_rune_stone_stonecutting.json │ │ ├── umbra_castle_rune_stone_slab_from_umbra_castle_rune_stone_stonecutting.json │ │ ├── umbra_castle_rune_stone_stairs_from_umbra_castle_rune_stone_stonecutting.json │ │ ├── umbra_castle_rune_stone_wall_from_umbra_castle_rune_stone_stonecutting.json │ │ ├── umbra_ingot_from_umbra_scrap.json │ │ ├── umbra_scrap.json │ │ ├── umbra_stone_cracked_slab_from_umbra_stone_cracked_stonecutting.json │ │ ├── umbra_stone_cracked_stairs_from_umbra_stone_cracked_stonecutting.json │ │ ├── umbra_stone_cracked_wall_from_umbra_stone_cracked_stonecutting.json │ │ ├── umbra_stone_roof_slab_from_umbra_stone_roof_tiles_stonecutting.json │ │ ├── umbra_stone_roof_stairs_from_umbra_stone_roof_tiles_stonecutting.json │ │ ├── umbra_stone_roof_wall_from_umbra_stone_roof_tiles_stonecutting.json │ │ ├── umbra_stone_slab_from_umbra_stone_stonecutting.json │ │ ├── umbra_stone_stairs_from_umbra_stone_stonecutting.json │ │ ├── umbra_stone_wall_from_umbra_stone_stonecutting.json │ │ ├── vertical_aurorian_andesite_slab_from_aurorian_andesite_stonecutting.json │ │ ├── vertical_aurorian_andesite_stairs_from_aurorian_andesite_stonecutting.json │ │ ├── vertical_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── vertical_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── vertical_aurorian_cobblestone_slab_from_aurorian_cobblestone_stonecutting.json │ │ ├── vertical_aurorian_cobblestone_stairs_from_aurorian_cobblestone_stonecutting.json │ │ ├── vertical_aurorian_diorite_slab_from_aurorian_diorite_stonecutting.json │ │ ├── vertical_aurorian_diorite_stairs_from_aurorian_diorite_stonecutting.json │ │ ├── vertical_aurorian_granite_slab_from_aurorian_granite_stonecutting.json │ │ ├── vertical_aurorian_granite_stairs_from_aurorian_granite_stonecutting.json │ │ ├── vertical_aurorian_peridotite_slab_from_aurorian_peridotite_stonecutting.json │ │ ├── vertical_aurorian_peridotite_stairs_from_aurorian_peridotite_stonecutting.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── vertical_aurorian_stone_brick_slab_from_aurorian_stone_bricks_stonecutting.json │ │ ├── vertical_aurorian_stone_brick_stairs_from_aurorian_stone_bricks_stonecutting.json │ │ ├── vertical_aurorian_stone_slab_from_aurorian_stone_stonecutting.json │ │ ├── vertical_aurorian_stone_stairs_from_aurorian_stone_stonecutting.json │ │ ├── vertical_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── vertical_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── vertical_chiseled_dark_stone_brick_slab_from_chiseled_dark_stone_bricks_stonecutting.json │ │ ├── vertical_chiseled_dark_stone_brick_stairs_from_chiseled_dark_stone_bricks_stonecutting.json │ │ ├── vertical_chiseled_moon_temple_brick_slab_from_chiseled_moon_temple_bricks_stonecutting.json │ │ ├── vertical_chiseled_moon_temple_brick_stairs_from_chiseled_moon_temple_bricks_stonecutting.json │ │ ├── vertical_chiseled_rune_stone_slab_from_chiseled_rune_stone_stonecutting.json │ │ ├── vertical_chiseled_rune_stone_stairs_from_chiseled_rune_stone_stonecutting.json │ │ ├── vertical_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── vertical_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── vertical_dark_stone_brick_slab_from_dark_stone_bricks_stonecutting.json │ │ ├── vertical_dark_stone_brick_stairs_from_dark_stone_bricks_stonecutting.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs_from_aurorian_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs_from_aurorian_steel_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs_from_cerulean_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs_from_crystalline_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ ├── vertical_moon_castle_rune_stone_slab_from_moon_castle_rune_stone_stonecutting.json │ │ ├── vertical_moon_castle_rune_stone_stairs_from_moon_castle_rune_stone_stonecutting.json │ │ ├── vertical_moon_temple_brick_slab_from_moon_temple_bricks_stonecutting.json │ │ ├── vertical_moon_temple_brick_stairs_from_moon_temple_bricks_stonecutting.json │ │ ├── vertical_rune_stone_slab_from_rune_stone_stonecutting.json │ │ ├── vertical_rune_stone_stairs_from_rune_stone_stonecutting.json │ │ ├── vertical_smooth_aurorian_peridotite_slab_from_smooth_aurorian_peridotite_stonecutting.json │ │ ├── vertical_smooth_aurorian_peridotite_stairs_from_smooth_aurorian_peridotite_stonecutting.json │ │ ├── vertical_smooth_dark_stone_brick_slab_from_smooth_dark_stone_bricks_stonecutting.json │ │ ├── vertical_smooth_dark_stone_brick_stairs_from_smooth_dark_stone_bricks_stonecutting.json │ │ ├── vertical_smooth_moon_temple_brick_slab_from_smooth_moon_temple_bricks_stonecutting.json │ │ ├── vertical_smooth_moon_temple_brick_stairs_from_smooth_moon_temple_bricks_stonecutting.json │ │ ├── vertical_smooth_rune_stone_slab_from_smooth_rune_stone_stonecutting.json │ │ ├── vertical_smooth_rune_stone_stairs_from_smooth_rune_stone_stonecutting.json │ │ ├── vertical_transparent_rune_stone_slab_from_transparent_rune_stone_stonecutting.json │ │ ├── vertical_transparent_rune_stone_stairs_from_transparent_rune_stone_stonecutting.json │ │ ├── vertical_umbra_castle_rune_stone_slab_from_umbra_castle_rune_stone_stonecutting.json │ │ ├── vertical_umbra_castle_rune_stone_stairs_from_umbra_castle_rune_stone_stonecutting.json │ │ ├── vertical_umbra_stone_cracked_slab_from_umbra_stone_cracked_stonecutting.json │ │ ├── vertical_umbra_stone_cracked_stairs_from_umbra_stone_cracked_stonecutting.json │ │ ├── vertical_umbra_stone_roof_slab_from_umbra_stone_roof_tiles_stonecutting.json │ │ ├── vertical_umbra_stone_roof_stairs_from_umbra_stone_roof_tiles_stonecutting.json │ │ ├── vertical_umbra_stone_slab_from_umbra_stone_stonecutting.json │ │ └── vertical_umbra_stone_stairs_from_umbra_stone_stonecutting.json │ └── tags │ │ ├── blocks │ │ ├── beds.json │ │ ├── ceiling_hanging_signs.json │ │ ├── climbable.json │ │ ├── coal_ores.json │ │ ├── copper_ores.json │ │ ├── crops.json │ │ ├── diamond_ores.json │ │ ├── dirt.json │ │ ├── emerald_ores.json │ │ ├── fall_damage_resetting.json │ │ ├── fence_gates.json │ │ ├── gold_ores.json │ │ ├── ice.json │ │ ├── iron_ores.json │ │ ├── lapis_ores.json │ │ ├── leaves.json │ │ ├── logs.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ ├── pickaxe.json │ │ │ └── shovel.json │ │ ├── needs_iron_tool.json │ │ ├── needs_stone_tool.json │ │ ├── planks.json │ │ ├── redstone_ores.json │ │ ├── sand.json │ │ ├── saplings.json │ │ ├── slabs.json │ │ ├── snow_layer_cannot_survive_on.json │ │ ├── stairs.json │ │ ├── standing_signs.json │ │ ├── sword_efficient.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 │ │ └── wool.json │ │ ├── entity_types │ │ └── fall_damage_immune.json │ │ ├── fluids │ │ ├── lava.json │ │ └── water.json │ │ ├── items │ │ └── arrows.json │ │ ├── painting_variant │ │ └── placeable.json │ │ └── point_of_interest_type │ │ └── acquirable_job_site.json │ └── theaurorian │ ├── advancements │ └── recipes │ │ ├── alchemy_table │ │ ├── alchemy_aurorian_specialty_drink.json │ │ └── alchemy_moonlit_blueberry_specialty_drink.json │ │ ├── building_blocks │ │ ├── aurorian_andesite_slab.json │ │ ├── aurorian_andesite_stairs.json │ │ ├── aurorian_andesite_wall.json │ │ ├── aurorian_castle_rune_stone_slab.json │ │ ├── aurorian_castle_rune_stone_stairs.json │ │ ├── aurorian_castle_rune_stone_wall.json │ │ ├── aurorian_cobblestone.json │ │ ├── aurorian_cobblestone_slab.json │ │ ├── aurorian_cobblestone_stairs.json │ │ ├── aurorian_cobblestone_wall.json │ │ ├── aurorian_diorite_slab.json │ │ ├── aurorian_diorite_stairs.json │ │ ├── aurorian_diorite_wall.json │ │ ├── aurorian_glass.json │ │ ├── aurorian_granite_slab.json │ │ ├── aurorian_granite_stairs.json │ │ ├── aurorian_granite_wall.json │ │ ├── aurorian_peridotite_slab.json │ │ ├── aurorian_peridotite_stairs.json │ │ ├── aurorian_peridotite_wall.json │ │ ├── aurorian_portal_frame_bricks.json │ │ ├── aurorian_steel_castle_rune_stone_slab.json │ │ ├── aurorian_steel_castle_rune_stone_stairs.json │ │ ├── aurorian_steel_castle_rune_stone_wall.json │ │ ├── aurorian_stone.json │ │ ├── aurorian_stone_brick_slab.json │ │ ├── aurorian_stone_brick_stairs.json │ │ ├── aurorian_stone_brick_wall.json │ │ ├── aurorian_stone_slab.json │ │ ├── aurorian_stone_stairs.json │ │ ├── aurorian_stone_wall.json │ │ ├── cerulean_castle_rune_stone_slab.json │ │ ├── cerulean_castle_rune_stone_stairs.json │ │ ├── cerulean_castle_rune_stone_wall.json │ │ ├── chiseled_dark_stone_brick_slab.json │ │ ├── chiseled_dark_stone_brick_stairs.json │ │ ├── chiseled_dark_stone_brick_wall.json │ │ ├── chiseled_moon_temple_brick_slab.json │ │ ├── chiseled_moon_temple_brick_stairs.json │ │ ├── chiseled_moon_temple_brick_wall.json │ │ ├── chiseled_rune_stone_slab.json │ │ ├── chiseled_rune_stone_stairs.json │ │ ├── chiseled_rune_stone_wall.json │ │ ├── crystalline_castle_rune_stone_slab.json │ │ ├── crystalline_castle_rune_stone_stairs.json │ │ ├── crystalline_castle_rune_stone_wall.json │ │ ├── cursed_frost_tree_planks.json │ │ ├── cursed_frost_tree_wood.json │ │ ├── cursed_frost_wood_slab.json │ │ ├── cursed_frost_wood_stairs.json │ │ ├── curtain_tree_planks.json │ │ ├── curtain_tree_wood.json │ │ ├── curtain_wood_slab.json │ │ ├── curtain_wood_stairs.json │ │ ├── cut_moon_sandstone.json │ │ ├── dark_stone_brick_slab.json │ │ ├── dark_stone_brick_stairs.json │ │ ├── dark_stone_brick_wall.json │ │ ├── luminous_aurorian_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_castle_rune_stone_wall.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ │ ├── luminous_cerulean_castle_rune_stone_slab.json │ │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── luminous_cerulean_castle_rune_stone_wall.json │ │ ├── luminous_crystalline_castle_rune_stone_slab.json │ │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── luminous_crystalline_castle_rune_stone_wall.json │ │ ├── luminous_moon_castle_rune_stone_slab.json │ │ ├── luminous_moon_castle_rune_stone_stairs.json │ │ ├── luminous_moon_castle_rune_stone_wall.json │ │ ├── moon_castle_rune_stone_slab.json │ │ ├── moon_castle_rune_stone_stairs.json │ │ ├── moon_castle_rune_stone_wall.json │ │ ├── moon_glass.json │ │ ├── moon_temple_brick_slab.json │ │ ├── moon_temple_brick_stairs.json │ │ ├── moon_temple_brick_wall.json │ │ ├── rune_stone_slab.json │ │ ├── rune_stone_stairs.json │ │ ├── rune_stone_wall.json │ │ ├── silent_tree_planks.json │ │ ├── silent_tree_wood.json │ │ ├── silent_wood_slab.json │ │ ├── silent_wood_stairs.json │ │ ├── smooth_aurorian_peridotite.json │ │ ├── smooth_aurorian_peridotite_slab.json │ │ ├── smooth_aurorian_peridotite_stairs.json │ │ ├── smooth_aurorian_peridotite_wall.json │ │ ├── smooth_dark_stone_brick_slab.json │ │ ├── smooth_dark_stone_brick_stairs.json │ │ ├── smooth_dark_stone_brick_wall.json │ │ ├── smooth_dark_stone_bricks.json │ │ ├── smooth_moon_temple_brick_slab.json │ │ ├── smooth_moon_temple_brick_stairs.json │ │ ├── smooth_moon_temple_brick_wall.json │ │ ├── smooth_moon_temple_bricks.json │ │ ├── smooth_rune_stone.json │ │ ├── smooth_rune_stone_slab.json │ │ ├── smooth_rune_stone_stairs.json │ │ ├── smooth_rune_stone_wall.json │ │ ├── transparent_rune_stone_slab.json │ │ ├── transparent_rune_stone_stairs.json │ │ ├── transparent_rune_stone_wall.json │ │ ├── umbra_castle_rune_stone_slab.json │ │ ├── umbra_castle_rune_stone_stairs.json │ │ ├── umbra_castle_rune_stone_wall.json │ │ ├── umbra_stone_cracked_slab.json │ │ ├── umbra_stone_cracked_stairs.json │ │ ├── umbra_stone_cracked_wall.json │ │ ├── umbra_stone_roof_slab.json │ │ ├── umbra_stone_roof_stairs.json │ │ ├── umbra_stone_roof_wall.json │ │ ├── umbra_stone_slab.json │ │ ├── umbra_stone_stairs.json │ │ ├── umbra_stone_wall.json │ │ ├── vertical_aurorian_andesite_slab.json │ │ ├── vertical_aurorian_andesite_stairs.json │ │ ├── vertical_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_cobblestone_slab.json │ │ ├── vertical_aurorian_cobblestone_stairs.json │ │ ├── vertical_aurorian_diorite_slab.json │ │ ├── vertical_aurorian_diorite_stairs.json │ │ ├── vertical_aurorian_granite_slab.json │ │ ├── vertical_aurorian_granite_stairs.json │ │ ├── vertical_aurorian_peridotite_slab.json │ │ ├── vertical_aurorian_peridotite_stairs.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_stone_brick_slab.json │ │ ├── vertical_aurorian_stone_brick_stairs.json │ │ ├── vertical_aurorian_stone_slab.json │ │ ├── vertical_aurorian_stone_stairs.json │ │ ├── vertical_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_chiseled_dark_stone_brick_slab.json │ │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ │ ├── vertical_chiseled_moon_temple_brick_slab.json │ │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ │ ├── vertical_chiseled_rune_stone_slab.json │ │ ├── vertical_chiseled_rune_stone_stairs.json │ │ ├── vertical_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_cursed_frost_wood_slab.json │ │ ├── vertical_cursed_frost_wood_stairs.json │ │ ├── vertical_curtain_wood_slab.json │ │ ├── vertical_curtain_wood_stairs.json │ │ ├── vertical_dark_stone_brick_slab.json │ │ ├── vertical_dark_stone_brick_stairs.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_castle_rune_stone_slab.json │ │ ├── vertical_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_temple_brick_slab.json │ │ ├── vertical_moon_temple_brick_stairs.json │ │ ├── vertical_rune_stone_slab.json │ │ ├── vertical_rune_stone_stairs.json │ │ ├── vertical_silent_wood_slab.json │ │ ├── vertical_silent_wood_stairs.json │ │ ├── vertical_smooth_aurorian_peridotite_slab.json │ │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ │ ├── vertical_smooth_dark_stone_brick_slab.json │ │ ├── vertical_smooth_dark_stone_brick_stairs.json │ │ ├── vertical_smooth_moon_temple_brick_slab.json │ │ ├── vertical_smooth_moon_temple_brick_stairs.json │ │ ├── vertical_smooth_rune_stone_slab.json │ │ ├── vertical_smooth_rune_stone_stairs.json │ │ ├── vertical_transparent_rune_stone_slab.json │ │ ├── vertical_transparent_rune_stone_stairs.json │ │ ├── vertical_umbra_castle_rune_stone_slab.json │ │ ├── vertical_umbra_castle_rune_stone_stairs.json │ │ ├── vertical_umbra_stone_cracked_slab.json │ │ ├── vertical_umbra_stone_cracked_stairs.json │ │ ├── vertical_umbra_stone_roof_slab.json │ │ ├── vertical_umbra_stone_roof_stairs.json │ │ ├── vertical_umbra_stone_slab.json │ │ ├── vertical_umbra_stone_stairs.json │ │ ├── vertical_weeping_willow_slab.json │ │ ├── vertical_weeping_willow_stairs.json │ │ ├── weeping_willow_planks.json │ │ ├── weeping_willow_slab.json │ │ ├── weeping_willow_stairs.json │ │ └── weeping_willow_wood.json │ │ ├── combat │ │ ├── aurorian_slate_brick.json │ │ ├── aurorian_slime_boots.json │ │ ├── aurorian_steel_boots.json │ │ ├── aurorian_steel_chestplate.json │ │ ├── aurorian_steel_helmet.json │ │ ├── aurorian_steel_leggings.json │ │ ├── aurorian_steel_sword.json │ │ ├── aurorian_stone_sword.json │ │ ├── cerulean_arrow.json │ │ ├── cerulean_boots.json │ │ ├── cerulean_chestplate.json │ │ ├── cerulean_helmet.json │ │ ├── cerulean_leggings.json │ │ ├── cerulean_shield.json │ │ ├── crystal_arrow.json │ │ ├── moon_shuriken.json │ │ ├── moonstone_shield.json │ │ ├── moonstone_sword.json │ │ ├── mysterium_wool_boots.json │ │ ├── mysterium_wool_chestplate.json │ │ ├── mysterium_wool_helmet.json │ │ ├── mysterium_wool_leggings.json │ │ ├── silent_wood_bow.json │ │ ├── silent_wood_sword.json │ │ ├── spectral_boots.json │ │ ├── spectral_chestplate.json │ │ ├── spectral_helmet.json │ │ ├── spectral_leggings.json │ │ └── unstable_crystal.json │ │ ├── decorations │ │ ├── aurorian_crafting_table.json │ │ ├── aurorian_furnace.json │ │ ├── aurorian_furnace_chimney.json │ │ ├── aurorian_glass_pane.json │ │ ├── cursed_frost_wood_fence.json │ │ ├── cursed_frost_wood_hanging_sign.json │ │ ├── curtain_wood_fence.json │ │ ├── curtain_wood_hanging_sign.json │ │ ├── dark_stone_bars.json │ │ ├── dark_stone_glass_pane.json │ │ ├── moon_glass_pane.json │ │ ├── moon_temple_bars.json │ │ ├── moon_torch.json │ │ ├── moonlight_forge.json │ │ ├── mysterium_wool_bed.json │ │ ├── rune_stone_bars.json │ │ ├── silent_wood_chest.json │ │ ├── silent_wood_fence.json │ │ ├── silent_wood_hanging_sign.json │ │ ├── silent_wood_ladder.json │ │ ├── silent_wood_torch.json │ │ ├── weeping_willow_fence.json │ │ └── weeping_willow_wood_hanging_sign.json │ │ ├── food │ │ ├── aurorian_bacon.json │ │ ├── cooked_aurorian_beef_campfire_cooking.json │ │ ├── cooked_aurorian_beef_smelting.json │ │ ├── cooked_aurorian_beef_smoking.json │ │ ├── cooked_aurorian_mutton_campfire_cooking.json │ │ ├── cooked_aurorian_mutton_smelting.json │ │ ├── cooked_aurorian_mutton_smoking.json │ │ ├── cooked_aurorian_pork_campfire_cooking.json │ │ ├── cooked_aurorian_pork_smelting.json │ │ ├── cooked_aurorian_pork_smoking.json │ │ ├── cooked_aurorian_rabbit_campfire_cooking.json │ │ ├── cooked_aurorian_rabbit_smelting.json │ │ ├── cooked_aurorian_rabbit_smoking.json │ │ ├── cooked_aurorian_winged_fish_campfire_cooking.json │ │ ├── cooked_aurorian_winged_fish_smelting.json │ │ ├── cooked_aurorian_winged_fish_smoking.json │ │ ├── cooked_moon_fish_campfire_cooking.json │ │ ├── cooked_moon_fish_smelting.json │ │ ├── cooked_moon_fish_smoking.json │ │ ├── golden_silent_wood_fruit.json │ │ ├── kebab_with_mushroom.json │ │ ├── lavender_bread.json │ │ ├── lavender_salad.json │ │ ├── lavender_seedy_tea.json │ │ ├── lavender_tea.json │ │ ├── petunia_tea.json │ │ ├── roasted_aurorian_winter_root_campfire_cooking.json │ │ ├── roasted_aurorian_winter_root_smelting.json │ │ ├── roasted_aurorian_winter_root_smoking.json │ │ ├── sashimi.json │ │ ├── silk_berry_jam.json │ │ ├── silk_berry_jam_sandwich.json │ │ ├── silk_berry_tea.json │ │ └── silk_shroom_stew.json │ │ ├── misc │ │ ├── dark_stone_key.json │ │ ├── dungeon_locator.json │ │ ├── lock_picks.json │ │ ├── moon_temple_cell_key.json │ │ ├── moon_temple_key.json │ │ ├── silent_wood_stick.json │ │ ├── string_from_plant_fiber.json │ │ └── tea_cup.json │ │ ├── moonlight_forge │ │ ├── forge_aurorian_steel_pickaxe_to_queens_chipper.json │ │ ├── forge_moonstone_axe_to_aurorianite_axe.json │ │ ├── forge_moonstone_pickaxe_to_aurorianite_pickaxe.json │ │ ├── forge_moonstone_pickaxe_to_crystalline_pickaxe.json │ │ ├── forge_moonstone_pickaxe_to_umbra_pickaxe.json │ │ ├── forge_moonstone_shield_to_crystalline_shield.json │ │ ├── forge_moonstone_shield_to_moon_shield.json │ │ ├── forge_moonstone_shield_to_umbra_shield.json │ │ ├── forge_moonstone_sword_to_aurorianite_sword.json │ │ ├── forge_moonstone_sword_to_crystalline_sword.json │ │ ├── forge_moonstone_sword_to_umbra_sword.json │ │ └── forge_silent_wood_bow_to_keepers_bow.json │ │ ├── redstone │ │ ├── cursed_frost_wood_button.json │ │ ├── cursed_frost_wood_door.json │ │ ├── cursed_frost_wood_fence_gate.json │ │ ├── cursed_frost_wood_pressure_plate.json │ │ ├── cursed_frost_wood_trapdoor.json │ │ ├── curtain_wood_button.json │ │ ├── curtain_wood_door.json │ │ ├── curtain_wood_fence_gate.json │ │ ├── curtain_wood_pressure_plate.json │ │ ├── curtain_wood_trapdoor.json │ │ ├── silent_wood_button.json │ │ ├── silent_wood_door.json │ │ ├── silent_wood_fence_gate.json │ │ ├── silent_wood_pressure_plate.json │ │ ├── silent_wood_trapdoor.json │ │ ├── weeping_willow_button.json │ │ ├── weeping_willow_door.json │ │ ├── weeping_willow_fence_gate.json │ │ ├── weeping_willow_pressure_plate.json │ │ └── weeping_willow_trapdoor.json │ │ ├── scrapper │ │ ├── scrap_absorption_orb_to_umbra_scrap.json │ │ ├── scrap_aurorian_steel_axe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_boots_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_chestplate_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_helmet_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_hoe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_leggings_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_pickaxe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_shovel_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_sword_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorianite_axe_to_umbra_scrap.json │ │ ├── scrap_aurorianite_pickaxe_to_umbra_scrap.json │ │ ├── scrap_aurorianite_sword_to_umbra_scrap.json │ │ ├── scrap_cerulean_boots_to_cerulean_nugget.json │ │ ├── scrap_cerulean_chestplate_to_cerulean_nugget.json │ │ ├── scrap_cerulean_helmet_to_cerulean_nugget.json │ │ ├── scrap_cerulean_leggings_to_cerulean_nugget.json │ │ ├── scrap_cerulean_shield_to_cerulean_nugget.json │ │ ├── scrap_crystalline_pickaxe_to_umbra_scrap.json │ │ ├── scrap_crystalline_shield_to_umbra_scrap.json │ │ ├── scrap_crystalline_sword_to_umbra_scrap.json │ │ ├── scrap_diamond_axe_to_diamond.json │ │ ├── scrap_diamond_boots_to_diamond.json │ │ ├── scrap_diamond_chestplate_to_diamond.json │ │ ├── scrap_diamond_helmet_to_diamond.json │ │ ├── scrap_diamond_hoe_to_diamond.json │ │ ├── scrap_diamond_leggings_to_diamond.json │ │ ├── scrap_diamond_pickaxe_to_diamond.json │ │ ├── scrap_diamond_shovel_to_diamond.json │ │ ├── scrap_diamond_sword_to_diamond.json │ │ ├── scrap_golden_axe_to_gold_nugget.json │ │ ├── scrap_golden_boots_to_gold_nugget.json │ │ ├── scrap_golden_chestplate_to_gold_nugget.json │ │ ├── scrap_golden_helmet_to_gold_nugget.json │ │ ├── scrap_golden_hoe_to_gold_nugget.json │ │ ├── scrap_golden_leggings_to_gold_nugget.json │ │ ├── scrap_golden_pickaxe_to_gold_nugget.json │ │ ├── scrap_golden_shovel_to_gold_nugget.json │ │ ├── scrap_golden_sword_to_gold_nugget.json │ │ ├── scrap_iron_axe_to_iron_nugget.json │ │ ├── scrap_iron_boots_to_iron_nugget.json │ │ ├── scrap_iron_chestplate_to_iron_nugget.json │ │ ├── scrap_iron_helmet_to_iron_nugget.json │ │ ├── scrap_iron_hoe_to_iron_nugget.json │ │ ├── scrap_iron_leggings_to_iron_nugget.json │ │ ├── scrap_iron_pickaxe_to_iron_nugget.json │ │ ├── scrap_iron_shovel_to_iron_nugget.json │ │ ├── scrap_iron_sword_to_iron_nugget.json │ │ ├── scrap_living_divining_rod_to_umbra_scrap.json │ │ ├── scrap_moonstone_axe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_hoe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_pickaxe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_shield_to_moonstone_nugget.json │ │ ├── scrap_moonstone_shovel_to_moonstone_nugget.json │ │ ├── scrap_moonstone_sword_to_moonstone_nugget.json │ │ ├── scrap_spiked_chestplate_to_umbra_scrap.json │ │ ├── scrap_umbra_pickaxe_to_umbra_scrap.json │ │ ├── scrap_umbra_shield_to_umbra_scrap.json │ │ └── scrap_umbra_sword_to_umbra_scrap.json │ │ └── tools │ │ ├── aurorian_steel_axe.json │ │ ├── aurorian_steel_hoe.json │ │ ├── aurorian_steel_pickaxe.json │ │ ├── aurorian_steel_shovel.json │ │ ├── aurorian_stone_axe.json │ │ ├── aurorian_stone_hoe.json │ │ ├── aurorian_stone_pickaxe.json │ │ ├── aurorian_stone_shovel.json │ │ ├── aurorian_stone_sickle.json │ │ ├── moonstone_axe.json │ │ ├── moonstone_hoe.json │ │ ├── moonstone_pickaxe.json │ │ ├── moonstone_shovel.json │ │ ├── moonstone_sickle.json │ │ ├── silent_wood_axe.json │ │ ├── silent_wood_hoe.json │ │ ├── silent_wood_pickaxe.json │ │ ├── silent_wood_shovel.json │ │ ├── silent_wood_sickle.json │ │ └── sticky_spiker.json │ ├── aurorian │ └── biome_layer_stack │ │ ├── biomes_along_streams.json │ │ └── random_forest_biomes.json │ ├── damage_type │ └── corruption.json │ ├── dimension │ └── the_aurorian.json │ ├── dimension_type │ └── the_aurorian_type.json │ ├── forge │ └── biome_modifier │ │ ├── moon_acolyte_spawn.json │ │ └── spirit_spawn.json │ ├── loot_tables │ ├── blocks │ │ ├── alchemy_table.json │ │ ├── astrology_table.json │ │ ├── aurorian_andesite_slab.json │ │ ├── aurorian_andesite_stairs.json │ │ ├── aurorian_andesite_wall.json │ │ ├── aurorian_barrier_stone.json │ │ ├── aurorian_castle_rune_stone.json │ │ ├── aurorian_castle_rune_stone_slab.json │ │ ├── aurorian_castle_rune_stone_stairs.json │ │ ├── aurorian_castle_rune_stone_wall.json │ │ ├── aurorian_coal_ore.json │ │ ├── aurorian_cobblestone.json │ │ ├── aurorian_cobblestone_slab.json │ │ ├── aurorian_cobblestone_stairs.json │ │ ├── aurorian_cobblestone_wall.json │ │ ├── aurorian_copper_ore.json │ │ ├── aurorian_crafting_table.json │ │ ├── aurorian_diamond_ore.json │ │ ├── aurorian_diorite_slab.json │ │ ├── aurorian_diorite_stairs.json │ │ ├── aurorian_diorite_wall.json │ │ ├── aurorian_dirt.json │ │ ├── aurorian_emerald_ore.json │ │ ├── aurorian_farm_tile.json │ │ ├── aurorian_furnace.json │ │ ├── aurorian_furnace_chimney.json │ │ ├── aurorian_glass.json │ │ ├── aurorian_glass_pane.json │ │ ├── aurorian_gold_ore.json │ │ ├── aurorian_granite_slab.json │ │ ├── aurorian_granite_stairs.json │ │ ├── aurorian_granite_wall.json │ │ ├── aurorian_grass.json │ │ ├── aurorian_grass_block.json │ │ ├── aurorian_grass_light.json │ │ ├── aurorian_iron_ore.json │ │ ├── aurorian_lapis_ore.json │ │ ├── aurorian_peridotite.json │ │ ├── aurorian_peridotite_slab.json │ │ ├── aurorian_peridotite_stairs.json │ │ ├── aurorian_peridotite_wall.json │ │ ├── aurorian_portal_frame_bricks.json │ │ ├── aurorian_redstone_ore.json │ │ ├── aurorian_steel_castle_rune_stone.json │ │ ├── aurorian_steel_castle_rune_stone_slab.json │ │ ├── aurorian_steel_castle_rune_stone_stairs.json │ │ ├── aurorian_steel_castle_rune_stone_wall.json │ │ ├── aurorian_stone.json │ │ ├── aurorian_stone_brick_slab.json │ │ ├── aurorian_stone_brick_stairs.json │ │ ├── aurorian_stone_brick_wall.json │ │ ├── aurorian_stone_bricks.json │ │ ├── aurorian_stone_slab.json │ │ ├── aurorian_stone_stairs.json │ │ ├── aurorian_stone_wall.json │ │ ├── aurorian_water_grass.json │ │ ├── blueberry_bush.json │ │ ├── cerulean_block.json │ │ ├── cerulean_castle_rune_stone.json │ │ ├── cerulean_castle_rune_stone_slab.json │ │ ├── cerulean_castle_rune_stone_stairs.json │ │ ├── cerulean_castle_rune_stone_wall.json │ │ ├── cerulean_cluster.json │ │ ├── cerulean_ore.json │ │ ├── chiseled_dark_stone_brick_slab.json │ │ ├── chiseled_dark_stone_brick_stairs.json │ │ ├── chiseled_dark_stone_brick_wall.json │ │ ├── chiseled_dark_stone_bricks.json │ │ ├── chiseled_moon_temple_brick_slab.json │ │ ├── chiseled_moon_temple_brick_stairs.json │ │ ├── chiseled_moon_temple_brick_wall.json │ │ ├── chiseled_moon_temple_bricks.json │ │ ├── chiseled_rune_stone.json │ │ ├── chiseled_rune_stone_slab.json │ │ ├── chiseled_rune_stone_stairs.json │ │ ├── chiseled_rune_stone_wall.json │ │ ├── crisped_mallow.json │ │ ├── crystalline_castle_rune_stone.json │ │ ├── crystalline_castle_rune_stone_slab.json │ │ ├── crystalline_castle_rune_stone_stairs.json │ │ ├── crystalline_castle_rune_stone_wall.json │ │ ├── cursed_frost_tree_log.json │ │ ├── cursed_frost_tree_planks.json │ │ ├── cursed_frost_tree_sapling.json │ │ ├── cursed_frost_tree_wood.json │ │ ├── cursed_frost_wood_button.json │ │ ├── cursed_frost_wood_door.json │ │ ├── cursed_frost_wood_fence.json │ │ ├── cursed_frost_wood_fence_gate.json │ │ ├── cursed_frost_wood_hanging_sign.json │ │ ├── cursed_frost_wood_pressure_plate.json │ │ ├── cursed_frost_wood_sign.json │ │ ├── cursed_frost_wood_slab.json │ │ ├── cursed_frost_wood_stairs.json │ │ ├── cursed_frost_wood_trapdoor.json │ │ ├── cursed_frost_wood_wall_hanging_sign.json │ │ ├── cursed_frost_wood_wall_sign.json │ │ ├── curtain_tree_log.json │ │ ├── curtain_tree_planks.json │ │ ├── curtain_tree_sapling.json │ │ ├── curtain_tree_wood.json │ │ ├── curtain_wood_button.json │ │ ├── curtain_wood_door.json │ │ ├── curtain_wood_fence.json │ │ ├── curtain_wood_fence_gate.json │ │ ├── curtain_wood_hanging_sign.json │ │ ├── curtain_wood_pressure_plate.json │ │ ├── curtain_wood_sign.json │ │ ├── curtain_wood_slab.json │ │ ├── curtain_wood_stairs.json │ │ ├── curtain_wood_trapdoor.json │ │ ├── curtain_wood_wall_hanging_sign.json │ │ ├── curtain_wood_wall_sign.json │ │ ├── dark_stone_bars.json │ │ ├── dark_stone_brick_slab.json │ │ ├── dark_stone_brick_stairs.json │ │ ├── dark_stone_brick_wall.json │ │ ├── dark_stone_bricks.json │ │ ├── dark_stone_fancy.json │ │ ├── dark_stone_gate.json │ │ ├── dark_stone_gate_keyhole.json │ │ ├── dark_stone_glass.json │ │ ├── dark_stone_glass_pane.json │ │ ├── dark_stone_lamp.json │ │ ├── dark_stone_layers.json │ │ ├── dark_stone_pillar.json │ │ ├── dreamscape_pistil.json │ │ ├── equinox_flower.json │ │ ├── erosive_aurorian_copper_ore.json │ │ ├── erosive_aurorian_diamond_ore.json │ │ ├── erosive_aurorian_emerald_ore.json │ │ ├── erosive_aurorian_gold_ore.json │ │ ├── erosive_aurorian_iron_ore.json │ │ ├── erosive_aurorian_lapis_ore.json │ │ ├── erosive_aurorian_redstone_ore.json │ │ ├── erosive_cerulean_ore.json │ │ ├── erosive_geode_ore.json │ │ ├── erosive_moonstone_ore.json │ │ ├── filthy_ice.json │ │ ├── frost_snow_grass.json │ │ ├── frost_tears_flower.json │ │ ├── geode_ore.json │ │ ├── ice_calendula.json │ │ ├── indigo_mushroom.json │ │ ├── indigo_mushroom_block.json │ │ ├── indigo_mushroom_crystal.json │ │ ├── indigo_mushroom_stem.json │ │ ├── large_cerulean_bud.json │ │ ├── large_moonstone_bud.json │ │ ├── lavender_crop.json │ │ ├── lavender_plant.json │ │ ├── light_aurorian_grass_block.json │ │ ├── luminous_aurorian_castle_rune_stone.json │ │ ├── luminous_aurorian_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_castle_rune_stone_wall.json │ │ ├── luminous_aurorian_steel_castle_rune_stone.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ │ ├── luminous_cerulean_castle_rune_stone.json │ │ ├── luminous_cerulean_castle_rune_stone_slab.json │ │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── luminous_cerulean_castle_rune_stone_wall.json │ │ ├── luminous_crystalline_castle_rune_stone.json │ │ ├── luminous_crystalline_castle_rune_stone_slab.json │ │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── luminous_crystalline_castle_rune_stone_wall.json │ │ ├── luminous_moon_castle_rune_stone.json │ │ ├── luminous_moon_castle_rune_stone_slab.json │ │ ├── luminous_moon_castle_rune_stone_stairs.json │ │ ├── luminous_moon_castle_rune_stone_wall.json │ │ ├── medium_cerulean_bud.json │ │ ├── medium_moonstone_bud.json │ │ ├── moon_castle_rune_stone.json │ │ ├── moon_castle_rune_stone_slab.json │ │ ├── moon_castle_rune_stone_stairs.json │ │ ├── moon_castle_rune_stone_wall.json │ │ ├── moon_frost_flower.json │ │ ├── moon_gem.json │ │ ├── moon_glass.json │ │ ├── moon_glass_pane.json │ │ ├── moon_sand.json │ │ ├── moon_sand_river.json │ │ ├── moon_temple_bars.json │ │ ├── moon_temple_brick_slab.json │ │ ├── moon_temple_brick_stairs.json │ │ ├── moon_temple_brick_wall.json │ │ ├── moon_temple_bricks.json │ │ ├── moon_temple_cell_gate.json │ │ ├── moon_temple_cell_gate_keyhole.json │ │ ├── moon_temple_gate.json │ │ ├── moon_temple_gate_keyhole.json │ │ ├── moon_temple_lamp.json │ │ ├── moon_temple_pillar.json │ │ ├── moon_torch.json │ │ ├── moon_wall_torch.json │ │ ├── moonlight_forge.json │ │ ├── moonstone_block.json │ │ ├── moonstone_cluster.json │ │ ├── moonstone_ore.json │ │ ├── mysterium_wool.json │ │ ├── mysterium_wool_bed.json │ │ ├── mystical_barrier.json │ │ ├── nebula_blossom_cluster.json │ │ ├── petunia_plant.json │ │ ├── potted_aurorian_grass.json │ │ ├── potted_aurorian_grass_light.json │ │ ├── potted_cursed_frost_tree_sapling.json │ │ ├── potted_curtain_tree_sapling.json │ │ ├── potted_equinox_flower.json │ │ ├── potted_lavender_plant.json │ │ ├── potted_moon_frost_flower.json │ │ ├── potted_nebula_blossom_cluster.json │ │ ├── potted_petunia_plant.json │ │ ├── potted_silent_tree_sapling.json │ │ ├── potted_void_candle_flower.json │ │ ├── potted_wick_grass.json │ │ ├── red_aurorian_grass_block.json │ │ ├── relic_table.json │ │ ├── rune_crystal.json │ │ ├── rune_stone.json │ │ ├── rune_stone_bars.json │ │ ├── rune_stone_gate.json │ │ ├── rune_stone_gate_keyhole.json │ │ ├── rune_stone_lamp.json │ │ ├── rune_stone_loot_gate.json │ │ ├── rune_stone_loot_gate_keyhole.json │ │ ├── rune_stone_pillar.json │ │ ├── rune_stone_slab.json │ │ ├── rune_stone_stairs.json │ │ ├── rune_stone_wall.json │ │ ├── silent_campfire.json │ │ ├── silent_tree_leaves.json │ │ ├── silent_tree_log.json │ │ ├── silent_tree_planks.json │ │ ├── silent_tree_sapling.json │ │ ├── silent_tree_wood.json │ │ ├── silent_wood_button.json │ │ ├── silent_wood_chest.json │ │ ├── silent_wood_door.json │ │ ├── silent_wood_fence.json │ │ ├── silent_wood_fence_gate.json │ │ ├── silent_wood_hanging_sign.json │ │ ├── silent_wood_ladder.json │ │ ├── silent_wood_pressure_plate.json │ │ ├── silent_wood_sign.json │ │ ├── silent_wood_slab.json │ │ ├── silent_wood_stairs.json │ │ ├── silent_wood_torch.json │ │ ├── silent_wood_trapdoor.json │ │ ├── silent_wood_wall_hanging_sign.json │ │ ├── silent_wood_wall_sign.json │ │ ├── silent_wood_wall_torch.json │ │ ├── silk_berry_crop.json │ │ ├── small_cerulean_bud.json │ │ ├── small_moonstone_bud.json │ │ ├── smooth_aurorian_peridotite.json │ │ ├── smooth_aurorian_peridotite_slab.json │ │ ├── smooth_aurorian_peridotite_stairs.json │ │ ├── smooth_aurorian_peridotite_wall.json │ │ ├── smooth_dark_stone_brick_slab.json │ │ ├── smooth_dark_stone_brick_stairs.json │ │ ├── smooth_dark_stone_brick_wall.json │ │ ├── smooth_dark_stone_bricks.json │ │ ├── smooth_moon_temple_brick_slab.json │ │ ├── smooth_moon_temple_brick_stairs.json │ │ ├── smooth_moon_temple_brick_wall.json │ │ ├── smooth_moon_temple_bricks.json │ │ ├── smooth_rune_stone.json │ │ ├── smooth_rune_stone_slab.json │ │ ├── smooth_rune_stone_stairs.json │ │ ├── smooth_rune_stone_wall.json │ │ ├── snow_aurorian_grass_block.json │ │ ├── tall_aurorian_grass.json │ │ ├── tall_aurorian_grass_light.json │ │ ├── tall_aurorian_water_grass.json │ │ ├── tall_lavender_plant.json │ │ ├── tall_wick_grass.json │ │ ├── transparent_rune_stone.json │ │ ├── transparent_rune_stone_slab.json │ │ ├── transparent_rune_stone_stairs.json │ │ ├── transparent_rune_stone_wall.json │ │ ├── umbra_castle_rune_stone.json │ │ ├── umbra_castle_rune_stone_slab.json │ │ ├── umbra_castle_rune_stone_stairs.json │ │ ├── umbra_castle_rune_stone_wall.json │ │ ├── umbra_stone.json │ │ ├── umbra_stone_cracked.json │ │ ├── umbra_stone_cracked_slab.json │ │ ├── umbra_stone_cracked_stairs.json │ │ ├── umbra_stone_cracked_wall.json │ │ ├── umbra_stone_roof_slab.json │ │ ├── umbra_stone_roof_stairs.json │ │ ├── umbra_stone_roof_tiles.json │ │ ├── umbra_stone_roof_wall.json │ │ ├── umbra_stone_slab.json │ │ ├── umbra_stone_stairs.json │ │ ├── umbra_stone_wall.json │ │ ├── urn.json │ │ ├── vertical_aurorian_andesite_slab.json │ │ ├── vertical_aurorian_andesite_stairs.json │ │ ├── vertical_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_cobblestone_slab.json │ │ ├── vertical_aurorian_cobblestone_stairs.json │ │ ├── vertical_aurorian_diorite_slab.json │ │ ├── vertical_aurorian_diorite_stairs.json │ │ ├── vertical_aurorian_granite_slab.json │ │ ├── vertical_aurorian_granite_stairs.json │ │ ├── vertical_aurorian_peridotite_slab.json │ │ ├── vertical_aurorian_peridotite_stairs.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_aurorian_stone_brick_slab.json │ │ ├── vertical_aurorian_stone_brick_stairs.json │ │ ├── vertical_aurorian_stone_slab.json │ │ ├── vertical_aurorian_stone_stairs.json │ │ ├── vertical_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_chiseled_dark_stone_brick_slab.json │ │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ │ ├── vertical_chiseled_moon_temple_brick_slab.json │ │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ │ ├── vertical_chiseled_rune_stone_slab.json │ │ ├── vertical_chiseled_rune_stone_stairs.json │ │ ├── vertical_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_cursed_frost_wood_slab.json │ │ ├── vertical_cursed_frost_wood_stairs.json │ │ ├── vertical_curtain_wood_slab.json │ │ ├── vertical_curtain_wood_stairs.json │ │ ├── vertical_dark_stone_brick_slab.json │ │ ├── vertical_dark_stone_brick_stairs.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_castle_rune_stone_slab.json │ │ ├── vertical_moon_castle_rune_stone_stairs.json │ │ ├── vertical_moon_temple_brick_slab.json │ │ ├── vertical_moon_temple_brick_stairs.json │ │ ├── vertical_rune_stone_slab.json │ │ ├── vertical_rune_stone_stairs.json │ │ ├── vertical_silent_wood_slab.json │ │ ├── vertical_silent_wood_stairs.json │ │ ├── vertical_smooth_aurorian_peridotite_slab.json │ │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ │ ├── vertical_smooth_dark_stone_brick_slab.json │ │ ├── vertical_smooth_dark_stone_brick_stairs.json │ │ ├── vertical_smooth_moon_temple_brick_slab.json │ │ ├── vertical_smooth_moon_temple_brick_stairs.json │ │ ├── vertical_smooth_rune_stone_slab.json │ │ ├── vertical_smooth_rune_stone_stairs.json │ │ ├── vertical_transparent_rune_stone_slab.json │ │ ├── vertical_transparent_rune_stone_stairs.json │ │ ├── vertical_umbra_castle_rune_stone_slab.json │ │ ├── vertical_umbra_castle_rune_stone_stairs.json │ │ ├── vertical_umbra_stone_cracked_slab.json │ │ ├── vertical_umbra_stone_cracked_stairs.json │ │ ├── vertical_umbra_stone_roof_slab.json │ │ ├── vertical_umbra_stone_roof_stairs.json │ │ ├── vertical_umbra_stone_slab.json │ │ ├── vertical_umbra_stone_stairs.json │ │ ├── vertical_weeping_willow_slab.json │ │ ├── vertical_weeping_willow_stairs.json │ │ ├── void_candle_flower.json │ │ ├── void_stone.json │ │ ├── weeping_willow_button.json │ │ ├── weeping_willow_door.json │ │ ├── weeping_willow_fence.json │ │ ├── weeping_willow_fence_gate.json │ │ ├── weeping_willow_log.json │ │ ├── weeping_willow_planks.json │ │ ├── weeping_willow_pressure_plate.json │ │ ├── weeping_willow_slab.json │ │ ├── weeping_willow_stairs.json │ │ ├── weeping_willow_trapdoor.json │ │ ├── weeping_willow_wood.json │ │ ├── weeping_willow_wood_hanging_sign.json │ │ ├── weeping_willow_wood_sign.json │ │ ├── weeping_willow_wood_wall_hanging_sign.json │ │ ├── weeping_willow_wood_wall_sign.json │ │ ├── wick_grass.json │ │ └── winter_root.json │ └── entities │ │ ├── aurorian_cow.json │ │ ├── aurorian_pig.json │ │ ├── aurorian_pixie.json │ │ ├── aurorian_rabbit.json │ │ ├── aurorian_sheep.json │ │ ├── aurorian_slime.json │ │ ├── aurorian_villager.json │ │ ├── aurorian_winged_fish.json │ │ ├── blue_tail_wolf.json │ │ ├── bread_beast.json │ │ ├── cave_dweller.json │ │ ├── crystalline_sprite.json │ │ ├── disturbed_hollow.json │ │ ├── flower_leech.json │ │ ├── forgotten_magic_book.json │ │ ├── giant_crystal_spider.json │ │ ├── hypha_walking_mushroom.json │ │ ├── icefield_deer.json │ │ ├── moon_acolyte.json │ │ ├── moon_fish.json │ │ ├── moon_queen.json │ │ ├── moonlight_knight.json │ │ ├── rock_hammer.json │ │ ├── rune_spider.json │ │ ├── runestone_keeper.json │ │ ├── snow_tundra_giant_crab.json │ │ ├── spider_mother.json │ │ ├── spiderling.json │ │ ├── spiderling_crystal_shell.json │ │ ├── spiderling_wall_climber.json │ │ ├── spirit.json │ │ ├── tong_scorpion.json │ │ └── undead_knight.json │ ├── recipes │ ├── alchemy_table │ │ ├── alchemy_aurorian_specialty_drink.json │ │ └── alchemy_moonlit_blueberry_specialty_drink.json │ ├── aurorian_andesite_slab.json │ ├── aurorian_andesite_stairs.json │ ├── aurorian_andesite_wall.json │ ├── aurorian_bacon.json │ ├── aurorian_castle_rune_stone_slab.json │ ├── aurorian_castle_rune_stone_stairs.json │ ├── aurorian_castle_rune_stone_wall.json │ ├── aurorian_cobblestone.json │ ├── aurorian_cobblestone_slab.json │ ├── aurorian_cobblestone_stairs.json │ ├── aurorian_cobblestone_wall.json │ ├── aurorian_crafting_table.json │ ├── aurorian_diorite_slab.json │ ├── aurorian_diorite_stairs.json │ ├── aurorian_diorite_wall.json │ ├── aurorian_furnace.json │ ├── aurorian_furnace_chimney.json │ ├── aurorian_glass.json │ ├── aurorian_glass_pane.json │ ├── aurorian_granite_slab.json │ ├── aurorian_granite_stairs.json │ ├── aurorian_granite_wall.json │ ├── aurorian_peridotite_slab.json │ ├── aurorian_peridotite_stairs.json │ ├── aurorian_peridotite_wall.json │ ├── aurorian_portal_frame_bricks.json │ ├── aurorian_slate_brick.json │ ├── aurorian_slime_boots.json │ ├── aurorian_steel_axe.json │ ├── aurorian_steel_boots.json │ ├── aurorian_steel_castle_rune_stone_slab.json │ ├── aurorian_steel_castle_rune_stone_stairs.json │ ├── aurorian_steel_castle_rune_stone_wall.json │ ├── aurorian_steel_chestplate.json │ ├── aurorian_steel_helmet.json │ ├── aurorian_steel_hoe.json │ ├── aurorian_steel_leggings.json │ ├── aurorian_steel_pickaxe.json │ ├── aurorian_steel_shovel.json │ ├── aurorian_steel_sword.json │ ├── aurorian_stone.json │ ├── aurorian_stone_axe.json │ ├── aurorian_stone_brick_slab.json │ ├── aurorian_stone_brick_stairs.json │ ├── aurorian_stone_brick_wall.json │ ├── aurorian_stone_hoe.json │ ├── aurorian_stone_pickaxe.json │ ├── aurorian_stone_shovel.json │ ├── aurorian_stone_sickle.json │ ├── aurorian_stone_slab.json │ ├── aurorian_stone_stairs.json │ ├── aurorian_stone_sword.json │ ├── aurorian_stone_wall.json │ ├── cerulean_arrow.json │ ├── cerulean_boots.json │ ├── cerulean_castle_rune_stone_slab.json │ ├── cerulean_castle_rune_stone_stairs.json │ ├── cerulean_castle_rune_stone_wall.json │ ├── cerulean_chestplate.json │ ├── cerulean_helmet.json │ ├── cerulean_leggings.json │ ├── cerulean_shield.json │ ├── chiseled_dark_stone_brick_slab.json │ ├── chiseled_dark_stone_brick_stairs.json │ ├── chiseled_dark_stone_brick_wall.json │ ├── chiseled_moon_temple_brick_slab.json │ ├── chiseled_moon_temple_brick_stairs.json │ ├── chiseled_moon_temple_brick_wall.json │ ├── chiseled_rune_stone_slab.json │ ├── chiseled_rune_stone_stairs.json │ ├── chiseled_rune_stone_wall.json │ ├── cooked_aurorian_beef_campfire_cooking.json │ ├── cooked_aurorian_beef_smelting.json │ ├── cooked_aurorian_beef_smoking.json │ ├── cooked_aurorian_mutton_campfire_cooking.json │ ├── cooked_aurorian_mutton_smelting.json │ ├── cooked_aurorian_mutton_smoking.json │ ├── cooked_aurorian_pork_campfire_cooking.json │ ├── cooked_aurorian_pork_smelting.json │ ├── cooked_aurorian_pork_smoking.json │ ├── cooked_aurorian_rabbit_campfire_cooking.json │ ├── cooked_aurorian_rabbit_smelting.json │ ├── cooked_aurorian_rabbit_smoking.json │ ├── cooked_aurorian_winged_fish_campfire_cooking.json │ ├── cooked_aurorian_winged_fish_smelting.json │ ├── cooked_aurorian_winged_fish_smoking.json │ ├── cooked_moon_fish_campfire_cooking.json │ ├── cooked_moon_fish_smelting.json │ ├── cooked_moon_fish_smoking.json │ ├── crystal_arrow.json │ ├── crystalline_castle_rune_stone_slab.json │ ├── crystalline_castle_rune_stone_stairs.json │ ├── crystalline_castle_rune_stone_wall.json │ ├── cursed_frost_tree_planks.json │ ├── cursed_frost_tree_wood.json │ ├── cursed_frost_wood_button.json │ ├── cursed_frost_wood_door.json │ ├── cursed_frost_wood_fence.json │ ├── cursed_frost_wood_fence_gate.json │ ├── cursed_frost_wood_hanging_sign.json │ ├── cursed_frost_wood_pressure_plate.json │ ├── cursed_frost_wood_slab.json │ ├── cursed_frost_wood_stairs.json │ ├── cursed_frost_wood_trapdoor.json │ ├── curtain_tree_planks.json │ ├── curtain_tree_wood.json │ ├── curtain_wood_button.json │ ├── curtain_wood_door.json │ ├── curtain_wood_fence.json │ ├── curtain_wood_fence_gate.json │ ├── curtain_wood_hanging_sign.json │ ├── curtain_wood_pressure_plate.json │ ├── curtain_wood_slab.json │ ├── curtain_wood_stairs.json │ ├── curtain_wood_trapdoor.json │ ├── cut_moon_sandstone.json │ ├── dark_stone_bars.json │ ├── dark_stone_brick_slab.json │ ├── dark_stone_brick_stairs.json │ ├── dark_stone_brick_wall.json │ ├── dark_stone_glass_pane.json │ ├── dark_stone_key.json │ ├── dungeon_locator.json │ ├── golden_silent_wood_fruit.json │ ├── kebab_with_mushroom.json │ ├── lavender_bread.json │ ├── lavender_salad.json │ ├── lavender_seedy_tea.json │ ├── lavender_tea.json │ ├── lock_picks.json │ ├── luminous_aurorian_castle_rune_stone_slab.json │ ├── luminous_aurorian_castle_rune_stone_stairs.json │ ├── luminous_aurorian_castle_rune_stone_wall.json │ ├── luminous_aurorian_steel_castle_rune_stone_slab.json │ ├── luminous_aurorian_steel_castle_rune_stone_stairs.json │ ├── luminous_aurorian_steel_castle_rune_stone_wall.json │ ├── luminous_cerulean_castle_rune_stone_slab.json │ ├── luminous_cerulean_castle_rune_stone_stairs.json │ ├── luminous_cerulean_castle_rune_stone_wall.json │ ├── luminous_crystalline_castle_rune_stone_slab.json │ ├── luminous_crystalline_castle_rune_stone_stairs.json │ ├── luminous_crystalline_castle_rune_stone_wall.json │ ├── luminous_moon_castle_rune_stone_slab.json │ ├── luminous_moon_castle_rune_stone_stairs.json │ ├── luminous_moon_castle_rune_stone_wall.json │ ├── moon_castle_rune_stone_slab.json │ ├── moon_castle_rune_stone_stairs.json │ ├── moon_castle_rune_stone_wall.json │ ├── moon_glass.json │ ├── moon_glass_pane.json │ ├── moon_shuriken.json │ ├── moon_temple_bars.json │ ├── moon_temple_brick_slab.json │ ├── moon_temple_brick_stairs.json │ ├── moon_temple_brick_wall.json │ ├── moon_temple_cell_key.json │ ├── moon_temple_key.json │ ├── moon_torch.json │ ├── moonlight_forge.json │ ├── moonlight_forge │ │ ├── forge_aurorian_steel_pickaxe_to_queens_chipper.json │ │ ├── forge_moonstone_axe_to_aurorianite_axe.json │ │ ├── forge_moonstone_pickaxe_to_aurorianite_pickaxe.json │ │ ├── forge_moonstone_pickaxe_to_crystalline_pickaxe.json │ │ ├── forge_moonstone_pickaxe_to_umbra_pickaxe.json │ │ ├── forge_moonstone_shield_to_crystalline_shield.json │ │ ├── forge_moonstone_shield_to_moon_shield.json │ │ ├── forge_moonstone_shield_to_umbra_shield.json │ │ ├── forge_moonstone_sword_to_aurorianite_sword.json │ │ ├── forge_moonstone_sword_to_crystalline_sword.json │ │ ├── forge_moonstone_sword_to_umbra_sword.json │ │ └── forge_silent_wood_bow_to_keepers_bow.json │ ├── moonstone_axe.json │ ├── moonstone_hoe.json │ ├── moonstone_pickaxe.json │ ├── moonstone_shield.json │ ├── moonstone_shovel.json │ ├── moonstone_sickle.json │ ├── moonstone_sword.json │ ├── mysterium_wool_bed.json │ ├── mysterium_wool_boots.json │ ├── mysterium_wool_chestplate.json │ ├── mysterium_wool_helmet.json │ ├── mysterium_wool_leggings.json │ ├── petunia_tea.json │ ├── roasted_aurorian_winter_root_campfire_cooking.json │ ├── roasted_aurorian_winter_root_smelting.json │ ├── roasted_aurorian_winter_root_smoking.json │ ├── rune_stone_bars.json │ ├── rune_stone_slab.json │ ├── rune_stone_stairs.json │ ├── rune_stone_wall.json │ ├── sashimi.json │ ├── scrapper │ │ ├── scrap_absorption_orb_to_umbra_scrap.json │ │ ├── scrap_aurorian_steel_axe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_boots_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_chestplate_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_helmet_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_hoe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_leggings_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_pickaxe_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_shovel_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorian_steel_sword_to_aurorian_steel_nugget.json │ │ ├── scrap_aurorianite_axe_to_umbra_scrap.json │ │ ├── scrap_aurorianite_pickaxe_to_umbra_scrap.json │ │ ├── scrap_aurorianite_sword_to_umbra_scrap.json │ │ ├── scrap_cerulean_boots_to_cerulean_nugget.json │ │ ├── scrap_cerulean_chestplate_to_cerulean_nugget.json │ │ ├── scrap_cerulean_helmet_to_cerulean_nugget.json │ │ ├── scrap_cerulean_leggings_to_cerulean_nugget.json │ │ ├── scrap_cerulean_shield_to_cerulean_nugget.json │ │ ├── scrap_crystalline_pickaxe_to_umbra_scrap.json │ │ ├── scrap_crystalline_shield_to_umbra_scrap.json │ │ ├── scrap_crystalline_sword_to_umbra_scrap.json │ │ ├── scrap_diamond_axe_to_diamond.json │ │ ├── scrap_diamond_boots_to_diamond.json │ │ ├── scrap_diamond_chestplate_to_diamond.json │ │ ├── scrap_diamond_helmet_to_diamond.json │ │ ├── scrap_diamond_hoe_to_diamond.json │ │ ├── scrap_diamond_leggings_to_diamond.json │ │ ├── scrap_diamond_pickaxe_to_diamond.json │ │ ├── scrap_diamond_shovel_to_diamond.json │ │ ├── scrap_diamond_sword_to_diamond.json │ │ ├── scrap_golden_axe_to_gold_nugget.json │ │ ├── scrap_golden_boots_to_gold_nugget.json │ │ ├── scrap_golden_chestplate_to_gold_nugget.json │ │ ├── scrap_golden_helmet_to_gold_nugget.json │ │ ├── scrap_golden_hoe_to_gold_nugget.json │ │ ├── scrap_golden_leggings_to_gold_nugget.json │ │ ├── scrap_golden_pickaxe_to_gold_nugget.json │ │ ├── scrap_golden_shovel_to_gold_nugget.json │ │ ├── scrap_golden_sword_to_gold_nugget.json │ │ ├── scrap_iron_axe_to_iron_nugget.json │ │ ├── scrap_iron_boots_to_iron_nugget.json │ │ ├── scrap_iron_chestplate_to_iron_nugget.json │ │ ├── scrap_iron_helmet_to_iron_nugget.json │ │ ├── scrap_iron_hoe_to_iron_nugget.json │ │ ├── scrap_iron_leggings_to_iron_nugget.json │ │ ├── scrap_iron_pickaxe_to_iron_nugget.json │ │ ├── scrap_iron_shovel_to_iron_nugget.json │ │ ├── scrap_iron_sword_to_iron_nugget.json │ │ ├── scrap_living_divining_rod_to_umbra_scrap.json │ │ ├── scrap_moonstone_axe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_hoe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_pickaxe_to_moonstone_nugget.json │ │ ├── scrap_moonstone_shield_to_moonstone_nugget.json │ │ ├── scrap_moonstone_shovel_to_moonstone_nugget.json │ │ ├── scrap_moonstone_sword_to_moonstone_nugget.json │ │ ├── scrap_spiked_chestplate_to_umbra_scrap.json │ │ ├── scrap_umbra_pickaxe_to_umbra_scrap.json │ │ ├── scrap_umbra_shield_to_umbra_scrap.json │ │ └── scrap_umbra_sword_to_umbra_scrap.json │ ├── silent_tree_planks.json │ ├── silent_tree_wood.json │ ├── silent_wood_axe.json │ ├── silent_wood_bow.json │ ├── silent_wood_button.json │ ├── silent_wood_chest.json │ ├── silent_wood_door.json │ ├── silent_wood_fence.json │ ├── silent_wood_fence_gate.json │ ├── silent_wood_hanging_sign.json │ ├── silent_wood_hoe.json │ ├── silent_wood_ladder.json │ ├── silent_wood_pickaxe.json │ ├── silent_wood_pressure_plate.json │ ├── silent_wood_shovel.json │ ├── silent_wood_sickle.json │ ├── silent_wood_slab.json │ ├── silent_wood_stairs.json │ ├── silent_wood_stick.json │ ├── silent_wood_sword.json │ ├── silent_wood_torch.json │ ├── silent_wood_trapdoor.json │ ├── silk_berry_jam.json │ ├── silk_berry_jam_sandwich.json │ ├── silk_berry_tea.json │ ├── silk_shroom_stew.json │ ├── smooth_aurorian_peridotite.json │ ├── smooth_aurorian_peridotite_slab.json │ ├── smooth_aurorian_peridotite_stairs.json │ ├── smooth_aurorian_peridotite_wall.json │ ├── smooth_dark_stone_brick_slab.json │ ├── smooth_dark_stone_brick_stairs.json │ ├── smooth_dark_stone_brick_wall.json │ ├── smooth_dark_stone_bricks.json │ ├── smooth_moon_temple_brick_slab.json │ ├── smooth_moon_temple_brick_stairs.json │ ├── smooth_moon_temple_brick_wall.json │ ├── smooth_moon_temple_bricks.json │ ├── smooth_rune_stone.json │ ├── smooth_rune_stone_slab.json │ ├── smooth_rune_stone_stairs.json │ ├── smooth_rune_stone_wall.json │ ├── spectral_boots.json │ ├── spectral_chestplate.json │ ├── spectral_helmet.json │ ├── spectral_leggings.json │ ├── sticky_spiker.json │ ├── string_from_plant_fiber.json │ ├── tea_cup.json │ ├── transparent_rune_stone_slab.json │ ├── transparent_rune_stone_stairs.json │ ├── transparent_rune_stone_wall.json │ ├── umbra_castle_rune_stone_slab.json │ ├── umbra_castle_rune_stone_stairs.json │ ├── umbra_castle_rune_stone_wall.json │ ├── umbra_stone_cracked_slab.json │ ├── umbra_stone_cracked_stairs.json │ ├── umbra_stone_cracked_wall.json │ ├── umbra_stone_roof_slab.json │ ├── umbra_stone_roof_stairs.json │ ├── umbra_stone_roof_wall.json │ ├── umbra_stone_slab.json │ ├── umbra_stone_stairs.json │ ├── umbra_stone_wall.json │ ├── unstable_crystal.json │ ├── vertical_aurorian_andesite_slab.json │ ├── vertical_aurorian_andesite_stairs.json │ ├── vertical_aurorian_castle_rune_stone_slab.json │ ├── vertical_aurorian_castle_rune_stone_stairs.json │ ├── vertical_aurorian_cobblestone_slab.json │ ├── vertical_aurorian_cobblestone_stairs.json │ ├── vertical_aurorian_diorite_slab.json │ ├── vertical_aurorian_diorite_stairs.json │ ├── vertical_aurorian_granite_slab.json │ ├── vertical_aurorian_granite_stairs.json │ ├── vertical_aurorian_peridotite_slab.json │ ├── vertical_aurorian_peridotite_stairs.json │ ├── vertical_aurorian_steel_castle_rune_stone_slab.json │ ├── vertical_aurorian_steel_castle_rune_stone_stairs.json │ ├── vertical_aurorian_stone_brick_slab.json │ ├── vertical_aurorian_stone_brick_stairs.json │ ├── vertical_aurorian_stone_slab.json │ ├── vertical_aurorian_stone_stairs.json │ ├── vertical_cerulean_castle_rune_stone_slab.json │ ├── vertical_cerulean_castle_rune_stone_stairs.json │ ├── vertical_chiseled_dark_stone_brick_slab.json │ ├── vertical_chiseled_dark_stone_brick_stairs.json │ ├── vertical_chiseled_moon_temple_brick_slab.json │ ├── vertical_chiseled_moon_temple_brick_stairs.json │ ├── vertical_chiseled_rune_stone_slab.json │ ├── vertical_chiseled_rune_stone_stairs.json │ ├── vertical_crystalline_castle_rune_stone_slab.json │ ├── vertical_crystalline_castle_rune_stone_stairs.json │ ├── vertical_cursed_frost_wood_slab.json │ ├── vertical_cursed_frost_wood_stairs.json │ ├── vertical_curtain_wood_slab.json │ ├── vertical_curtain_wood_stairs.json │ ├── vertical_dark_stone_brick_slab.json │ ├── vertical_dark_stone_brick_stairs.json │ ├── vertical_luminous_aurorian_castle_rune_stone_slab.json │ ├── vertical_luminous_aurorian_castle_rune_stone_stairs.json │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_slab.json │ ├── vertical_luminous_aurorian_steel_castle_rune_stone_stairs.json │ ├── vertical_luminous_cerulean_castle_rune_stone_slab.json │ ├── vertical_luminous_cerulean_castle_rune_stone_stairs.json │ ├── vertical_luminous_crystalline_castle_rune_stone_slab.json │ ├── vertical_luminous_crystalline_castle_rune_stone_stairs.json │ ├── vertical_luminous_moon_castle_rune_stone_slab.json │ ├── vertical_luminous_moon_castle_rune_stone_stairs.json │ ├── vertical_moon_castle_rune_stone_slab.json │ ├── vertical_moon_castle_rune_stone_stairs.json │ ├── vertical_moon_temple_brick_slab.json │ ├── vertical_moon_temple_brick_stairs.json │ ├── vertical_rune_stone_slab.json │ ├── vertical_rune_stone_stairs.json │ ├── vertical_silent_wood_slab.json │ ├── vertical_silent_wood_stairs.json │ ├── vertical_smooth_aurorian_peridotite_slab.json │ ├── vertical_smooth_aurorian_peridotite_stairs.json │ ├── vertical_smooth_dark_stone_brick_slab.json │ ├── vertical_smooth_dark_stone_brick_stairs.json │ ├── vertical_smooth_moon_temple_brick_slab.json │ ├── vertical_smooth_moon_temple_brick_stairs.json │ ├── vertical_smooth_rune_stone_slab.json │ ├── vertical_smooth_rune_stone_stairs.json │ ├── vertical_transparent_rune_stone_slab.json │ ├── vertical_transparent_rune_stone_stairs.json │ ├── vertical_umbra_castle_rune_stone_slab.json │ ├── vertical_umbra_castle_rune_stone_stairs.json │ ├── vertical_umbra_stone_cracked_slab.json │ ├── vertical_umbra_stone_cracked_stairs.json │ ├── vertical_umbra_stone_roof_slab.json │ ├── vertical_umbra_stone_roof_stairs.json │ ├── vertical_umbra_stone_slab.json │ ├── vertical_umbra_stone_stairs.json │ ├── vertical_weeping_willow_slab.json │ ├── vertical_weeping_willow_stairs.json │ ├── weeping_willow_button.json │ ├── weeping_willow_door.json │ ├── weeping_willow_fence.json │ ├── weeping_willow_fence_gate.json │ ├── weeping_willow_planks.json │ ├── weeping_willow_pressure_plate.json │ ├── weeping_willow_slab.json │ ├── weeping_willow_stairs.json │ ├── weeping_willow_trapdoor.json │ ├── weeping_willow_wood.json │ └── weeping_willow_wood_hanging_sign.json │ ├── tags │ ├── blocks │ │ ├── aurorian_carver_replaceables.json │ │ ├── aurorian_grass_block.json │ │ ├── aurorian_light_plant_may_place_on.json │ │ ├── aurorian_planks.json │ │ ├── aurorian_sand_block.json │ │ ├── aurotian_animal_unspawnable_on.json │ │ ├── can_hurt_sickle.json │ │ ├── cursed_frost_tree_logs.json │ │ ├── curtain_tree_logs.json │ │ ├── moon_temple_block.json │ │ ├── rune_stone_block.json │ │ ├── silent_tree_logs.json │ │ ├── vertical_slabs.json │ │ ├── vertical_stairs.json │ │ └── weeping_willow_logs.json │ ├── entity_types │ │ ├── alerted_by_blue_tail_wolf.json │ │ ├── aurorian_boss.json │ │ ├── spiderling.json │ │ └── wolf_non_tame_attack_target.json │ ├── items │ │ ├── aurorian_carver_replaceables.json │ │ ├── aurorian_grass_block.json │ │ ├── aurorian_planks.json │ │ ├── aurotian_animal_unspawnable_on.json │ │ ├── building_block.json │ │ ├── cooked_meat.json │ │ ├── cursed_frost_tree_logs.json │ │ ├── curtain_tree_logs.json │ │ ├── dungeon_key.json │ │ ├── has_custom_tooltips.json │ │ ├── is_epic.json │ │ ├── is_legendary.json │ │ ├── is_mythical.json │ │ ├── is_rare.json │ │ ├── rune_stone_block.json │ │ ├── runestone.json │ │ ├── silent_tree_logs.json │ │ ├── spectral_armor.json │ │ ├── throwable_weapons.json │ │ ├── vertical_slabs.json │ │ ├── vertical_stairs.json │ │ └── weeping_willow_logs.json │ └── worldgen │ │ ├── biome │ │ ├── has_ruins_altar.json │ │ └── is_aurorian_forest.json │ │ └── structure │ │ ├── darkstone_dungeon.json │ │ ├── moon_temple.json │ │ └── runestone_dungeon.json │ └── worldgen │ ├── biome │ ├── aurorian_beach.json │ ├── aurorian_forest.json │ ├── aurorian_forest_hill.json │ ├── aurorian_lake.json │ ├── aurorian_plains.json │ ├── aurorian_river.json │ ├── bright_moon_desert.json │ ├── equinox_flower_plains.json │ ├── filthy_ice_crystal_snowfield.json │ ├── lavender_plains.json │ ├── under_snowfield.json │ ├── underground.json │ ├── underwater.json │ └── weeping_willow_forest.json │ ├── configured_carver │ ├── ta_cave.json │ └── ta_cave_extra_underground.json │ ├── configured_feature │ ├── aurorian_forest_memory_loop.json │ ├── aurorian_forest_remains.json │ ├── aurorian_forest_ruined_portal.json │ ├── aurorian_forest_shattered_forest_pillar.json │ ├── aurorian_forest_shattered_pillar.json │ ├── aurorian_forest_shattered_wreath.json │ ├── aurorian_forest_spring.json │ ├── filthy_freeze_top_layer.json │ ├── filthy_water_lake.json │ ├── huge_indigo_mushroom.json │ ├── medium_aurorian_forest_ruins.json │ ├── ore_aurorian_andesite.json │ ├── ore_aurorian_coal.json │ ├── ore_aurorian_diorite.json │ ├── ore_aurorian_dirt.json │ ├── ore_aurorian_granite.json │ ├── ore_aurorian_peridotite.json │ ├── ore_cerulean.json │ ├── ore_copper_large.json │ ├── ore_copper_small.json │ ├── ore_diamond_buried.json │ ├── ore_diamond_large.json │ ├── ore_diamond_small.json │ ├── ore_emerald.json │ ├── ore_geode.json │ ├── ore_gold.json │ ├── ore_gold_buried.json │ ├── ore_iron.json │ ├── ore_iron_small.json │ ├── ore_lapis.json │ ├── ore_lapis_buried.json │ ├── ore_moon_sand_river.json │ ├── ore_moonstone.json │ ├── ore_redstone.json │ ├── patch_aurorian_flower_forest.json │ ├── patch_aurorian_flower_plains.json │ ├── patch_aurorian_grass.json │ ├── patch_aurorian_grass_light.json │ ├── patch_equinox_flower.json │ ├── patch_flower_snowfield.json │ ├── patch_lavender.json │ ├── random_crystal_cluster.json │ ├── random_fallen_silent_log.json │ ├── random_riverside_plant.json │ ├── random_urn.json │ ├── random_water_surface_plant.json │ ├── random_weak_grass.json │ ├── riverside_moon_sand.json │ ├── silent_tree.json │ ├── small_aurorian_forest_ruins.json │ ├── small_ruins_1.json │ ├── small_ruins_10.json │ ├── small_ruins_11.json │ ├── small_ruins_12.json │ ├── small_ruins_13.json │ ├── small_ruins_14.json │ ├── small_ruins_15.json │ ├── small_ruins_16.json │ ├── small_ruins_17.json │ ├── small_ruins_18.json │ ├── small_ruins_19.json │ ├── small_ruins_2.json │ ├── small_ruins_20.json │ ├── small_ruins_21.json │ ├── small_ruins_22.json │ ├── small_ruins_3.json │ ├── small_ruins_4.json │ ├── small_ruins_5.json │ ├── small_ruins_6.json │ ├── small_ruins_7.json │ ├── small_ruins_8.json │ ├── small_ruins_9.json │ ├── trees_aurorian_forest.json │ ├── trees_weeping_willow_forest.json │ └── weeping_willow_tree.json │ ├── noise_settings │ └── the_aurorian_noise.json │ ├── placed_feature │ ├── aurorian_forest_memory_loop.json │ ├── aurorian_forest_remains.json │ ├── aurorian_forest_ruined_portal.json │ ├── aurorian_forest_shattered_forest_pillar.json │ ├── aurorian_forest_shattered_pillar.json │ ├── aurorian_forest_shattered_wreath.json │ ├── aurorian_forest_spring.json │ ├── filthy_freeze_top_layer.json │ ├── filthy_water_lake.json │ ├── medium_aurorian_forest_ruins.json │ ├── ore_aurorian_andesite.json │ ├── ore_aurorian_coal.json │ ├── ore_aurorian_diorite.json │ ├── ore_aurorian_dirt.json │ ├── ore_aurorian_granite.json │ ├── ore_aurorian_peridotite.json │ ├── ore_cerulean.json │ ├── ore_copper.json │ ├── ore_copper_large.json │ ├── ore_diamond.json │ ├── ore_diamond_buried.json │ ├── ore_diamond_large.json │ ├── ore_emerald.json │ ├── ore_geode.json │ ├── ore_gold.json │ ├── ore_gold_extra.json │ ├── ore_gold_lower.json │ ├── ore_iron_middle.json │ ├── ore_iron_small.json │ ├── ore_iron_upper.json │ ├── ore_lapis.json │ ├── ore_lapis_buried.json │ ├── ore_moon_sand_river.json │ ├── ore_moonstone.json │ ├── ore_redstone.json │ ├── ore_redstone_lower.json │ ├── patch_aurorian_flower_forest.json │ ├── patch_aurorian_flower_plains.json │ ├── patch_aurorian_grass_forest.json │ ├── patch_aurorian_grass_light_forest.json │ ├── patch_aurorian_grass_plains.json │ ├── patch_equinox_flower.json │ ├── patch_flower_snowfield.json │ ├── patch_lavender.json │ ├── random_crystal_cluster.json │ ├── random_fallen_silent_log.json │ ├── random_riverside_plant.json │ ├── random_urns.json │ ├── random_water_surface_plant.json │ ├── random_weak_grass.json │ ├── riverside_moon_sand.json │ ├── silent_tree.json │ ├── small_aurorian_forest_ruins.json │ ├── small_ruins_1.json │ ├── small_ruins_10.json │ ├── small_ruins_11.json │ ├── small_ruins_12.json │ ├── small_ruins_13.json │ ├── small_ruins_14.json │ ├── small_ruins_15.json │ ├── small_ruins_16.json │ ├── small_ruins_17.json │ ├── small_ruins_18.json │ ├── small_ruins_19.json │ ├── small_ruins_2.json │ ├── small_ruins_20.json │ ├── small_ruins_21.json │ ├── small_ruins_22.json │ ├── small_ruins_3.json │ ├── small_ruins_4.json │ ├── small_ruins_5.json │ ├── small_ruins_6.json │ ├── small_ruins_7.json │ ├── small_ruins_8.json │ ├── small_ruins_9.json │ ├── trees_aurorian_forest.json │ ├── trees_weeping_willow_forest.json │ └── weeping_willow_tree.json │ ├── structure │ └── ruins_altar.json │ └── structure_set │ └── ruins_altar.json └── main ├── java └── cn │ └── teampancake │ └── theaurorian │ ├── AurorianMod.java │ ├── api │ ├── IRune.java │ ├── IShield.java │ └── ISpecialty.java │ ├── client │ ├── animation │ │ ├── AurorianPigAnimation.java │ │ ├── AurorianPixieAnimation.java │ │ └── MoonFishAnimation.java │ ├── gui │ │ ├── AlchemyTableScreen.java │ │ ├── MoonlightForgeScreen.java │ │ ├── RuneGameScreen.java │ │ ├── ScrapperScreen.java │ │ ├── hud │ │ │ ├── FrostbiteOutlineRender.java │ │ │ ├── NightBarRender.java │ │ │ ├── ProgressBarRenderer.java │ │ │ └── ShieldHudRenderer.java │ │ └── package-info.java │ ├── inventory │ │ ├── AbstractSimpleMenu.java │ │ ├── AlchemyTableMenu.java │ │ ├── MoonlightForgeMenu.java │ │ ├── ScrapperMenu.java │ │ └── TAResultSlot.java │ ├── model │ │ └── entity │ │ │ ├── AbstractAurorianAnimalBabyModel.java │ │ │ ├── AurorianCowBabyModel.java │ │ │ ├── AurorianCowModel.java │ │ │ ├── AurorianPigBabyModel.java │ │ │ ├── AurorianPigModel.java │ │ │ ├── AurorianPixieModel.java │ │ │ ├── AurorianRabbitModel.java │ │ │ ├── AurorianSheepBabyModel.java │ │ │ ├── AurorianSheepModel.java │ │ │ ├── BreadBeastModel.java │ │ │ ├── CrystallineSpriteModel.java │ │ │ ├── FlowerLeechModel.java │ │ │ ├── ForgottenMagicBookModel.java │ │ │ ├── HyphaWalkingMushroomModel.java │ │ │ ├── IcefieldDeerModel.java │ │ │ ├── MoonFishModel.java │ │ │ ├── armor │ │ │ ├── AurorianSlimeBootsModel.java │ │ │ ├── AurorianSteelArmorModel.java │ │ │ ├── CeruleanArmorModel.java │ │ │ ├── CrystalRuneArmorModel.java │ │ │ ├── KnightArmorModel.java │ │ │ ├── MysteriumWoolArmorModel.java │ │ │ ├── SpectralArmorModel.java │ │ │ ├── SpikedChestplateModel.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ ├── particle │ │ ├── WickParticle.java │ │ └── package-info.java │ ├── renderer │ │ ├── block │ │ │ ├── MoonlightForgeRenderer.java │ │ │ ├── SilentCampfireRender.java │ │ │ ├── SilentWoodChestItemRenderer.java │ │ │ ├── SilentWoodChestRenderer.java │ │ │ └── package-info.java │ │ ├── entity │ │ │ ├── AurorianCowRenderer.java │ │ │ ├── AurorianPigRenderer.java │ │ │ ├── AurorianPixieRenderer.java │ │ │ ├── AurorianRabbitRenderer.java │ │ │ ├── AurorianSheepRenderer.java │ │ │ ├── AurorianSlimeRenderer.java │ │ │ ├── AurorianVillagerRenderer.java │ │ │ ├── BreadBeastRenderer.java │ │ │ ├── CrystallineSpriteRenderer.java │ │ │ ├── DeathWithoutRotationRenderer.java │ │ │ ├── FlowerLeechRenderer.java │ │ │ ├── ForgottenMagicBookRenderer.java │ │ │ ├── HyphaWalkingMushroomRenderer.java │ │ │ ├── IcefieldDeerRenderer.java │ │ │ ├── MoonFishRenderer.java │ │ │ ├── MoonQueenRenderer.java │ │ │ ├── RunestoneKeeperRenderer.java │ │ │ ├── SpiderMotherRenderer.java │ │ │ ├── abiotic │ │ │ │ ├── CeruleanArrowRenderer.java │ │ │ │ ├── CrystalArrowRenderer.java │ │ │ │ ├── CrystallineBeamRenderer.java │ │ │ │ ├── EyeOfDisturbedRenderer.java │ │ │ │ ├── LunaCircleRenderer.java │ │ │ │ ├── SitRenderer.java │ │ │ │ ├── ThrownAxeRenderer.java │ │ │ │ ├── ThrownShurikenRenderer.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── layers │ │ │ ├── TAModelLayers.java │ │ │ └── package-info.java │ │ └── level │ │ │ ├── TASkyRenderer.java │ │ │ ├── TASpecialEffects.java │ │ │ ├── TAWeatherRenderer.java │ │ │ └── package-info.java │ ├── rune_game │ │ └── dao │ │ │ ├── RuneGameBrand.java │ │ │ ├── RuneGameEliminate.java │ │ │ ├── RuneGameLayer.java │ │ │ ├── RuneGameMap.java │ │ │ └── RuneGameRectangle.java │ ├── text │ │ ├── FitWidthCharSink.java │ │ └── package-info.java │ └── widget │ │ └── RuneGameButton.java │ ├── common │ ├── blocks │ │ ├── AlchemyTable.java │ │ ├── AstrologyTable.java │ │ ├── AurorianCraftingTable.java │ │ ├── AurorianFarmTile.java │ │ ├── AurorianFurnace.java │ │ ├── AurorianFurnaceChimney.java │ │ ├── AurorianGrassBlock.java │ │ ├── AurorianPortal.java │ │ ├── AurorianWaterSurfacePlant.java │ │ ├── BaseEntityBlockWithState.java │ │ ├── BaseFluidType.java │ │ ├── BlueberryBush.java │ │ ├── DungeonStoneGate.java │ │ ├── DungeonStoneGateKeyhole.java │ │ ├── FilthyIceSpike.java │ │ ├── IRiversidePlant.java │ │ ├── IndigoMushroom.java │ │ ├── IndigoMushroomBlock.java │ │ ├── LargeFilthyIceSpike.java │ │ ├── MoonlightForge.java │ │ ├── MysteriumWoolBed.java │ │ ├── MysticalBarrier.java │ │ ├── RelicTable.java │ │ ├── Scrapper.java │ │ ├── SilentCampfireBlock.java │ │ ├── SilentWoodChest.java │ │ ├── TAClusterBlock.java │ │ ├── TACropBlock.java │ │ ├── TAFlowerBlock.java │ │ ├── TALightDoublePlantBlock.java │ │ ├── TALightPlantBlock.java │ │ ├── TASandBlock.java │ │ ├── TASnowfieldTallPlantBlock.java │ │ ├── TallWickGrass.java │ │ ├── UrnBlock.java │ │ ├── WickGrass.java │ │ ├── base │ │ │ ├── ButtonBlockWithBase.java │ │ │ ├── DoorBlockWithBase.java │ │ │ ├── FenceBlockWithBase.java │ │ │ ├── FenceGateBlockWithBase.java │ │ │ ├── IHasBaseBlock.java │ │ │ ├── ISimpleBlockItem.java │ │ │ ├── PressurePlateBlockWithBase.java │ │ │ ├── SlabBlockWithBase.java │ │ │ ├── StairBlockWithBase.java │ │ │ ├── TrapDoorBlockWithBase.java │ │ │ ├── VerticalSlabBlockWithBase.java │ │ │ ├── VerticalStairBlockWithBase.java │ │ │ ├── WallBlockWithBase.java │ │ │ └── package-info.java │ │ ├── entity │ │ │ ├── AlchemyTableBlockEntity.java │ │ │ ├── AurorianFurnaceBlockEntity.java │ │ │ ├── DungeonStoneGateBlockEntity.java │ │ │ ├── MoonlightForgeBlockEntity.java │ │ │ ├── ScrapperBlockEntity.java │ │ │ ├── SilentCampfireBlockEntity.java │ │ │ ├── SilentWoodChestBlockEntity.java │ │ │ ├── SilentWoodCraftingBlockEntity.java │ │ │ ├── SilentWoodCraftingContainer.java │ │ │ ├── SimpleContainerBlockEntity.java │ │ │ ├── TAHangingSignBlockEntity.java │ │ │ ├── TASignBlockEntity.java │ │ │ ├── TempBarrierBlockEntity.java │ │ │ ├── TrapHoleRestorerBlockEntity.java │ │ │ └── package-info.java │ │ ├── grower │ │ │ ├── CurtainTreeGrower.java │ │ │ └── SilentTreeGrower.java │ │ ├── modified │ │ │ ├── AxeStrippableBlock.java │ │ │ └── HoeTillableBlock.java │ │ ├── package-info.java │ │ ├── sign │ │ │ ├── TACeilingHangingSignBlock.java │ │ │ ├── TAStandingSignBlock.java │ │ │ ├── TAWallHangingSignBlock.java │ │ │ ├── TAWallSignBlock.java │ │ │ └── package-info.java │ │ ├── state │ │ │ ├── TABlockSetType.java │ │ │ ├── TAWoodType.java │ │ │ └── properties │ │ │ │ ├── AlchemyTablePart.java │ │ │ │ └── VerticalSlabShape.java │ │ └── technical │ │ │ ├── TempBarrier.java │ │ │ ├── TrapHoleRestorer.java │ │ │ └── package-info.java │ ├── capability │ │ ├── MiscCap.java │ │ ├── RuneCap.java │ │ └── ShieldCap.java │ ├── config │ │ └── AurorianConfig.java │ ├── data │ │ ├── datagen │ │ │ ├── RegistryDataGenerator.java │ │ │ ├── TADataGenerator.java │ │ │ ├── loot │ │ │ │ ├── TABlockLoot.java │ │ │ │ ├── TAEntityLoot.java │ │ │ │ ├── TAFishingLoot.java │ │ │ │ └── package-info.java │ │ │ ├── provider │ │ │ │ ├── TABlockStateProvider.java │ │ │ │ ├── TAItemModelProvider.java │ │ │ │ ├── TALanguageProvider.java │ │ │ │ ├── TALootTableProvider.java │ │ │ │ ├── TARecipeProvider.java │ │ │ │ ├── TASoundProvider.java │ │ │ │ └── tag │ │ │ │ │ ├── TABiomeTagsProvider.java │ │ │ │ │ ├── TABlockTagsProvider.java │ │ │ │ │ ├── TAEntityTagsProvider.java │ │ │ │ │ ├── TAFluidTagsProvider.java │ │ │ │ │ ├── TAItemTagsProvider.java │ │ │ │ │ ├── TAPaintingVariantTagsProvider.java │ │ │ │ │ ├── TAPoiTagsProvider.java │ │ │ │ │ ├── TAStructureTagsProvider.java │ │ │ │ │ └── package-info.java │ │ │ ├── recipes │ │ │ │ ├── AlchemyTableRecipeBuilder.java │ │ │ │ ├── MoonlightForgeRecipeBuilder.java │ │ │ │ ├── ScrapperRecipeBuilder.java │ │ │ │ └── package-info.java │ │ │ └── tags │ │ │ │ ├── TABiomeTags.java │ │ │ │ ├── TABlockTags.java │ │ │ │ ├── TAEntityTags.java │ │ │ │ ├── TAItemTags.java │ │ │ │ └── TAStructureTags.java │ │ ├── nbt │ │ │ └── MiscNBT.java │ │ └── pack │ │ │ ├── MaxShieldLoader.java │ │ │ └── RuneGameLoader.java │ ├── effect │ │ ├── ConfusionEffect.java │ │ ├── CorruptionEffect.java │ │ ├── ForbiddenCurseEffect.java │ │ ├── FrostbiteEffect.java │ │ ├── HolinessEffect.java │ │ ├── IncantationEffect.java │ │ ├── IncurableEffect.java │ │ ├── LacerationEffect.java │ │ ├── NatureEffect.java │ │ ├── TAMobEffect.java │ │ ├── TempShieldEffect.java │ │ ├── TremorEffect.java │ │ ├── WarmEffect.java │ │ └── package-info.java │ ├── enchantments │ │ ├── AmnesiaCurseEnchantment.java │ │ ├── AuroraEnchantment.java │ │ ├── ClearMindEnchantment.java │ │ ├── CobwebCrossingEnchantment.java │ │ ├── ExperienceOreEnchantment.java │ │ ├── FreezeAspectEnchantment.java │ │ ├── GuardianEnchantment.java │ │ ├── ImpaleEnchantment.java │ │ ├── LegendaryHeroEnchantment.java │ │ ├── LightningDamageEnchantment.java │ │ ├── LightningResistance.java │ │ ├── MoltenCoreEnchantment.java │ │ ├── MoonlightEnchantment.java │ │ ├── NightWalkerEnchantment.java │ │ ├── OverloadEnchantment.java │ │ ├── ReflectAuraEnchantment.java │ │ ├── RoundaboutThrowEnchantment.java │ │ ├── SavageEnchantment.java │ │ ├── SoulSlashEnchantment.java │ │ ├── SourceOfTerraEnchantment.java │ │ ├── SpringOfLifeEnchantment.java │ │ ├── SunderArmorSlashEnchantment.java │ │ ├── VirtualizationEnchantment.java │ │ ├── WindRunnerEnchantment.java │ │ └── package-info.java │ ├── entities │ │ ├── TASpawnRules.java │ │ ├── ai │ │ │ ├── control │ │ │ │ └── SpiritMoveControl.java │ │ │ └── goal │ │ │ │ ├── AurorianAnimalMeleeAttackGoal.java │ │ │ │ ├── AurorianAnimalPanicGoal.java │ │ │ │ ├── BlueTailWolfDoNothingGoal.java │ │ │ │ ├── GiantCrabDoNothingGoal.java │ │ │ │ ├── LookAtTargetGoal.java │ │ │ │ ├── MeleeNoAttackGoal.java │ │ │ │ ├── ModRangedAttackGoal.java │ │ │ │ ├── MoveToTargetGoal.java │ │ │ │ ├── SpiritChargeAttackGoal.java │ │ │ │ ├── SpiritRandomMoveGoal.java │ │ │ │ ├── ZombieLikeAttackGoal.java │ │ │ │ └── package-info.java │ │ ├── animal │ │ │ ├── AbstractAurorianFish.java │ │ │ ├── AurorianCow.java │ │ │ ├── AurorianPig.java │ │ │ ├── AurorianPixie.java │ │ │ ├── AurorianRabbit.java │ │ │ ├── AurorianSheep.java │ │ │ ├── AurorianWingedFish.java │ │ │ ├── BlueTailWolf.java │ │ │ ├── BreadBeast.java │ │ │ ├── IOverworldAurorianAnimal.java │ │ │ ├── IcefieldDeer.java │ │ │ ├── MoonFish.java │ │ │ └── package-info.java │ │ ├── boss │ │ │ ├── AbstractAurorianBoss.java │ │ │ ├── MoonQueen.java │ │ │ ├── MoonlightKnight.java │ │ │ ├── RunestoneKeeper.java │ │ │ ├── SpiderMother.java │ │ │ └── package-info.java │ │ ├── monster │ │ │ ├── AurorianSlime.java │ │ │ ├── CaveDweller.java │ │ │ ├── CrystallineSprite.java │ │ │ ├── DisturbedHollow.java │ │ │ ├── FlowerLeech.java │ │ │ ├── ForgottenMagicBook.java │ │ │ ├── GiantCrystalSpider.java │ │ │ ├── HyphaWalkingMushroom.java │ │ │ ├── IAffectedByNightmareMode.java │ │ │ ├── MoonAcolyte.java │ │ │ ├── MultiPhaseAttacker.java │ │ │ ├── RockHammer.java │ │ │ ├── RuneSpider.java │ │ │ ├── SnowTundraGiantCrab.java │ │ │ ├── Spiderling.java │ │ │ ├── SpiderlingCrystalShell.java │ │ │ ├── SpiderlingWallClimber.java │ │ │ ├── Spirit.java │ │ │ ├── TAMonster.java │ │ │ ├── TASpider.java │ │ │ ├── TongScorpion.java │ │ │ ├── UndeadKnight.java │ │ │ └── package-info.java │ │ ├── npc │ │ │ └── AurorianVillager.java │ │ ├── phase │ │ │ ├── AttackManager.java │ │ │ ├── AttackPhase.java │ │ │ ├── BlueTailWolfHowlPhase.java │ │ │ ├── BlueTailWolfMeleePhase.java │ │ │ ├── DisturbedHollowShootPhase.java │ │ │ ├── GiantCrystalSpiderFallPhase.java │ │ │ ├── MoonAcolyteMeleePhase.java │ │ │ ├── MoonlightKnightBeastMeleePhase.java │ │ │ ├── MoonlightKnightNormalMeleePhase.java │ │ │ ├── RockHammerMeleePhase.java │ │ │ ├── SnowTundraGiantCrabHidePhase.java │ │ │ ├── SnowTundraGiantCrabMeleePhase.java │ │ │ ├── SnowTundraGiantCrabStartHidePhase.java │ │ │ ├── SnowTundraGiantCrabStopHidePhase.java │ │ │ ├── SpiritMeleePhase.java │ │ │ ├── TongScorpionMeleePhase.java │ │ │ ├── UndeadKnightMeleePhase.java │ │ │ ├── keeper │ │ │ │ ├── BlazeMagicPhase.java │ │ │ │ ├── CrystallineMagicPhase.java │ │ │ │ ├── LightningMagicPhase.java │ │ │ │ ├── PhantomMagicPhase.java │ │ │ │ ├── SoulSiphonPhase.java │ │ │ │ ├── UndeadMagicPhase.java │ │ │ │ └── package-info.java │ │ │ ├── moonqueen │ │ │ │ ├── MoonQueenBlockPhase.java │ │ │ │ ├── MoonQueenMeleePhase.java │ │ │ │ ├── MoonQueenMoonBefallPhase.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── spidermother │ │ │ │ ├── SpiderMotherEidolonPhase.java │ │ │ │ ├── SpiderMotherHatchBeginPhase.java │ │ │ │ ├── SpiderMotherHatchEndPhase.java │ │ │ │ ├── SpiderMotherHatchHoldPhase.java │ │ │ │ ├── SpiderMotherSlashPhase.java │ │ │ │ ├── SpiderMotherSmashPhase.java │ │ │ │ ├── SpiderMotherSpitPhase.java │ │ │ │ └── package-info.java │ │ ├── projectile │ │ │ ├── BladeWave.java │ │ │ ├── CeruleanArrowEntity.java │ │ │ ├── CrystalArrowEntity.java │ │ │ ├── EyeOfDisturbedEntity.java │ │ │ ├── FallingFireball.java │ │ │ ├── LinearMotionProjectile.java │ │ │ ├── StickySpikerEntity.java │ │ │ ├── ThrownAxe.java │ │ │ ├── ThrownShuriken.java │ │ │ ├── ThrownSlateBrick.java │ │ │ ├── UnstableCrystal.java │ │ │ ├── WebbingEntity.java │ │ │ └── package-info.java │ │ └── technical │ │ │ ├── LunaCircleEntity.java │ │ │ ├── SitEntity.java │ │ │ └── package-info.java │ ├── equipment_set │ │ ├── CrystalRuneArmorSet.java │ │ ├── KnightArmorSet.java │ │ └── MysteriumWoolArmorSet.java │ ├── event │ │ ├── RegisterAurorianSkyBlessEvent.java │ │ ├── RegisterAurorianSkyColorEvent.java │ │ ├── TAEventFactory.java │ │ └── subscriber │ │ │ ├── ClientEventSubscriber.java │ │ │ ├── EnchantmentEventSubscriber.java │ │ │ ├── EntityEventSubscriber.java │ │ │ ├── ItemEventSubscriber.java │ │ │ ├── ItemSubscriber.java │ │ │ ├── LevelEventSubscriber.java │ │ │ ├── SafeTeleportHandler.java │ │ │ ├── ShieldSubscriber.java │ │ │ ├── StunEventSubscriber.java │ │ │ ├── ToolSubscriber.java │ │ │ ├── TooltipEventSubscriber.java │ │ │ └── VillageTradeSubscriber.java │ ├── items │ │ ├── AbsorptionOrbItem.java │ │ ├── AurorianCrystal.java │ │ ├── AurorianSlateBrick.java │ │ ├── CeruleanArrow.java │ │ ├── CrystalArrow.java │ │ ├── DeveloperGift.java │ │ ├── DungeonLocatorItem.java │ │ ├── ITooltipsItem.java │ │ ├── KeepersBow.java │ │ ├── LivingDiviningRod.java │ │ ├── SilentWoodChestItem.java │ │ ├── SimpleThrowProjectProjectile.java │ │ ├── SpikedChestplate.java │ │ ├── StrangeMeat.java │ │ ├── TAArmorMaterials.java │ │ ├── TASpecialItem.java │ │ ├── TAToolTiers.java │ │ ├── TeaFood.java │ │ ├── WeepingWillowSap.java │ │ ├── WorldScroll.java │ │ ├── armor │ │ │ ├── AurorianSlimeBoots.java │ │ │ ├── AurorianSteelArmor.java │ │ │ ├── BaseArmor.java │ │ │ ├── CeruleanArmor.java │ │ │ ├── CrystalRuneArmor.java │ │ │ ├── KnightArmor.java │ │ │ ├── MysteriumWoolArmor.java │ │ │ └── SpectralArmor.java │ │ ├── crafting │ │ │ ├── AlchemyTableRecipe.java │ │ │ ├── AlchemyTableSerializer.java │ │ │ ├── MoonlightForgeRecipe.java │ │ │ ├── MoonlightForgeSerializer.java │ │ │ ├── ScrapperRecipe.java │ │ │ ├── ScrapperSerializer.java │ │ │ └── package-info.java │ │ ├── developer │ │ │ ├── CatBell.java │ │ │ ├── IDeveloperItem.java │ │ │ ├── RedBook.java │ │ │ ├── RedBookRing.java │ │ │ ├── SleepingBlackTea.java │ │ │ ├── TslatSword.java │ │ │ ├── WhiteChocolate.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── shield │ │ │ ├── CeruleanShield.java │ │ │ ├── CrystallineShield.java │ │ │ ├── MoonShield.java │ │ │ ├── MoonStoneShield.java │ │ │ ├── ShieldItemSubscriber.java │ │ │ ├── UmbraShield.java │ │ │ └── package-info.java │ │ └── tool │ │ │ ├── AurorianSteelSword.java │ │ │ ├── AurorianStoneAxe.java │ │ │ ├── AurorianStonePickaxe.java │ │ │ ├── AurorianiteAxe.java │ │ │ ├── AurorianiteSword.java │ │ │ ├── CrystallinePickaxe.java │ │ │ ├── CrystallineSword.java │ │ │ ├── MoonstoneSickle.java │ │ │ ├── QueensChipper.java │ │ │ ├── SilentWoodPickaxe.java │ │ │ ├── UmbraPickaxe.java │ │ │ ├── UmbraSword.java │ │ │ └── package-info.java │ ├── level │ │ ├── biome │ │ │ ├── TABiomeBuilder.java │ │ │ ├── TABiomeSource.java │ │ │ └── layer │ │ │ │ ├── FilteredBiomeLayer.java │ │ │ │ ├── RandomBiomeLayer.java │ │ │ │ ├── SeamLayer.java │ │ │ │ └── package-info.java │ │ ├── carver │ │ │ ├── AurorianCarver.java │ │ │ └── package-info.java │ │ ├── chunk │ │ │ ├── NoiseModifier.java │ │ │ ├── NoiseSlider.java │ │ │ ├── TABlendedNoise.java │ │ │ ├── TAChunkGenerator.java │ │ │ ├── TANoiseInterpolator.java │ │ │ ├── TANoiseSampler.java │ │ │ └── TATerrainColumn.java │ │ ├── feature │ │ │ ├── FallenLogFeature.java │ │ │ ├── FilthyLakeFeature.java │ │ │ ├── FilthySnowAndFreezeFeature.java │ │ │ ├── HugeIndigoMushroomFeature.java │ │ │ ├── TemplateFeature.java │ │ │ ├── UrnFeature.java │ │ │ ├── config │ │ │ │ └── FallenLogConfig.java │ │ │ ├── package-info.java │ │ │ ├── ruin │ │ │ │ ├── MediumRuinFeature.java │ │ │ │ ├── SmallRuinFeature.java │ │ │ │ └── package-info.java │ │ │ └── tree │ │ │ │ ├── decorators │ │ │ │ ├── CrystalBudDecorator.java │ │ │ │ └── package-info.java │ │ │ │ ├── foliage │ │ │ │ ├── HemisphereFoliagePlacer.java │ │ │ │ ├── TaperFoliagePlacer.java │ │ │ │ └── package-info.java │ │ │ │ └── trunk │ │ │ │ ├── StraightWithFallenLeavesTrunkPlacer.java │ │ │ │ ├── StraightWithRootTrunkPlacer.java │ │ │ │ └── package-info.java │ │ ├── legacy │ │ │ ├── area │ │ │ │ ├── Area.java │ │ │ │ └── LazyArea.java │ │ │ ├── context │ │ │ │ ├── BigContext.java │ │ │ │ ├── Context.java │ │ │ │ └── LazyAreaContext.java │ │ │ └── layer │ │ │ │ ├── BiomeLayerFactory.java │ │ │ │ ├── BiomeLayerType.java │ │ │ │ ├── SmoothLayer.java │ │ │ │ ├── ZoomLayer.java │ │ │ │ ├── package-info.java │ │ │ │ └── traits │ │ │ │ ├── AreaTransformer0.java │ │ │ │ ├── AreaTransformer1.java │ │ │ │ ├── AreaTransformer2.java │ │ │ │ ├── CastleTransformer.java │ │ │ │ ├── DimensionOffset0Transformer.java │ │ │ │ ├── DimensionOffset1Transformer.java │ │ │ │ ├── DimensionTransformer.java │ │ │ │ └── package-info.java │ │ ├── processors │ │ │ ├── DecorationProcessor.java │ │ │ └── package-info.java │ │ ├── storage │ │ │ └── NightmareModeSavedData.java │ │ └── structure │ │ │ ├── pieces │ │ │ ├── RuinsAltarPiece.java │ │ │ └── package-info.java │ │ │ └── structures │ │ │ ├── LargeJigsawStructure.java │ │ │ ├── RuinsAltarStructure.java │ │ │ └── package-info.java │ ├── mixin │ │ ├── MixinClientLevel.java │ │ ├── MixinClientPacketListener.java │ │ ├── MixinDamageSource.java │ │ ├── MixinEmeraldsForVillagerTypeItem.java │ │ ├── MixinLevel.java │ │ ├── MixinLevelRenderer.java │ │ ├── MixinLivingEntity.java │ │ ├── MixinPlayer.java │ │ ├── MixinServerLevel.java │ │ ├── MixinTemptGoal.java │ │ └── PlayerListMixin.java │ ├── network │ │ ├── TAMessages.java │ │ └── message │ │ │ ├── CrystalRuneSetC2SMessage.java │ │ │ ├── FrostbiteSyncMessage.java │ │ │ ├── FutureNightMessage.java │ │ │ ├── NightSyncMessage.java │ │ │ └── ShieldSyncS2CMessage.java │ ├── registry │ │ ├── TAAttributes.java │ │ ├── TABiomeLayerStack.java │ │ ├── TABiomeLayers.java │ │ ├── TABiomeModifiers.java │ │ ├── TABiomes.java │ │ ├── TABlockEntityTypes.java │ │ ├── TABlocks.java │ │ ├── TACapability.java │ │ ├── TAConfiguredCarvers.java │ │ ├── TAConfiguredFeatures.java │ │ ├── TACreativeModeTabs.java │ │ ├── TADamageTypes.java │ │ ├── TADimensions.java │ │ ├── TAEnchantments.java │ │ ├── TAEntityTypes.java │ │ ├── TAEquipmentSet.java │ │ ├── TAFeatures.java │ │ ├── TAFluidTypes.java │ │ ├── TAFluids.java │ │ ├── TAFoliagePlacerTypes.java │ │ ├── TAGameRules.java │ │ ├── TAItems.java │ │ ├── TAKeyMappings.java │ │ ├── TAMenuTypes.java │ │ ├── TAMobEffects.java │ │ ├── TAPaintingVariants.java │ │ ├── TAParticleTypes.java │ │ ├── TAPlacedFeatures.java │ │ ├── TAProcessorList.java │ │ ├── TARecipes.java │ │ ├── TARunes.java │ │ ├── TAShields.java │ │ ├── TASoundEvents.java │ │ ├── TAStructurePieceTypes.java │ │ ├── TAStructurePlacementTypes.java │ │ ├── TAStructureProcessors.java │ │ ├── TAStructureSets.java │ │ ├── TAStructureTypes.java │ │ ├── TAStructures.java │ │ ├── TATreeDecoratorTypes.java │ │ ├── TATrunkPlacerTypes.java │ │ ├── TAVillagerProfession.java │ │ └── TAVillagerType.java │ ├── rune │ │ └── BaseRune.java │ ├── shield │ │ ├── AurorianShield.java │ │ ├── BaseShield.java │ │ ├── CommonShield.java │ │ ├── MaxShieldData.java │ │ └── TempShield.java │ └── utils │ │ ├── AurorianSteelHelper.java │ │ ├── InventoryUtils.java │ │ ├── TABlockRegUtils.java │ │ ├── TACommonUtils.java │ │ ├── TAEntityUtils.java │ │ ├── TAItemRegUtils.java │ │ ├── TATooltipRenderUtils.java │ │ └── TATradeUtils.java │ └── compat │ ├── ModernUICompat.java │ ├── ThirstWasTakenCompat.java │ ├── VanillaBlockCompat.java │ └── VanillaItemCompat.java └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets └── theaurorian │ ├── animations │ └── entity │ │ ├── aurorian_winged_fish.animation.json │ │ ├── blue_tail_wolf.animation.json │ │ ├── cave_dweller.animation.json │ │ ├── disturbed_hollow.animation.json │ │ ├── giant_crystal_spider.animation.json │ │ ├── luna_circle.animation.json │ │ ├── moon_acolyte.animation.json │ │ ├── moon_queen.animation.json │ │ ├── moonlight_knight.animation.json │ │ ├── rock_hammer.animation.json │ │ ├── rune_spider.animation.json │ │ ├── runestone_books.animation.json │ │ ├── runestone_keeper.animation.json │ │ ├── snow_tundra_giant_crab.animation.json │ │ ├── spider_mother.animation.json │ │ ├── spiderling.animation.json │ │ ├── spiderling_crystal_shell.animation.json │ │ ├── spiderling_wall_climber.animation.json │ │ ├── spirit.animation.json │ │ ├── tong_scorpion.animation.json │ │ └── undead_knight.animation.json │ ├── blockstates │ ├── alchemy_table.json │ ├── astrology_table.json │ ├── aurorian_crafting_table.json │ ├── aurorian_farm_tile.json │ ├── aurorian_furnace.json │ ├── aurorian_furnace_chimney.json │ ├── aurorian_portal.json │ ├── dreamscape_pistil.json │ ├── frost_tears_flower.json │ ├── indigo_mushroom_block.json │ ├── indigo_mushroom_stem.json │ ├── moon_gem.json │ ├── moonlight_forge.json │ ├── mysterium_wool_bed.json │ ├── relic_table.json │ ├── scrapper.json │ ├── silent_campfire.json │ └── urn.json │ ├── geo │ └── entity │ │ ├── aurorian_winged_fish.geo.json │ │ ├── blue_tail_wolf.geo.json │ │ ├── cave_dweller.geo.json │ │ ├── disturbed_hollow.geo.json │ │ ├── giant_crystal_spider.geo.json │ │ ├── luna_circle.geo.json │ │ ├── moon_acolyte.geo.json │ │ ├── moon_queen.geo.json │ │ ├── moonlight_knight.geo.json │ │ ├── rock_hammer.geo.json │ │ ├── rune_spider.geo.json │ │ ├── runestone_books.geo.json │ │ ├── runestone_keeper.geo.json │ │ ├── snow_tundra_giant_crab.geo.json │ │ ├── spider_mother.geo.json │ │ ├── spiderling.geo.json │ │ ├── spiderling_crystal_shell.geo.json │ │ ├── spiderling_wall_climber.geo.json │ │ ├── spirit.geo.json │ │ ├── tong_scorpion.geo.json │ │ └── undead_knight.geo.json │ ├── models │ ├── block │ │ ├── alchemy_table.json │ │ ├── astrology_table.json │ │ ├── aurorian_crafting_table.json │ │ ├── aurorian_farm_tile.json │ │ ├── aurorian_farm_tile_moist.json │ │ ├── aurorian_furnace.json │ │ ├── aurorian_furnace_chimney.json │ │ ├── aurorian_furnace_on.json │ │ ├── aurorian_lily_pad.json │ │ ├── aurorian_portal_ew.json │ │ ├── aurorian_portal_ns.json │ │ ├── aurorian_water_mushroom.json │ │ ├── chimney_post.json │ │ ├── dreamscape_pistil.json │ │ ├── frost_tears_flower.json │ │ ├── indigo_mushroom_block.json │ │ ├── indigo_mushroom_block_inside.json │ │ ├── indigo_mushroom_block_inventory.json │ │ ├── indigo_mushroom_stem_inside.json │ │ ├── indigo_mushroom_stem_inventory.json │ │ ├── indigo_mushroom_stem_side.json │ │ ├── moon_gem.json │ │ ├── moonlight_forge.json │ │ ├── mysterium_wool_bed.json │ │ ├── relic_table.json │ │ ├── scrapper.json │ │ ├── silent_campfire.json │ │ ├── silent_campfire_off.json │ │ ├── urn.json │ │ ├── vertical_slab.json │ │ ├── vertical_slab_post.json │ │ └── vertical_stair.json │ └── item │ │ ├── alchemy_table.json │ │ ├── astrology_table.json │ │ ├── aurorian_farm_tile.json │ │ ├── aurorian_furnace.json │ │ ├── aurorian_furnace_chimney.json │ │ ├── aurorian_lily_pad.json │ │ ├── aurorian_water_mushroom.json │ │ ├── crystalline_sword.json │ │ ├── crystalline_sword_shoot.json │ │ ├── dreamscape_pistil.json │ │ ├── frost_tears_flower.json │ │ ├── indigo_mushroom_block.json │ │ ├── indigo_mushroom_stem.json │ │ ├── moon_gem.json │ │ ├── moonlight_forge.json │ │ ├── relic_table.json │ │ ├── ta_bow.json │ │ ├── ta_cluster.json │ │ ├── ta_crossbow.json │ │ ├── ta_large_bud.json │ │ ├── ta_medium_bud.json │ │ ├── ta_shield.json │ │ ├── ta_shield_blocking.json │ │ ├── ta_small_bud.json │ │ └── urn.json │ ├── particles │ ├── magic_purple.json │ └── wick.json │ ├── patchouli_books │ └── the_aurorian_guide │ │ ├── book.json │ │ ├── en_us │ │ ├── categories │ │ │ ├── 1aurorianbasics.json │ │ │ ├── 2modprogression.json │ │ │ ├── 3magicalitems.json │ │ │ ├── 4agriculture.json │ │ │ ├── 5blocks.json │ │ │ ├── contact.json │ │ │ └── heart.png │ │ └── entries │ │ │ ├── agriculture │ │ │ ├── aurorianpork.json │ │ │ ├── lavender.json │ │ │ ├── lavenderbread.json │ │ │ ├── lavenderseeds.json │ │ │ ├── mushroomcaves.json │ │ │ ├── mushrooms.png │ │ │ ├── petunias.json │ │ │ ├── silkberry.json │ │ │ ├── silkberryjamsandwich.json │ │ │ └── weepingwillowsap.json │ │ │ ├── aurorianbasics │ │ │ ├── 1makingtheportal.json │ │ │ ├── 2structurestolookfor.json │ │ │ ├── 3materials.json │ │ │ ├── 4sickles.json │ │ │ ├── 5lootscrapping.json │ │ │ ├── 6moonlightforge.json │ │ │ ├── 7scrapper.json │ │ │ ├── auroriancoal.png │ │ │ ├── aurorianstone.png │ │ │ ├── cerulean.png │ │ │ ├── darkstonedungeon.png │ │ │ ├── geode.png │ │ │ ├── moonstone.png │ │ │ ├── moontemple.png │ │ │ ├── ruins1.png │ │ │ ├── ruins2.png │ │ │ ├── runestone.png │ │ │ └── silentwood.png │ │ │ ├── blocks │ │ │ ├── aurorianfurnace.json │ │ │ ├── dungeonstone.json │ │ │ ├── moongem.json │ │ │ ├── mysticalbarrier.json │ │ │ ├── peridotite.json │ │ │ ├── silentwoodcraftingtable.json │ │ │ ├── silentwoodladder.json │ │ │ └── urn.json │ │ │ ├── contact │ │ │ ├── curseforge.json │ │ │ ├── curseforge.png │ │ │ ├── discord.json │ │ │ ├── discord.png │ │ │ ├── github.json │ │ │ └── github.png │ │ │ ├── magicalitems │ │ │ ├── absorptionorb.json │ │ │ ├── aurorianiteaxe.json │ │ │ ├── aurorianitepickaxe.json │ │ │ ├── aurorianitesword.json │ │ │ ├── aurorianslimeboots.json │ │ │ ├── auroriansteeltools.json │ │ │ ├── crystallinepickaxe.json │ │ │ ├── crystallineshield.json │ │ │ ├── crystallinesword.json │ │ │ ├── keepersbow.json │ │ │ ├── livingdiviningrod.json │ │ │ ├── locator.json │ │ │ ├── moonshield.json │ │ │ ├── queenschipper.json │ │ │ ├── silentwoodbow.json │ │ │ ├── spectralsilk.json │ │ │ ├── spikedchestplate.json │ │ │ ├── stickyspiker.json │ │ │ ├── strangemeat.json │ │ │ ├── umbrapickaxe.json │ │ │ ├── umbrashield.json │ │ │ └── umbrasword.json │ │ │ └── modprogression │ │ │ ├── 1lockpicks.json │ │ │ ├── 2therunestonedungeon.json │ │ │ ├── 3runestonedungeonmobs.json │ │ │ ├── 4darkstonedungeon.json │ │ │ ├── 5darkstonedungeonmobs.json │ │ │ ├── 6moontemple.json │ │ │ └── 7moontemplemobs.json │ │ └── zh_cn │ │ ├── categories │ │ ├── 1aurorianbasics.json │ │ ├── 2modprogression.json │ │ ├── 3magicalitems.json │ │ ├── 4agriculture.json │ │ ├── 5blocks.json │ │ └── contact.json │ │ └── entries │ │ ├── agriculture │ │ ├── aurorianpork.json │ │ ├── lavender.json │ │ ├── lavenderbread.json │ │ ├── lavenderseeds.json │ │ ├── mushroomcaves.json │ │ ├── petunias.json │ │ ├── silkberry.json │ │ ├── silkberryjamsandwich.json │ │ └── weepingwillowsap.json │ │ ├── aurorianbasics │ │ ├── 1makingtheportal.json │ │ ├── 2structurestolookfor.json │ │ ├── 3materials.json │ │ ├── 4sickles.json │ │ ├── 5lootscrapping.json │ │ ├── 6moonlightforge.json │ │ └── 7scrapper.json │ │ ├── blocks │ │ ├── aurorianfurnace.json │ │ ├── dungeonstone.json │ │ ├── moongem.json │ │ ├── mysticalbarrier.json │ │ ├── peridotite.json │ │ ├── silentwoodcraftingtable.json │ │ ├── silentwoodladder.json │ │ └── urn.json │ │ ├── contact │ │ ├── curseforge.json │ │ ├── discord.json │ │ └── github.json │ │ ├── magicalitems │ │ ├── absorptionorb.json │ │ ├── aurorianiteaxe.json │ │ ├── aurorianitepickaxe.json │ │ ├── aurorianitesword.json │ │ ├── aurorianslimeboots.json │ │ ├── auroriansteeltools.json │ │ ├── crystallinepickaxe.json │ │ ├── crystallineshield.json │ │ ├── crystallinesword.json │ │ ├── livingdiviningrod.json │ │ ├── locator.json │ │ ├── moonshield.json │ │ ├── silentwoodbow.json │ │ ├── spectralsilk.json │ │ ├── spikedchestplate.json │ │ ├── stickyspiker.json │ │ ├── strangemeat.json │ │ ├── umbrapickaxe.json │ │ ├── umbrashield.json │ │ └── umbrasword.json │ │ └── modprogression │ │ ├── 1lockpicks.json │ │ ├── 2therunestonedungeon.json │ │ ├── 3runestonedungeonmobs.json │ │ ├── 4darkstonedungeon.json │ │ ├── 5darkstonedungeonmobs.json │ │ ├── 6moontemple.json │ │ └── 7moontemplemobs.json │ ├── sounds │ ├── crystalline_sword_charging.ogg │ ├── crystalline_sword_shoot.ogg │ ├── crystalline_sword_use.ogg │ ├── music │ │ ├── aurorian_1.ogg │ │ ├── aurorian_2.ogg │ │ ├── aurorian_3.ogg │ │ ├── aurorian_4.ogg │ │ └── aurorian_5.ogg │ ├── snow_tundra_giant_crab │ │ ├── ambient_1.ogg │ │ ├── ambient_2.ogg │ │ ├── death_1.ogg │ │ ├── death_2.ogg │ │ ├── hurt_1.ogg │ │ ├── hurt_2.ogg │ │ ├── hurt_3.ogg │ │ ├── step_1.ogg │ │ └── step_2.ogg │ └── weeping_willow_bell.ogg │ └── textures │ ├── block │ ├── alchemy_table.png │ ├── astrology_table.png │ ├── aurorian_andesite.png │ ├── aurorian_barrier_stone.png │ ├── aurorian_castle_rune_overlay.png │ ├── aurorian_castle_rune_stone.png │ ├── aurorian_coal_block.png │ ├── aurorian_coal_ore.png │ ├── aurorian_cobblestone.png │ ├── aurorian_copper_ore.png │ ├── aurorian_crafting_table_front.png │ ├── aurorian_crafting_table_side.png │ ├── aurorian_crafting_table_top.png │ ├── aurorian_diamond_ore.png │ ├── aurorian_diorite.png │ ├── aurorian_dirt.png │ ├── aurorian_emerald_ore.png │ ├── aurorian_erosive.png │ ├── aurorian_farm_tile.png │ ├── aurorian_farm_tile_moist.png │ ├── aurorian_furnace.png │ ├── aurorian_furnace_chimney.png │ ├── aurorian_furnace_chimney_top.png │ ├── aurorian_furnace_on.png │ ├── aurorian_furnace_side.png │ ├── aurorian_furnace_top.png │ ├── aurorian_glass.png │ ├── aurorian_glass_pane.png │ ├── aurorian_gold_ore.png │ ├── aurorian_granite.png │ ├── aurorian_grass.png │ ├── aurorian_grass_block.png │ ├── aurorian_grass_block_top.png │ ├── aurorian_grass_light.png │ ├── aurorian_iron_ore.png │ ├── aurorian_lapis_ore.png │ ├── aurorian_lily_pad.png │ ├── aurorian_peridotite.png │ ├── aurorian_portal.png │ ├── aurorian_portal.png.mcmeta │ ├── aurorian_portal_frame_bricks.png │ ├── aurorian_redstone_ore.png │ ├── aurorian_steel_block.png │ ├── aurorian_steel_castle_rune_overlay.png │ ├── aurorian_steel_castle_rune_stone.png │ ├── aurorian_stone.png │ ├── aurorian_stone_bricks.png │ ├── aurorian_water_grass.png │ ├── aurorian_water_mushroom.png │ ├── blueberry_bush_stage0.png │ ├── blueberry_bush_stage1.png │ ├── blueberry_bush_stage2.png │ ├── blueberry_bush_stage3.png │ ├── boss_spawner.png │ ├── bright_moon_sand.png │ ├── bright_moon_sandstone.png │ ├── cerulean_block.png │ ├── cerulean_castle_rune_overlay.png │ ├── cerulean_castle_rune_stone.png │ ├── cerulean_cluster.png │ ├── cerulean_ore.png │ ├── chiseled_dark_stone_bricks.png │ ├── chiseled_moon_temple_bricks.png │ ├── chiseled_rune_stone.png │ ├── crisped_mallow.png │ ├── crystal.png │ ├── crystalline_castle_rune_overlay.png │ ├── crystalline_castle_rune_stone.png │ ├── cursed_frost_tree_leaves.png │ ├── cursed_frost_tree_log.png │ ├── cursed_frost_tree_log_top.png │ ├── cursed_frost_tree_planks.png │ ├── cursed_frost_tree_sapling.png │ ├── cursed_frost_tree_trapdoor.png │ ├── cursed_frost_wood_door_bottom.png │ ├── cursed_frost_wood_door_top.png │ ├── cursed_frost_wood_trapdoor.png │ ├── curtain_tree_leaves.png │ ├── curtain_tree_log.png │ ├── curtain_tree_log_top.png │ ├── curtain_tree_planks.png │ ├── curtain_tree_sapling.png │ ├── curtain_wood_door_bottom.png │ ├── curtain_wood_door_top.png │ ├── curtain_wood_trapdoor.png │ ├── cut_moon_sandstone.png │ ├── dark_stone_bars.png │ ├── dark_stone_bricks.png │ ├── dark_stone_fancy.png │ ├── dark_stone_gate.png │ ├── dark_stone_gate_keyhole.png │ ├── dark_stone_gate_keyhole_unlocked.png │ ├── dark_stone_glass.png │ ├── dark_stone_glass_pane.png │ ├── dark_stone_lamp.png │ ├── dark_stone_layers.png │ ├── dark_stone_pillar.png │ ├── dark_stone_pillar_top.png │ ├── dreamscape_pistil.png │ ├── equinox_flower.png │ ├── erosive_aurorian_copper_ore.png │ ├── erosive_aurorian_diamond_ore.png │ ├── erosive_aurorian_emerald_ore.png │ ├── erosive_aurorian_gold_ore.png │ ├── erosive_aurorian_iron_ore.png │ ├── erosive_aurorian_lapis_ore.png │ ├── erosive_aurorian_redstone_ore.png │ ├── erosive_cerulean_ore.png │ ├── erosive_geode_ore.png │ ├── erosive_moonstone_ore.png │ ├── filthy_ice.png │ ├── frost_snow_grass.png │ ├── frost_tears_flower.png │ ├── geode_ore.png │ ├── ice_calendula.png │ ├── indigo_mushroom.png │ ├── indigo_mushroom_block_inside.png │ ├── indigo_mushroom_block_side.png │ ├── indigo_mushroom_crystal.png │ ├── indigo_mushroom_stem_inside.png │ ├── indigo_mushroom_stem_side.png │ ├── large_cerulean_bud.png │ ├── large_filthy_ice_spike.png │ ├── large_moonstone_bud.png │ ├── lavender_crop_stage0.png │ ├── lavender_crop_stage1.png │ ├── lavender_crop_stage2.png │ ├── lavender_crop_stage3.png │ ├── lavender_plant.png │ ├── light_aurorian_grass_block.png │ ├── light_aurorian_grass_block_top.png │ ├── medium_cerulean_bud.png │ ├── medium_filthy_ice_spike.png │ ├── medium_moonstone_bud.png │ ├── molten_aurorian_steel.png │ ├── molten_aurorian_steel.png.mcmeta │ ├── molten_aurorian_steel_flow.png │ ├── molten_aurorian_steel_flow.png.mcmeta │ ├── molten_cerulean.png │ ├── molten_cerulean.png.mcmeta │ ├── molten_cerulean_flow.png │ ├── molten_cerulean_flow.png.mcmeta │ ├── molten_moonstone.png │ ├── molten_moonstone.png.mcmeta │ ├── molten_moonstone_flow.png │ ├── molten_moonstone_flow.png.mcmeta │ ├── moon_castle_rune_overlay.png │ ├── moon_castle_rune_stone.png │ ├── moon_frost_flower.png │ ├── moon_gem.png │ ├── moon_gem_overlay.png │ ├── moon_glass.png │ ├── moon_glass_pane.png │ ├── moon_sand.png │ ├── moon_sand_river.png │ ├── moon_sandstone.png │ ├── moon_temple_bars.png │ ├── moon_temple_bricks.png │ ├── moon_temple_cell_gate.png │ ├── moon_temple_cell_gate_keyhole.png │ ├── moon_temple_cell_gate_keyhole_unlocked.png │ ├── moon_temple_gate.png │ ├── moon_temple_gate_keyhole.png │ ├── moon_temple_gate_keyhole_unlocked.png │ ├── moon_temple_lamp.png │ ├── moon_temple_pillar.png │ ├── moon_temple_pillar_top.png │ ├── moon_torch.png │ ├── moon_water.png │ ├── moon_water.png.mcmeta │ ├── moon_water_flowing.png │ ├── moon_water_flowing.png.mcmeta │ ├── moonstone_block.png │ ├── moonstone_cluster.png │ ├── moonstone_ore.png │ ├── mysterium_wool.png │ ├── mysterium_wool_bed.png │ ├── mystical_barrier.png │ ├── mystical_barrier.png.mcmeta │ ├── mystical_barrier_out.png │ ├── mystical_barrier_out.png.mcmeta │ ├── nebula_blossom_cluster.png │ ├── petunia_plant.png │ ├── red_aurorian_grass_block.png │ ├── red_aurorian_grass_block_top.png │ ├── relic_table.png │ ├── rune_crystal.png │ ├── rune_stone.png │ ├── rune_stone_bars.png │ ├── rune_stone_brick.png │ ├── rune_stone_brick_0.png │ ├── rune_stone_gate.png │ ├── rune_stone_gate_keyhole.png │ ├── rune_stone_gate_keyhole_unlocked.png │ ├── rune_stone_lamp.png │ ├── rune_stone_loot_gate.png │ ├── rune_stone_loot_gate_keyhole.png │ ├── rune_stone_loot_gate_keyhole_unlocked.png │ ├── rune_stone_pillar.png │ ├── rune_stone_pillar_top.png │ ├── scrapper_front.png │ ├── scrapper_side.png │ ├── scrapper_top.png │ ├── silent_campfire.png │ ├── silent_campfire_fire.png │ ├── silent_campfire_fire.png.mcmeta │ ├── silent_tree_leaves.png │ ├── silent_tree_log.png │ ├── silent_tree_log_top.png │ ├── silent_tree_planks.png │ ├── silent_tree_sapling.png │ ├── silent_wood_door_bottom.png │ ├── silent_wood_door_top.png │ ├── silent_wood_ladder.png │ ├── silent_wood_torch.png │ ├── silent_wood_trapdoor.png │ ├── silk_berry_crop_stage0.png │ ├── silk_berry_crop_stage1.png │ ├── silk_berry_crop_stage2.png │ ├── silk_berry_crop_stage3.png │ ├── silk_berry_plant.png │ ├── small_cerulean_bud.png │ ├── small_filthy_ice_spike.png │ ├── small_moonstone_bud.png │ ├── smooth_aurorian_peridotite.png │ ├── smooth_dark_stone_bricks.png │ ├── smooth_moon_sandstone.png │ ├── smooth_moon_temple_bricks.png │ ├── smooth_rune_stone.png │ ├── snow_aurorian_grass_block.png │ ├── snow_aurorian_grass_block_top.png │ ├── stripped_cursed_frost_tree_log.png │ ├── stripped_cursed_frost_tree_log_top.png │ ├── stripped_curtain_tree_log.png │ ├── stripped_curtain_tree_log_top.png │ ├── stripped_silent_tree_log.png │ ├── stripped_silent_tree_log_top.png │ ├── stripped_weeping_willow_log.png │ ├── stripped_weeping_willow_log_top.png │ ├── tall_aurorian_grass_light_lower.png │ ├── tall_aurorian_grass_light_upper.png │ ├── tall_aurorian_grass_lower.png │ ├── tall_aurorian_grass_upper.png │ ├── tall_aurorian_water_grass_lower.png │ ├── tall_aurorian_water_grass_upper.png │ ├── tall_lavender_plant_lower.png │ ├── tall_lavender_plant_upper.png │ ├── tall_wick_grass_lower.png │ ├── tall_wick_grass_upper.png │ ├── transparent_rune_stone.png │ ├── umbra_castle_rune_stone.png │ ├── umbra_stone.png │ ├── umbra_stone_cracked.png │ ├── umbra_stone_roof_tiles.png │ ├── urn.png │ ├── urn_top.png │ ├── void_candle_flower.png │ ├── void_stone.png │ ├── weeping_willow_door_bottom.png │ ├── weeping_willow_door_top.png │ ├── weeping_willow_leaves.png │ ├── weeping_willow_log.png │ ├── weeping_willow_log_top.png │ ├── weeping_willow_planks.png │ ├── weeping_willow_sapling.png │ ├── weeping_willow_trapdoor.png │ ├── wick_grass.png │ └── winter_root.png │ ├── entity │ ├── astrologer.png │ ├── astrologer_2.png │ ├── aurorian_cow.png │ ├── aurorian_cow_baby.png │ ├── aurorian_pig.png │ ├── aurorian_pig_baby.png │ ├── aurorian_pixie_1.png │ ├── aurorian_pixie_2.png │ ├── aurorian_pixie_3.png │ ├── aurorian_pixie_4.png │ ├── aurorian_rabbit.png │ ├── aurorian_sheep.png │ ├── aurorian_sheep_baby.png │ ├── aurorian_slime.png │ ├── aurorian_winged_fish.png │ ├── bed │ │ └── mysterium_wool_bed.png │ ├── blue_tail_wolf.png │ ├── bread_beast.png │ ├── cave_dweller.png │ ├── cerulean_arrow.png │ ├── chest │ │ ├── silent_wood.png │ │ ├── silent_wood_left.png │ │ └── silent_wood_right.png │ ├── crystal_arrow.png │ ├── crystalline_beam.png │ ├── crystalline_sprite.png │ ├── disturbed_hollow.png │ ├── eye_of_disturbed.png │ ├── flower_leech.png │ ├── forgotten_magic_book.png │ ├── giant_crystal_spider.png │ ├── hypha_walking_mushroom.png │ ├── icefield_deer.png │ ├── luna_circle.png │ ├── moon_acolyte.png │ ├── moon_fish.png │ ├── moon_queen.png │ ├── moonlight_knight.png │ ├── rock_hammer.png │ ├── rune_spider.png │ ├── runestone_books.png │ ├── runestone_keeper.png │ ├── signs │ │ ├── cursed_frost.png │ │ ├── curtain.png │ │ ├── hanging │ │ │ ├── cursed_frost.png │ │ │ ├── curtain.png │ │ │ ├── silent.png │ │ │ └── weeping_willow.png │ │ ├── silent.png │ │ └── weeping_willow.png │ ├── snow_tundra_giant_crab.png │ ├── spider_mother.png │ ├── spiderling.png │ ├── spiderling_crystal_shell.png │ ├── spiderling_wall_climber.png │ ├── spirit.png │ ├── tong_scorpion.png │ └── undead_knight.png │ ├── gui │ ├── alchemy_table.png │ ├── bloodmoonbars.png │ ├── eclipsebars.png │ ├── hanging_signs │ │ ├── cursed_frost.png │ │ ├── curtain.png │ │ ├── silent.png │ │ └── weeping_willow.png │ ├── moon_queen_bars.png │ ├── moonlight_forge.png │ ├── moonlight_knight_bars.png │ ├── rune │ │ ├── card_slots.png │ │ ├── card_slots_bg.png │ │ ├── sprite_rune_aurorian.png │ │ ├── sprite_rune_aurorianite.png │ │ ├── sprite_rune_bright_moon.png │ │ ├── sprite_rune_cerulean.png │ │ ├── sprite_rune_creeper.png │ │ ├── sprite_rune_crystalline.png │ │ ├── sprite_rune_forever.png │ │ ├── sprite_rune_moonstone.png │ │ ├── sprite_rune_nether.png │ │ ├── sprite_rune_poison.png │ │ ├── sprite_rune_umbra.png │ │ └── sprite_rune_wealth.png │ ├── runestone_keeper_bars.png │ ├── scrapper.png │ ├── shield.png │ ├── spider_mother_bars.png │ ├── stamina.png │ ├── tooltips │ │ ├── cat_bell.png │ │ ├── dream_dyeing_crystal_fragment.png │ │ ├── epic.png │ │ ├── legendary.png │ │ ├── mythical.png │ │ ├── rare.png │ │ ├── red_book.png │ │ ├── tslat_sword.png │ │ ├── uncommon.png │ │ └── white_chocolate.png │ ├── torn_page.png │ └── world_scroll.png │ ├── item │ ├── absorption_orb.png │ ├── absorption_orb.png.mcmeta │ ├── aurorian_bacon.png │ ├── aurorian_beef.png │ ├── aurorian_berry.png │ ├── aurorian_chain.png │ ├── aurorian_chakram.png │ ├── aurorian_coal.png │ ├── aurorian_coal_nugget.png │ ├── aurorian_crystal.png │ ├── aurorian_crystal.png.mcmeta │ ├── aurorian_flying_axe.png │ ├── aurorian_mutton.png │ ├── aurorian_night_kunai.png │ ├── aurorian_night_ripper.png │ ├── aurorian_pork.png │ ├── aurorian_rabbit.png │ ├── aurorian_slate_brick.png │ ├── aurorian_slime_boots.png │ ├── aurorian_slimeball.png │ ├── aurorian_specialty_drink.png │ ├── aurorian_steel.png │ ├── aurorian_steel.png.mcmeta │ ├── aurorian_steel_axe.png │ ├── aurorian_steel_axe.png.mcmeta │ ├── aurorian_steel_boots.png │ ├── aurorian_steel_boots.png.mcmeta │ ├── aurorian_steel_chestplate.png │ ├── aurorian_steel_chestplate.png.mcmeta │ ├── aurorian_steel_helmet.png │ ├── aurorian_steel_helmet.png.mcmeta │ ├── aurorian_steel_hoe.png │ ├── aurorian_steel_hoe.png.mcmeta │ ├── aurorian_steel_leggings.png │ ├── aurorian_steel_leggings.png.mcmeta │ ├── aurorian_steel_nugget.png │ ├── aurorian_steel_nugget.png.mcmeta │ ├── aurorian_steel_pickaxe.png │ ├── aurorian_steel_pickaxe.png.mcmeta │ ├── aurorian_steel_shovel.png │ ├── aurorian_steel_shovel.png.mcmeta │ ├── aurorian_steel_sword.png │ ├── aurorian_steel_sword.png.mcmeta │ ├── aurorian_stone_axe.png │ ├── aurorian_stone_hoe.png │ ├── aurorian_stone_pickaxe.png │ ├── aurorian_stone_shovel.png │ ├── aurorian_stone_sickle.png │ ├── aurorian_stone_sword.png │ ├── aurorian_winged_fish.png │ ├── aurorian_winged_fish_bucket.png │ ├── aurorian_winter_root.png │ ├── aurorianite_axe.png │ ├── aurorianite_ingot.png │ ├── aurorianite_pickaxe.png │ ├── aurorianite_scrap.png │ ├── aurorianite_sword.png │ ├── bepsi.png │ ├── blueberry.png │ ├── broken_ox_horn.png │ ├── candy.png │ ├── candy_cane.png │ ├── cat_bell.png │ ├── cerulean_arrow.png │ ├── cerulean_boots.png │ ├── cerulean_chestplate.png │ ├── cerulean_helmet.png │ ├── cerulean_ingot.png │ ├── cerulean_leggings.png │ ├── cerulean_nugget.png │ ├── cerulean_shield.png │ ├── cooked_aurorian_beef.png │ ├── cooked_aurorian_mutton.png │ ├── cooked_aurorian_pork.png │ ├── cooked_aurorian_rabbit.png │ ├── cooked_aurorian_winged_fish.png │ ├── cooked_moon_fish.png │ ├── crystal.png │ ├── crystal_arrow.png │ ├── crystal_rune_boots.png │ ├── crystal_rune_chestplate.png │ ├── crystal_rune_helmet.png │ ├── crystal_rune_leggings.png │ ├── crystalline_ingot.png │ ├── crystalline_pickaxe.png │ ├── crystalline_scrap.png │ ├── crystalline_shield.png │ ├── crystalline_spear.png │ ├── crystalline_sword.png │ ├── cursed_frost_wood_door.png │ ├── cursed_frost_wood_hanging_sign.png │ ├── cursed_frost_wood_sign.png │ ├── curtain_wood_door.png │ ├── curtain_wood_hanging_sign.png │ ├── curtain_wood_sign.png │ ├── dark_amulet.png │ ├── dark_stone_key.png │ ├── dark_stone_shrimp.png │ ├── developer_gift.png │ ├── dream_dyeing_crystal_fragment.png │ ├── dungeon_keeper_amulet.png │ ├── dungeon_locator.png │ ├── equinox_mushroom.png │ ├── fake_algal_pit_fish.png │ ├── fragmented_druse.png │ ├── gingerbread_man.png │ ├── golden_silent_wood_fruit.png │ ├── indigo_mushroom.png │ ├── kebab_with_mushroom.png │ ├── keepers_bow.png │ ├── keepers_bow_pulling_0.png │ ├── keepers_bow_pulling_1.png │ ├── keepers_bow_pulling_2.png │ ├── knight_boots.png │ ├── knight_chestplate.png │ ├── knight_helmet.png │ ├── knight_leggings.png │ ├── lavender.png │ ├── lavender_bread.png │ ├── lavender_salad.png │ ├── lavender_seeds.png │ ├── lavender_seedy_tea.png │ ├── lavender_tea.png │ ├── living_divining_rod.png │ ├── lock_picks.png │ ├── lucky_rabbit_ear.png │ ├── moon_fish.png │ ├── moon_fish_bucket.png │ ├── moon_shield.png │ ├── moon_shuriken.png │ ├── moon_temple_cell_key.png │ ├── moon_temple_cell_key_fragment.png │ ├── moon_temple_key.png │ ├── moon_water_bucket.png │ ├── moonlit_blueberry_specialty_drink.png │ ├── moonstone_axe.png │ ├── moonstone_hoe.png │ ├── moonstone_ingot.png │ ├── moonstone_nugget.png │ ├── moonstone_pickaxe.png │ ├── moonstone_shield.png │ ├── moonstone_shovel.png │ ├── moonstone_sickle.png │ ├── moonstone_sword.png │ ├── mysterium_wool_bed.png │ ├── mysterium_wool_boots.png │ ├── mysterium_wool_chestplate.png │ ├── mysterium_wool_helmet.png │ ├── mysterium_wool_leggings.png │ ├── nacreous_halberd.png │ ├── petunia_tea.png │ ├── plant_fiber.png │ ├── queens_chipper.png │ ├── raw_cerulean.png │ ├── raw_moonstone.png │ ├── red_book.png │ ├── red_book_ring.png │ ├── roasted_aurorian_winter_root.png │ ├── rune_knowledge_fragment.png │ ├── rune_stone_key.png │ ├── rune_stone_loot_key.png │ ├── runestone_blaze.png │ ├── runestone_darkness.png │ ├── runestone_ice.png │ ├── runestone_life.png │ ├── runestone_light.png │ ├── runestone_thunder.png │ ├── runestone_water.png │ ├── sashimi.png │ ├── silent_campfire.png │ ├── silent_wood_axe.png │ ├── silent_wood_bow.png │ ├── silent_wood_bow_pulling_0.png │ ├── silent_wood_bow_pulling_1.png │ ├── silent_wood_bow_pulling_2.png │ ├── silent_wood_door.png │ ├── silent_wood_fruit.png │ ├── silent_wood_hanging_sign.png │ ├── silent_wood_hoe.png │ ├── silent_wood_pickaxe.png │ ├── silent_wood_shovel.png │ ├── silent_wood_sickle.png │ ├── silent_wood_sign.png │ ├── silent_wood_stick.png │ ├── silent_wood_sword.png │ ├── silk_berry.png │ ├── silk_berry_jam.png │ ├── silk_berry_jam_sandwich.png │ ├── silk_berry_plant.png │ ├── silk_berry_tea.png │ ├── silk_shroom_stew.png │ ├── sleeping_black_tea.png │ ├── soulless_flesh.png │ ├── spectral_boots.png │ ├── spectral_chestplate.png │ ├── spectral_helmet.png │ ├── spectral_leggings.png │ ├── spectral_silk.png │ ├── spiked_chestplate.png │ ├── sticky_spiker.png │ ├── strange_meat.png │ ├── tea.png │ ├── tea_cup.png │ ├── the_aurorian_guide.png │ ├── trophy_keeper.png │ ├── trophy_moon_queen.png │ ├── trophy_spider_mother.png │ ├── tslat_sword.png │ ├── umbra_ingot.png │ ├── umbra_pickaxe.png │ ├── umbra_scrap.png │ ├── umbra_shield.png │ ├── umbra_sword.png │ ├── unbra_kunai.png │ ├── unstable_crystal.png │ ├── webbing.png │ ├── weeping_willow_door.png │ ├── weeping_willow_sap.png │ ├── weeping_willow_wood_hanging_sign.png │ ├── weeping_willow_wood_sign.png │ ├── white_chocolate.png │ ├── world_scroll.png │ └── world_scroll_fragment.png │ ├── misc │ └── bless_render.png │ ├── mob_effect │ ├── bless_of_moon.png │ ├── broken.png │ ├── confusion.png │ ├── corruption.png │ ├── crescent.png │ ├── crystallization.png │ ├── eidolon_poison.png │ ├── fall_of_moon.png │ ├── forbidden_curse.png │ ├── frostbite.png │ ├── holiness.png │ ├── incantation.png │ ├── laceration.png │ ├── moon_of_vengeance.png │ ├── nature.png │ ├── overheating.png │ ├── paralysis.png │ ├── pressure.png │ ├── stun.png │ ├── tough.png │ ├── tremor.png │ └── warm.png │ ├── models │ └── armor │ │ ├── aurorian_slime_boots.png │ │ ├── aurorian_steel_armor.png │ │ ├── cerulean_armor.png │ │ ├── crystal_rune_armor.png │ │ ├── knight_armor.png │ │ ├── mysterium_armor.png │ │ ├── spectral_armor.png │ │ └── spiked_chestplate.png │ ├── painting │ ├── aurorian_steel.png │ ├── dungeon.png │ ├── keeper.png │ ├── knight.png │ ├── moon.png │ ├── portal.png │ ├── progression.png │ └── slime.png │ └── particle │ ├── magic_purple_0.png │ ├── magic_purple_1.png │ ├── magic_purple_2.png │ ├── magic_purple_3.png │ ├── magic_purple_4.png │ ├── wick_01.png │ ├── wick_02.png │ ├── wick_03.png │ ├── wick_04.png │ └── wick_05.png ├── data └── theaurorian │ ├── loot_tables │ └── chests │ │ ├── aurorian_village_house.json │ │ └── runestone_dungeon.json │ ├── max_shield │ └── shield_test.json │ ├── structures │ ├── ruins │ │ ├── medium_ruins │ │ │ ├── aurorian_forest_memory_loop.nbt │ │ │ ├── aurorian_forest_remains.nbt │ │ │ ├── aurorian_forest_ruined_portal.nbt │ │ │ ├── aurorian_forest_shattered_forest_pillar.nbt │ │ │ ├── aurorian_forest_shattered_pillar.nbt │ │ │ ├── aurorian_forest_shattered_wreath.nbt │ │ │ └── aurorian_forest_spring.nbt │ │ ├── ruins_altar │ │ │ └── ruins_altar.nbt │ │ └── small_ruins │ │ │ ├── small_ruins_1.nbt │ │ │ ├── small_ruins_10.nbt │ │ │ ├── small_ruins_11.nbt │ │ │ ├── small_ruins_12.nbt │ │ │ ├── small_ruins_13.nbt │ │ │ ├── small_ruins_14.nbt │ │ │ ├── small_ruins_15.nbt │ │ │ ├── small_ruins_16.nbt │ │ │ ├── small_ruins_17.nbt │ │ │ ├── small_ruins_18.nbt │ │ │ ├── small_ruins_19.nbt │ │ │ ├── small_ruins_2.nbt │ │ │ ├── small_ruins_20.nbt │ │ │ ├── small_ruins_21.nbt │ │ │ ├── small_ruins_22.nbt │ │ │ ├── small_ruins_3.nbt │ │ │ ├── small_ruins_4.nbt │ │ │ ├── small_ruins_5.nbt │ │ │ ├── small_ruins_6.nbt │ │ │ ├── small_ruins_7.nbt │ │ │ ├── small_ruins_8.nbt │ │ │ └── small_ruins_9.nbt │ ├── runestone_dungeon │ │ ├── part_1.nbt │ │ ├── part_2.nbt │ │ ├── part_3.nbt │ │ ├── part_4.nbt │ │ ├── part_5.nbt │ │ ├── part_6.nbt │ │ ├── part_7.nbt │ │ ├── part_8.nbt │ │ └── part_9.nbt │ └── village │ │ └── set │ │ ├── gate.nbt │ │ ├── village_preset_1.nbt │ │ ├── village_preset_2.nbt │ │ ├── village_preset_3.nbt │ │ ├── village_preset_4.nbt │ │ ├── village_preset_5.nbt │ │ ├── village_preset_6.nbt │ │ ├── village_preset_7.nbt │ │ └── village_preset_8.nbt │ └── worldgen │ ├── structure │ ├── aurorian_village.json │ └── runestone_dungeon.json │ ├── structure_set │ ├── aurorian_village.json │ └── runestone_dungeon.json │ └── template_pool │ ├── aurorian_village │ ├── gate.json │ └── set.json │ └── runestone_dungeon │ ├── part_1.json │ ├── part_2.json │ ├── part_3.json │ ├── part_4.json │ ├── part_5.json │ ├── part_6.json │ ├── part_7.json │ ├── part_8.json │ └── part_9.json ├── pack.mcmeta ├── the_aurorian_logo.png └── theaurorian.mixins.json /README.md: -------------------------------------------------------------------------------- 1 | The Aurorian Reforked 2 | Mod by Sxuuz Glyceryl Mlus XiaoHuNao and Elise’s help! 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPancakeMC/TheAurorian/8e7cc51f12257f3f431494fe5728057ab63d17ba/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_andesite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_barrier_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_barrier_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_coal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_coal_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_coal_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_cobblestone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_copper_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_diamond_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_diorite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_dirt" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_emerald_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_erosive.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_erosive" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_glass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_gold_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_granite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_grass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_grass_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_grass_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_grass_light" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_iron_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_lapis_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_peridotite.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_peridotite" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_redstone_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_steel_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/aurorian_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/aurorian_stone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/bright_moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/bright_moon_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/bright_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/bright_moon_sandstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cerulean_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cerulean_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cerulean_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cerulean_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/chiseled_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/chiseled_rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/crisped_mallow.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/crisped_mallow" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cursed_frost_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cursed_frost_tree_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cursed_frost_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cursed_frost_tree_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cursed_frost_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cursed_frost_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cursed_frost_wood_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cursed_frost_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/curtain_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/curtain_tree_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/curtain_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/curtain_tree_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/curtain_tree_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/curtain_tree_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/curtain_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/curtain_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/curtain_wood_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/curtain_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/cut_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/cut_moon_sandstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_fancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_fancy" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_gate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_glass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_lamp" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/dark_stone_layers.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/dark_stone_layers" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/equinox_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/equinox_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/erosive_cerulean_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/erosive_cerulean_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/erosive_geode_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/erosive_geode_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/erosive_moonstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/erosive_moonstone_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/filthy_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/filthy_ice" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/frost_snow_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/frost_snow_grass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/geode_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/geode_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/ice_calendula.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/ice_calendula" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/indigo_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/indigo_mushroom" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/indigo_mushroom_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/indigo_mushroom_crystal" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/lavender_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/lavender_plant" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/molten_aurorian_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/molten_aurorian_steel" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/molten_cerulean.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/molten_cerulean" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/molten_moonstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/molten_moonstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_castle_rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_frost_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_frost_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_glass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_sand" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_sand_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_sand_river" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_sandstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_temple_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_temple_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_temple_cell_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_temple_cell_gate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_temple_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_temple_gate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_temple_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_temple_lamp" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_torch" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moon_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_water" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moonstone_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moonstone_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/moonstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moonstone_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/mysterium_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/mysterium_wool" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/nebula_blossom_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/nebula_blossom_cluster" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/petunia_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/petunia_plant" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_aurorian_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_aurorian_grass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_equinox_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_equinox_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_lavender_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_lavender_plant" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_moon_frost_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_moon_frost_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_petunia_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_petunia_plant" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/potted_wick_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/potted_wick_grass" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/red_aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/red_aurorian_grass_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/rune_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/rune_crystal" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/rune_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/rune_stone_gate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/rune_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/rune_stone_lamp" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/rune_stone_loot_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/rune_stone_loot_gate" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_tree_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_tree_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_tree_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_tree_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_wood_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_wood_chest" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_wood_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_wood_hanging_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_wood_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_wood_torch" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/silent_wood_wall_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/silent_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/smooth_dark_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/smooth_dark_stone_bricks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/smooth_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/smooth_moon_sandstone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/smooth_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/smooth_rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/transparent_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/transparent_rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/umbra_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/umbra_castle_rune_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/umbra_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/umbra_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/umbra_stone_cracked.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/umbra_stone_cracked" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/umbra_stone_roof_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/umbra_stone_roof_tiles" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/void_candle_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/void_candle_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/void_stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/weeping_willow_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/weeping_willow_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/weeping_willow_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/weeping_willow_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/weeping_willow_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/weeping_willow_wood_sign" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/blockstates/winter_root.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/winter_root" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/aurorian_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/aurorian_diorite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/aurorian_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/aurorian_dirt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/aurorian_erosive.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/aurorian_erosive" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/aurorian_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/aurorian_granite" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/aurorian_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/aurorian_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/bright_moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/bright_moon_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/cerulean_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/cerulean_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/cerulean_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/cerulean_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/cursed_frost_wood_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/stripped_cursed_frost_tree_log" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/cursed_frost_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/cursed_frost_tree_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/curtain_wood_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/stripped_curtain_tree_log" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/curtain_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/curtain_tree_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/dark_stone_fancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/dark_stone_fancy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/dark_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/dark_stone_gate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/dark_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/dark_stone_lamp" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/geode_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/geode_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/molten_aurorian_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/molten_aurorian_steel" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/molten_cerulean.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/molten_cerulean" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/molten_moonstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/molten_moonstone" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moon_sand" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_sand_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moon_sand_river" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moon_sandstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_temple_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moon_temple_gate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_temple_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moon_temple_lamp" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moon_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/moon_water" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moonstone_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moonstone_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/moonstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/moonstone_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/mysterium_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/mysterium_wool" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/rune_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/rune_crystal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/rune_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/rune_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/rune_stone_gate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/rune_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/rune_stone_lamp" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/wall_inventory", 3 | "textures": { 4 | "wall": "theaurorian:block/rune_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/silent_wood_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/silent_tree_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/silent_wood_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/stripped_silent_tree_log" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/silent_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/silent_tree_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/umbra_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/umbra_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "theaurorian:block/void_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/weeping_willow_wood_hanging_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/stripped_weeping_willow_log" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/block/weeping_willow_wood_sign.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "theaurorian:block/weeping_willow_planks" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/absorption_orb.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/absorption_orb" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_andesite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_andesite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_andesite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_andesite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_andesite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_andesite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_andesite_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_bacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_bacon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_barrier_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_barrier_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_beef.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_beef" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_berry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_berry" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_chain.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_chain" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_coal_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_coal_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_coal_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_cobblestone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_cobblestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_cobblestone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_cobblestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_cobblestone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_cobblestone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_cobblestone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_copper_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_cow_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_crafting_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_crafting_table" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_diamond_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_diorite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_diorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_diorite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_diorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_diorite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_diorite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_diorite_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_dirt" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_emerald_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_erosive.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_erosive" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_glass" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_gold_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_granite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_granite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_granite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_granite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_granite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_granite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_granite_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/aurorian_grass" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_grass_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_iron_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_lapis_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_mutton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_mutton" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_peridotite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_peridotite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_peridotite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_peridotite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_peridotite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_peridotite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_peridotite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_peridotite_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_pig_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_pixie_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_pork.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_pork" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_portal_frame_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_portal_frame_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_rabbit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_rabbit" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_rabbit_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_redstone_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_sheep_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_slime_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorian_steel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_steel_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_steel_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_steel_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_steel_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_steel_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_steel_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_villager_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorian_winged_fish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/aurorianite_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/aurorianite_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/bepsi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/bepsi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/blue_tail_wolf_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/blueberry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/blueberry" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/bread_beast_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/bright_moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/bright_moon_sand" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/bright_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/bright_moon_sandstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/broken_ox_horn.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/broken_ox_horn" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/candy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/candy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/candy_cane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/candy_cane" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cat_bell.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cat_bell" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cave_dweller_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cerulean_arrow" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cerulean_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cerulean_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cerulean_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_nugget.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/cerulean_nugget" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cerulean_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cerulean_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_dark_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_dark_stone_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_dark_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_dark_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_moon_temple_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_moon_temple_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_moon_temple_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_moon_temple_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/chiseled_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/chiseled_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crisped_mallow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/crisped_mallow" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/crystal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystal_arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/crystal_arrow" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystalline_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/crystalline_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystalline_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/crystalline_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystalline_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/crystalline_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystalline_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/crystalline_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/crystalline_sprite_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_tree_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_tree_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_fence" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cursed_frost_wood_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cursed_frost_wood_trapdoor" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_tree_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_tree_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_fence" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/curtain_wood_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/curtain_wood_trapdoor" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/cut_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/cut_moon_sandstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_amulet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/dark_amulet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_bars.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/dark_stone_bars" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_fancy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_fancy" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_gate_keyhole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_gate_keyhole" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_glass" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/dark_stone_key" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_lamp" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_layers.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_layers" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dark_stone_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dark_stone_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/developer_gift.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/developer_gift" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/disturbed_hollow_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/dungeon_locator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/dungeon_locator" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/equinox_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/equinox_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_copper_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_diamond_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_emerald_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_gold_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_iron_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_lapis_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_aurorian_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_aurorian_redstone_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_cerulean_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_cerulean_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_geode_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_geode_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/erosive_moonstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/erosive_moonstone_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/filthy_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/filthy_ice" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/flower_leech_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/forgotten_magic_book_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/geode_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/geode_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/giant_crystal_spider_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/gingerbread_man.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/gingerbread_man" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/hypha_walking_mushroom_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/ice_calendula.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/ice_calendula" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/icefield_deer_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/indigo_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/indigo_mushroom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/indigo_mushroom_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/indigo_mushroom_crystal" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/knight_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/knight_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/knight_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/knight_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/knight_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/knight_leggings" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lavender" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender_bread.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lavender_bread" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/lavender_plant" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender_salad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lavender_salad" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lavender_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lavender_tea.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lavender_tea" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/light_aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/light_aurorian_grass_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/lock_picks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/lock_picks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_steel_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_steel_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_steel_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_steel_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_steel_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_steel_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_aurorian_steel_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_aurorian_steel_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_cerulean_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_cerulean_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_cerulean_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_cerulean_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_cerulean_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_cerulean_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_cerulean_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_cerulean_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_crystalline_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_crystalline_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_crystalline_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_crystalline_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_crystalline_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_crystalline_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_crystalline_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_crystalline_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_moon_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_moon_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_moon_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_moon_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_moon_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_moon_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/luminous_moon_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/luminous_moon_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_acolyte_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_fish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/moon_fish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_fish_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_glass" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_glass_pane.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/moon_glass" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_queen_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_sand" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_sand_river.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_sand_river" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_sandstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_shuriken.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/moon_shuriken" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_cell_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_cell_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_cell_gate_keyhole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_cell_gate_keyhole" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_gate_keyhole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_gate_keyhole" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/moon_temple_key" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_lamp" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_temple_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_temple_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moon_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/moon_torch" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonlight_knight_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/moonstone_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moonstone_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/moonstone_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/moonstone_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moonstone_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/moonstone_shovel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/moonstone_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/moonstone_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/mysterium_wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/mysterium_wool" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/petunia_plant.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/petunia_plant" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/petunia_tea.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/petunia_tea" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/plant_fiber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/plant_fiber" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/queens_chipper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/queens_chipper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/raw_cerulean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/raw_cerulean" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/raw_moonstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/raw_moonstone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/red_aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/red_aurorian_grass_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/red_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/red_book" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/red_book_ring.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/red_book_ring" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rock_hammer_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_crystal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_crystal" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_spider_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_bars.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/rune_stone_bars" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_gate_keyhole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_gate_keyhole" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_key.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/rune_stone_key" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_lamp" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_loot_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_loot_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_loot_gate_keyhole.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_loot_gate_keyhole" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_pillar" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_blaze.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/runestone_blaze" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/runestone_ice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_keeper_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_life.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/runestone_life" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_light.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/runestone_light" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/runestone_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/runestone_water" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/sashimi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/sashimi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/scrapper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/scrapper" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_campfire.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/silent_campfire" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_tree_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_tree_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_tree_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_tree_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/silent_wood_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_fence" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/silent_wood_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silent_wood_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/silent_wood_trapdoor" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silk_berry.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/silk_berry" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silk_berry_jam.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/silk_berry_jam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/silk_berry_tea.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/silk_berry_tea" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_aurorian_peridotite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_aurorian_peridotite" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_aurorian_peridotite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_aurorian_peridotite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_aurorian_peridotite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_aurorian_peridotite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_aurorian_peridotite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_aurorian_peridotite_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_dark_stone_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_dark_stone_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_dark_stone_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_dark_stone_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_moon_sandstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_moon_sandstone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_moon_temple_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_moon_temple_brick_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_moon_temple_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_moon_temple_bricks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/smooth_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/smooth_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/snow_aurorian_grass_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/snow_aurorian_grass_block" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/snow_tundra_giant_crab_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/soulless_flesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/soulless_flesh" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spectral_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/spectral_boots" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spectral_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/spectral_helmet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spectral_silk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/spectral_silk" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spider_mother_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spiderling_crystal_shell_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spiderling_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spiderling_wall_climber_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/spirit_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/sticky_spiker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/sticky_spiker" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/strange_meat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/strange_meat" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_cursed_frost_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_cursed_frost_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_cursed_frost_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_cursed_frost_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_curtain_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_curtain_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_curtain_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_curtain_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_silent_tree_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_silent_tree_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_silent_tree_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_silent_tree_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_weeping_willow_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_weeping_willow_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/stripped_weeping_willow_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/stripped_weeping_willow_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/tea_cup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/tea_cup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/tong_scorpion_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/transparent_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/transparent_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/transparent_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/transparent_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/transparent_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/transparent_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/transparent_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/transparent_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/trophy_keeper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/trophy_keeper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/tslat_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/tslat_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_castle_rune_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_castle_rune_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_castle_rune_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_castle_rune_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_ingot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/umbra_ingot" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/umbra_pickaxe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_scrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/umbra_scrap" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_cracked.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_cracked" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_cracked_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_cracked_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_cracked_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_cracked_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_cracked_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_cracked_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_roof_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_roof_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_roof_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_roof_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_roof_tiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_roof_tiles" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_roof_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_roof_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_stone_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/umbra_stone_wall" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/umbra_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "theaurorian:item/umbra_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/undead_knight_spawn_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_andesite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_andesite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_andesite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_andesite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_cobblestone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_cobblestone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_cobblestone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_cobblestone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_diorite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_diorite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_diorite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_diorite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_granite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_granite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_granite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_granite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_peridotite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_peridotite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_peridotite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_peridotite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_steel_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_steel_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_steel_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_steel_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_aurorian_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_aurorian_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_cerulean_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_cerulean_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_cerulean_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_cerulean_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_chiseled_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_chiseled_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_crystalline_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_crystalline_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_crystalline_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_crystalline_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_cursed_frost_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_cursed_frost_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_cursed_frost_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_cursed_frost_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_curtain_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_curtain_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_curtain_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_curtain_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_aurorian_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_aurorian_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_aurorian_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_aurorian_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_cerulean_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_cerulean_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_cerulean_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_cerulean_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_crystalline_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_crystalline_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_moon_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_moon_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_luminous_moon_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_luminous_moon_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_moon_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_moon_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_moon_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_moon_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_silent_wood_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_silent_wood_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_silent_wood_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_silent_wood_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_aurorian_peridotite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_aurorian_peridotite_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_aurorian_peridotite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_aurorian_peridotite_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_dark_stone_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_dark_stone_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_dark_stone_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_dark_stone_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_moon_temple_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_moon_temple_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_moon_temple_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_moon_temple_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_smooth_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_smooth_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_transparent_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_transparent_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_transparent_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_transparent_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_castle_rune_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_castle_rune_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_castle_rune_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_castle_rune_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_cracked_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_cracked_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_cracked_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_cracked_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_roof_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_roof_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_roof_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_roof_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_umbra_stone_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_umbra_stone_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_weeping_willow_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_weeping_willow_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/vertical_weeping_willow_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/vertical_weeping_willow_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/void_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/void_stone" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/webbing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/webbing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_fence" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_planks" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_slab" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_stairs" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_trapdoor" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/weeping_willow_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/weeping_willow_wood" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/white_chocolate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/white_chocolate" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/wick_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/wick_grass" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/winter_root.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:block/winter_root" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/theaurorian/models/item/world_scroll.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "theaurorian:item/world_scroll" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/blocks/chests/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:silent_wood_chest" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/entity_types/bosses.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#theaurorian:aurorian_boss" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/rods/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:silent_wood_stick" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/forge/tags/items/tools/bows.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:silent_wood_bow", 4 | "theaurorian:keepers_bow" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/beds.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:mysterium_wool_bed" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/climbable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:silent_wood_ladder" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_coal_ore" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_copper_ore", 4 | "theaurorian:erosive_aurorian_copper_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:lavender_crop", 4 | "theaurorian:silk_berry_crop" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/diamond_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_diamond_ore", 4 | "theaurorian:erosive_aurorian_diamond_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#theaurorian:aurorian_grass_block", 4 | "theaurorian:aurorian_dirt" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/emerald_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_emerald_ore", 4 | "theaurorian:erosive_aurorian_emerald_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/fall_damage_resetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:blueberry_bush" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_gold_ore", 4 | "theaurorian:erosive_aurorian_gold_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/ice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:filthy_ice" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_iron_ore", 4 | "theaurorian:erosive_aurorian_iron_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/lapis_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_lapis_ore", 4 | "theaurorian:erosive_aurorian_lapis_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#theaurorian:aurorian_planks" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/redstone_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_redstone_ore", 4 | "theaurorian:erosive_aurorian_redstone_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:moon_sand", 4 | "theaurorian:moon_sand_river", 5 | "theaurorian:bright_moon_sand" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/snow_layer_cannot_survive_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:filthy_ice" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/sword_efficient.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:blueberry_bush" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:mysterium_wool" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/fluids/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:moon_water_still", 4 | "theaurorian:moon_water_flowing" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/arrows.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:cerulean_arrow", 4 | "theaurorian:crystal_arrow" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/damage_type/corruption.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "corruption", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/aurorian_pixie.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/aurorian_pixie" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/aurorian_villager.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/aurorian_villager" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/blue_tail_wolf.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/blue_tail_wolf" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/bread_beast.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/bread_beast" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/cave_dweller.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/cave_dweller" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/flower_leech.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/flower_leech" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/forgotten_magic_book.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/forgotten_magic_book" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/giant_crystal_spider.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/giant_crystal_spider" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/hypha_walking_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/hypha_walking_mushroom" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/icefield_deer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/icefield_deer" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/moonlight_knight.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/moonlight_knight" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/rock_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/rock_hammer" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/rune_spider.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/rune_spider" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/snow_tundra_giant_crab.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/snow_tundra_giant_crab" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/spiderling_crystal_shell.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/spiderling_crystal_shell" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/spiderling_wall_climber.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/spiderling_wall_climber" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/loot_tables/entities/tong_scorpion.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:entity", 3 | "random_sequence": "theaurorian:entities/tong_scorpion" 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/blocks/aurorian_light_plant_may_place_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:moon_sand" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/blocks/aurorian_sand_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:moon_sand" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/entity_types/alerted_by_blue_tail_wolf.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:wolf", 4 | "theaurorian:blue_tail_wolf" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/items/is_mythical.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:sleeping_black_tea" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/worldgen/biome/has_ruins_altar.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "theaurorian:aurorian_forest", 4 | "theaurorian:aurorian_forest_hill" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/tags/worldgen/structure/moon_temple.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "theaurorian:moon_temple", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_memory_loop.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_memory_loop", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_remains.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_remains", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_ruined_portal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_ruined_portal", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_shattered_forest_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_shattered_forest_pillar", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_shattered_pillar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_shattered_pillar", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_shattered_wreath.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_shattered_wreath", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/aurorian_forest_spring.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:aurorian_forest_spring", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/filthy_freeze_top_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:filthy_freeze_top_layer", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/random_urn.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:random_urn", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_1", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_10.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_10", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_11.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_11", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_12", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_13.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_13", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_14.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_14", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_15.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_15", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_16.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_16", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_17.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_17", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_18.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_18", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_19.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_19", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_2", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_20.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_20", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_21.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_21", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_22.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_22", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_3", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_4", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_5", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_6", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_7", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_8.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_8", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/configured_feature/small_ruins_9.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "theaurorian:small_ruins_9", 3 | "config": {} 4 | } -------------------------------------------------------------------------------- /src/generated/resources/data/theaurorian/worldgen/placed_feature/random_urns.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "theaurorian:random_urn", 3 | "placement": [] 4 | } -------------------------------------------------------------------------------- /src/main/java/cn/teampancake/theaurorian/api/IRune.java: -------------------------------------------------------------------------------- 1 | package cn.teampancake.theaurorian.api; 2 | 3 | public interface IRune { 4 | } 5 | -------------------------------------------------------------------------------- /src/main/java/cn/teampancake/theaurorian/common/blocks/IRiversidePlant.java: -------------------------------------------------------------------------------- 1 | package cn.teampancake.theaurorian.common.blocks; 2 | 3 | public interface IRiversidePlant { 4 | } -------------------------------------------------------------------------------- /src/main/java/cn/teampancake/theaurorian/common/blocks/base/ISimpleBlockItem.java: -------------------------------------------------------------------------------- 1 | package cn.teampancake.theaurorian.common.blocks.base; 2 | 3 | public interface ISimpleBlockItem { 4 | } -------------------------------------------------------------------------------- /src/main/java/cn/teampancake/theaurorian/common/entities/phase/keeper/SoulSiphonPhase.java: -------------------------------------------------------------------------------- 1 | package cn.teampancake.theaurorian.common.entities.phase.keeper; 2 | 3 | public class SoulSiphonPhase { 4 | } 5 | -------------------------------------------------------------------------------- /src/main/java/cn/teampancake/theaurorian/common/items/developer/IDeveloperItem.java: -------------------------------------------------------------------------------- 1 | package cn.teampancake.theaurorian.common.items.developer; 2 | 3 | public interface IDeveloperItem { 4 | 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/blockstates/moon_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/moon_gem" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/blockstates/urn.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "theaurorian:block/urn" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/alchemy_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/alchemy_table" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/astrology_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/astrology_table" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/aurorian_farm_tile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_farm_tile" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/aurorian_furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_furnace" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/aurorian_furnace_chimney.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_furnace_chimney" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/aurorian_lily_pad.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_lily_pad" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/aurorian_water_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/aurorian_water_mushroom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/dreamscape_pistil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/dreamscape_pistil" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/frost_tears_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/frost_tears_flower" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/indigo_mushroom_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/indigo_mushroom_block_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/indigo_mushroom_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/indigo_mushroom_stem_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/moon_gem.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moon_gem" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/moonlight_forge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/moonlight_forge" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/relic_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/relic_table" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/models/item/urn.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "theaurorian:block/urn" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/aurorian_portal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/molten_aurorian_steel_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/molten_cerulean_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/molten_moonstone_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 3 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/moon_water.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/moon_water_flowing.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/mystical_barrier.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/mystical_barrier_out.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/block/silent_campfire_fire.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/absorption_orb.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_crystal.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "interpolate": true, 4 | "frametime": 6 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_axe.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_boots.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_chestplate.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_helmet.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_hoe.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_leggings.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_nugget.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_pickaxe.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_shovel.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/theaurorian/textures/item/aurorian_steel_sword.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 4 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": { 4 | "text": "${mod_id} resources" 5 | }, 6 | "pack_format": 15 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/the_aurorian_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeamPancakeMC/TheAurorian/8e7cc51f12257f3f431494fe5728057ab63d17ba/src/main/resources/the_aurorian_logo.png --------------------------------------------------------------------------------