├── .github └── workflows │ ├── gradle_build.yml │ ├── release.yml │ └── wiki_deploy.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── TODO.md ├── codeformat └── HEADER ├── datagen └── make_recipe_unlock.mjs ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── amethyst_lantern.png ├── azalea_wood.png ├── bench.png ├── biome │ └── lavender_plains.png ├── blackboards.png ├── braziers.png ├── burnt_vine.png ├── calcite_and_tuff_variants.png ├── chandeliers.png ├── copper_hopper.png ├── copper_sulfate.png ├── daffodils.png ├── flower_pot_and_wall_lantern.png ├── glassboard.png ├── gui │ └── painter_palette.png ├── in_world_books.png ├── jacaranda_wood.png ├── lavender.png ├── leash_tweaks.png ├── nether_brick_fence_gate.png ├── pet_beds.png ├── placeable_pumpkin_pie.png ├── polished_basalt_wall.png ├── render │ ├── azalea │ │ ├── flowering_log.png │ │ ├── flowering_wood.png │ │ ├── log.png │ │ ├── planks.png │ │ ├── stripped_log.png │ │ ├── stripped_wood.png │ │ └── wood.png │ ├── brazier.png │ ├── burnt_vine.png │ ├── copper_sulfate_brazier.png │ ├── copper_sulfate_campfire.png │ ├── copper_sulfate_lantern.png │ ├── daffodil.png │ ├── item │ │ ├── painter_palette.png │ │ └── painter_palette_empty.png │ ├── jacaranda │ │ ├── budding_leaves.png │ │ ├── flowering_leaves.png │ │ ├── leaves.png │ │ ├── log.png │ │ ├── planks.png │ │ ├── stripped_log.png │ │ ├── stripped_wood.png │ │ └── wood.png │ ├── lavender.png │ ├── lit_brazier.png │ ├── oak_shelf.png │ ├── potted │ │ ├── daffodil.png │ │ └── lavender.png │ ├── redstone_lantern.png │ ├── redstone_lantern │ │ ├── basic_connectivity.png │ │ ├── emit_direction.png │ │ └── wall_connectivity.png │ ├── redstone_lantern_off.png │ ├── sawmill.png │ ├── soul_brazier.png │ └── wind_chime.png ├── sawmill_and_stumps.png ├── shelves.png ├── sign_post.png ├── sleeping_bags.png ├── small_log_piles.png ├── sturdy_stone.png ├── wall_candles.png └── worldgen │ └── features │ ├── fallen_birch_tree.png │ ├── fallen_oak_tree.png │ ├── fallen_spruce_tree.png │ └── way_sign_taiga.png ├── settings.gradle ├── src ├── emi │ └── java │ │ └── dev │ │ └── lambdaurora │ │ └── aurorasdeco │ │ └── hook │ │ ├── EmiHooks.java │ │ └── emi │ │ ├── ActuallyGoodTransformSmithingEmiRecipe.java │ │ ├── AuroraEmiCuttingRecipe.java │ │ ├── AuroraEmiRecipe.java │ │ ├── ExplodingEmiRecipe.java │ │ └── WoodcuttingEmiRecipe.java ├── main │ ├── java │ │ └── dev │ │ │ └── lambdaurora │ │ │ └── aurorasdeco │ │ │ ├── AurorasDeco.java │ │ │ ├── accessor │ │ │ ├── BlockItemAccessor.java │ │ │ └── ItemExtensions.java │ │ │ ├── advancement │ │ │ └── PetUsePetBedCriterion.java │ │ │ ├── blackboard │ │ │ ├── Blackboard.java │ │ │ ├── BlackboardColor.java │ │ │ ├── BlackboardDrawModifier.java │ │ │ └── BlackboardHandler.java │ │ │ ├── block │ │ │ ├── AuroraBlock.java │ │ │ ├── AurorasDecoProperties.java │ │ │ ├── BenchBlock.java │ │ │ ├── BlackboardBlock.java │ │ │ ├── BlackboardPressBlock.java │ │ │ ├── BlockPropertiesInjector.java │ │ │ ├── BookPileBlock.java │ │ │ ├── BrazierBlock.java │ │ │ ├── BurntVineBlock.java │ │ │ ├── ChandelierBlock.java │ │ │ ├── CopperHopperBlock.java │ │ │ ├── CopperSulfateBrazierBlock.java │ │ │ ├── CopperSulfateCampfireBlock.java │ │ │ ├── DirectionalFlowerPotBlock.java │ │ │ ├── ExtendedCandleBlock.java │ │ │ ├── ExtensionType.java │ │ │ ├── FenceLikeWallBlock.java │ │ │ ├── FloweringAzaleaLogBlock.java │ │ │ ├── HangingFlowerPotBlock.java │ │ │ ├── PartType.java │ │ │ ├── PetBedBlock.java │ │ │ ├── PieBlock.java │ │ │ ├── SawmillBlock.java │ │ │ ├── SeatBlock.java │ │ │ ├── ShelfBlock.java │ │ │ ├── SignPostBlock.java │ │ │ ├── SleepingBagBlock.java │ │ │ ├── SmallLogPileBlock.java │ │ │ ├── StumpBlock.java │ │ │ ├── SturdyStoneBlock.java │ │ │ ├── WallCandleBlock.java │ │ │ ├── WindChimeBlock.java │ │ │ ├── behavior │ │ │ │ ├── CopperSulfateBehavior.java │ │ │ │ └── component │ │ │ │ │ └── RandomTickComponent.java │ │ │ ├── big_flower_pot │ │ │ │ ├── BigFlowerPotBlock.java │ │ │ │ ├── BigPottedAzaleaBlock.java │ │ │ │ ├── BigPottedCactusBlock.java │ │ │ │ ├── BigPottedDaffodilBlock.java │ │ │ │ ├── BigPottedNetherWartBlock.java │ │ │ │ ├── BigPottedProxyBlock.java │ │ │ │ ├── BigPottedSeaPickleBlock.java │ │ │ │ ├── BigPottedSweetBerryBushBlock.java │ │ │ │ ├── BigStaticFlowerPotBlock.java │ │ │ │ └── PottedPlantType.java │ │ │ ├── entity │ │ │ │ ├── BasicBlockEntity.java │ │ │ │ ├── BenchBlockEntity.java │ │ │ │ ├── BlackboardBlockEntity.java │ │ │ │ ├── BlackboardPressBlockEntity.java │ │ │ │ ├── BookPileBlockEntity.java │ │ │ │ ├── CopperHopperBlockEntity.java │ │ │ │ ├── FilteredHopperBlockEntity.java │ │ │ │ ├── ShelfBlockEntity.java │ │ │ │ ├── SignPostBlockEntity.java │ │ │ │ ├── SwayingBlockEntity.java │ │ │ │ └── WindChimeBlockEntity.java │ │ │ ├── plant │ │ │ │ ├── AuroraFlowerBlock.java │ │ │ │ ├── AuroraPlantBlock.java │ │ │ │ ├── DaffodilBlock.java │ │ │ │ ├── DuckweedBlock.java │ │ │ │ └── LavenderBlock.java │ │ │ ├── sapling │ │ │ │ └── JacarandaSaplingGenerator.java │ │ │ └── state │ │ │ │ └── CustomStateManagerBuilder.java │ │ │ ├── client │ │ │ ├── AurorasDecoClient.java │ │ │ ├── BlackboardTexture.java │ │ │ ├── RenderRule.java │ │ │ ├── Wind.java │ │ │ ├── model │ │ │ │ ├── AuroraUnbakedModel.java │ │ │ │ ├── BakedBenchModel.java │ │ │ │ ├── BakedBigFlowerPotModel.java │ │ │ │ ├── BakedBlackboardModel.java │ │ │ │ ├── BakedGlassboardModel.java │ │ │ │ ├── BakedHangingFlowerPotModel.java │ │ │ │ ├── BakedSignPostModel.java │ │ │ │ ├── BakedVariantModel.java │ │ │ │ ├── RestModelManager.java │ │ │ │ ├── UnbakedBenchModel.java │ │ │ │ ├── UnbakedBlackboardModel.java │ │ │ │ ├── UnbakedForwardingModel.java │ │ │ │ ├── UnbakedGlassboardModel.java │ │ │ │ └── UnbakedVariantModel.java │ │ │ ├── particle │ │ │ │ └── LavenderPetalParticle.java │ │ │ ├── renderer │ │ │ │ ├── BlackboardItemRenderer.java │ │ │ │ ├── BlackboardPressBlockEntityRenderer.java │ │ │ │ ├── BookPileEntityRenderer.java │ │ │ │ ├── FakeLeashKnotEntityRenderer.java │ │ │ │ ├── SeatEntityRenderer.java │ │ │ │ ├── ShelfBlockEntityRenderer.java │ │ │ │ ├── SignPostBlockEntityRenderer.java │ │ │ │ ├── SwayingBlockEntityRenderer.java │ │ │ │ └── WindChimeBlockEntityRenderer.java │ │ │ ├── screen │ │ │ │ ├── CopperHopperScreen.java │ │ │ │ ├── PainterPaletteScreen.java │ │ │ │ ├── SawmillScreen.java │ │ │ │ ├── ShelfScreen.java │ │ │ │ └── SignPostEditScreen.java │ │ │ └── tooltip │ │ │ │ ├── BlackboardTooltipComponent.java │ │ │ │ └── PainterPaletteTooltipComponent.java │ │ │ ├── entity │ │ │ ├── FakeLeashKnotEntity.java │ │ │ ├── SeatEntity.java │ │ │ └── goal │ │ │ │ ├── CatSleepInPetBedGoal.java │ │ │ │ ├── SleepInPetBedGoal.java │ │ │ │ └── TameableSleepInPetBedGoal.java │ │ │ ├── hook │ │ │ └── LBGHooks.java │ │ │ ├── item │ │ │ ├── BlackboardItem.java │ │ │ ├── DuckweedItem.java │ │ │ ├── PainterPaletteItem.java │ │ │ ├── SeatRestItem.java │ │ │ ├── SignPostItem.java │ │ │ └── group │ │ │ │ ├── ItemTree.java │ │ │ │ ├── ItemTreeGroupNode.java │ │ │ │ ├── ItemTreeItemNode.java │ │ │ │ └── ItemTreeNode.java │ │ │ ├── mixin │ │ │ ├── ServerAdvancementLoaderMixin.java │ │ │ ├── SimpleRegistryAccessor.java │ │ │ ├── StateManagerBuilderAccessor.java │ │ │ ├── TransformSmithingRecipeAccessor.java │ │ │ ├── block │ │ │ │ ├── AbstractBlockAccessor.java │ │ │ │ ├── BedBlockMixin.java │ │ │ │ ├── BlockAccessor.java │ │ │ │ ├── BlockMixin.java │ │ │ │ ├── BlockSettingsAccessor.java │ │ │ │ ├── CandleBlockMixin.java │ │ │ │ ├── FlowerPotBlockMixin.java │ │ │ │ ├── HopperBlockEntityMixin.java │ │ │ │ ├── LanternBlockMixin.java │ │ │ │ ├── LockableContainerBlockEntityAccessor.java │ │ │ │ ├── PistonBlockEntityMixin.java │ │ │ │ ├── PistonBlockMixin.java │ │ │ │ ├── RedstoneWireBlockMixin.java │ │ │ │ └── VineBlockAccessor.java │ │ │ ├── client │ │ │ │ ├── BedBlockClientMixin.java │ │ │ │ ├── BlockDustParticleFactoryMixin.java │ │ │ │ ├── BlockStateParticleEffectAccessor.java │ │ │ │ ├── ClientRecipeBookMixin.java │ │ │ │ ├── MinecraftClientMixin.java │ │ │ │ ├── MobEntityRendererAccessor.java │ │ │ │ ├── ModelLoaderAccessor.java │ │ │ │ ├── MouseMixin.java │ │ │ │ ├── SmithingScreenMixin.java │ │ │ │ └── TranslationStorageMixin.java │ │ │ ├── entity │ │ │ │ ├── ArmorStandEntityMixin.java │ │ │ │ ├── CatEntityMixin.java │ │ │ │ ├── FoxEntityAccessor.java │ │ │ │ ├── ItemFrameEntityMixin.java │ │ │ │ ├── LivingEntityMixin.java │ │ │ │ ├── MobEntityAccessor.java │ │ │ │ ├── ParrotEntityMixin.java │ │ │ │ ├── ServerPlayerEntityMixin.java │ │ │ │ ├── SitGoalMixin.java │ │ │ │ ├── SleepTaskMixin.java │ │ │ │ └── WolfEntityMixin.java │ │ │ ├── item │ │ │ │ ├── BlockItemMixin.java │ │ │ │ ├── FlintAndSteelItemMixin.java │ │ │ │ ├── HoneycombItemMixin.java │ │ │ │ ├── ItemMixin.java │ │ │ │ ├── LeadItemMixin.java │ │ │ │ └── ShovelItemMixin.java │ │ │ └── world │ │ │ │ ├── ChunkGeneratorAccessor.java │ │ │ │ ├── FoliagePlacerTypeAccessor.java │ │ │ │ ├── MultiNoiseBiomeSourceParameterListMixin.java │ │ │ │ ├── OverworldBiomeParametersMixin.java │ │ │ │ └── VegetationConfiguredFeaturesMixin.java │ │ │ ├── recipe │ │ │ ├── ActuallyGoodTransformSmithingRecipe.java │ │ │ ├── BlackboardCloneRecipe.java │ │ │ ├── ExplodingRecipe.java │ │ │ └── WoodcuttingRecipe.java │ │ │ ├── registry │ │ │ ├── AurorasDecoBiomes.java │ │ │ ├── AurorasDecoEntities.java │ │ │ ├── AurorasDecoPackets.java │ │ │ ├── AurorasDecoParticles.java │ │ │ ├── AurorasDecoPlants.java │ │ │ ├── AurorasDecoRegistry.java │ │ │ ├── AurorasDecoScreenHandlers.java │ │ │ ├── AurorasDecoSounds.java │ │ │ ├── AurorasDecoTags.java │ │ │ ├── Registrar.java │ │ │ ├── SignData.java │ │ │ └── WoodType.java │ │ │ ├── resource │ │ │ ├── AurorasDecoPack.java │ │ │ ├── Datagen.java │ │ │ ├── ModTagReader.java │ │ │ └── datagen │ │ │ │ ├── AdvancementDatagen.java │ │ │ │ ├── BlockStateBuilder.java │ │ │ │ ├── DynamicLang.java │ │ │ │ ├── ModelBuilder.java │ │ │ │ ├── MultipartBlockStateBuilder.java │ │ │ │ ├── MultipartOr.java │ │ │ │ ├── RecipeDatagen.java │ │ │ │ └── StateModel.java │ │ │ ├── screen │ │ │ ├── CopperHopperScreenHandler.java │ │ │ ├── NestedScreenHandler.java │ │ │ ├── PainterPaletteScreenHandler.java │ │ │ ├── SawmillScreenHandler.java │ │ │ ├── ShelfScreenHandler.java │ │ │ └── slot │ │ │ │ ├── BlackboardToolSlot.java │ │ │ │ ├── ColorSlot.java │ │ │ │ └── LockedSlot.java │ │ │ ├── tooltip │ │ │ ├── BlackboardTooltipData.java │ │ │ └── PainterPaletteTooltipData.java │ │ │ ├── util │ │ │ ├── AuroraUtil.java │ │ │ ├── ColorUtil.java │ │ │ ├── CustomStateBuilder.java │ │ │ ├── Derivator.java │ │ │ ├── MapUtil.java │ │ │ └── math │ │ │ │ ├── Float2FloatFunction.java │ │ │ │ ├── SmoothNoise.java │ │ │ │ └── TriangularDistribution.java │ │ │ └── world │ │ │ └── gen │ │ │ ├── DynamicWorldGen.java │ │ │ ├── WorldGenUtils.java │ │ │ ├── feature │ │ │ ├── AquaticSurfacePatchFeature.java │ │ │ ├── AurorasDecoFeatures.java │ │ │ ├── AurorasDecoTreeConfiguredFeatures.java │ │ │ ├── AurorasDecoVegetationPlacedFeatures.java │ │ │ ├── FallenTreeFeature.java │ │ │ ├── PlacedFeatureMetadata.java │ │ │ ├── SimplePlantFeature.java │ │ │ ├── WaySignFeature.java │ │ │ └── config │ │ │ │ └── FallenTreeFeatureConfig.java │ │ │ └── foliage │ │ │ └── JacarandaFoliagePlacer.java │ └── resources │ │ ├── assets │ │ ├── aurorasdeco │ │ │ ├── assets.md │ │ │ ├── aurorasdeco │ │ │ │ └── render_rules │ │ │ │ │ ├── book.json │ │ │ │ │ ├── enchanted_book.json │ │ │ │ │ └── writable_book.json │ │ │ ├── bettergrass │ │ │ │ ├── data │ │ │ │ │ ├── azalea_fence.json │ │ │ │ │ ├── bench.json │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── default.json │ │ │ │ │ ├── flower.json │ │ │ │ │ ├── jacaranda_fence.json │ │ │ │ │ ├── pumpkin_pie.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── shelf.json │ │ │ │ │ ├── small_log_pile.json │ │ │ │ │ ├── stump.json │ │ │ │ │ ├── wall.json │ │ │ │ │ ├── wall_candle.json │ │ │ │ │ └── wind_chime.json │ │ │ │ └── states │ │ │ │ │ ├── azalea_door.json │ │ │ │ │ ├── azalea_fence.json │ │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ ├── big_flower_pot │ │ │ │ │ ├── bamboo.json │ │ │ │ │ └── tater.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── burnt_vine.json │ │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ │ ├── chalkboard.json │ │ │ │ │ ├── copper_hopper.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── glassboard.json │ │ │ │ │ ├── jacaranda_door.json │ │ │ │ │ ├── jacaranda_fence.json │ │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ │ ├── potted │ │ │ │ │ ├── daffodil.json │ │ │ │ │ └── lavender.json │ │ │ │ │ ├── pumpkin_pie.json │ │ │ │ │ ├── redstone_lantern.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── small_log_pile │ │ │ │ │ └── oak.json │ │ │ │ │ ├── soul_brazier.json │ │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ │ ├── wall_black_candle.json │ │ │ │ │ ├── wall_blue_candle.json │ │ │ │ │ ├── wall_brown_candle.json │ │ │ │ │ ├── wall_candle.json │ │ │ │ │ ├── wall_cyan_candle.json │ │ │ │ │ ├── wall_gray_candle.json │ │ │ │ │ ├── wall_green_candle.json │ │ │ │ │ ├── wall_light_blue_candle.json │ │ │ │ │ ├── wall_light_gray_candle.json │ │ │ │ │ ├── wall_lime_candle.json │ │ │ │ │ ├── wall_magenta_candle.json │ │ │ │ │ ├── wall_orange_candle.json │ │ │ │ │ ├── wall_pink_candle.json │ │ │ │ │ ├── wall_purple_candle.json │ │ │ │ │ ├── wall_red_candle.json │ │ │ │ │ ├── wall_white_candle.json │ │ │ │ │ ├── wall_yellow_candle.json │ │ │ │ │ ├── waxed_blackboard.json │ │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ │ ├── waxed_glassboard.json │ │ │ │ │ └── wind_chime.json │ │ │ ├── blockstates │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_door.json │ │ │ │ ├── azalea_fence.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_hanging_sign.json │ │ │ │ ├── azalea_log.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ ├── azalea_wall_hanging_sign.json │ │ │ │ ├── azalea_wall_sign.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── big_flower_pot.json │ │ │ │ ├── big_flower_pot │ │ │ │ │ ├── azalea.json │ │ │ │ │ ├── bamboo.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── cactus.json │ │ │ │ │ ├── crimson_fungus.json │ │ │ │ │ ├── crimson_roots.json │ │ │ │ │ ├── floral_flair │ │ │ │ │ │ ├── spiked_tulip.json │ │ │ │ │ │ └── stonnete.json │ │ │ │ │ ├── flowering_azalea.json │ │ │ │ │ ├── nether_sprouts.json │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── sea_pickle.json │ │ │ │ │ ├── small_dripleaf.json │ │ │ │ │ ├── tater.json │ │ │ │ │ ├── warped_fungus.json │ │ │ │ │ ├── warped_roots.json │ │ │ │ │ └── wither_rose.json │ │ │ │ ├── blackboard.json │ │ │ │ ├── blackboard_press.json │ │ │ │ ├── blackboard_press │ │ │ │ │ ├── press_plate.json │ │ │ │ │ └── screw.json │ │ │ │ ├── book_pile.json │ │ │ │ ├── brazier.json │ │ │ │ ├── budding_jacaranda_leaves.json │ │ │ │ ├── burnt_vine.json │ │ │ │ ├── calcite_brick_slab.json │ │ │ │ ├── calcite_brick_stairs.json │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ ├── calcite_bricks.json │ │ │ │ ├── calcite_slab.json │ │ │ │ ├── calcite_stairs.json │ │ │ │ ├── chalkboard.json │ │ │ │ ├── chandelier │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── candle.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── chiseled_calcite_bricks.json │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ ├── copper_hopper.json │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ ├── copper_sulfate_wall_torch.json │ │ │ │ ├── cracked_calcite_bricks.json │ │ │ │ ├── cracked_tuff_bricks.json │ │ │ │ ├── daffodil.json │ │ │ │ ├── duckweed.json │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ ├── flowering_jacaranda_leaves.json │ │ │ │ ├── glassboard.json │ │ │ │ ├── glassboard │ │ │ │ │ ├── glassboard_ld.json │ │ │ │ │ ├── glassboard_ld_center.json │ │ │ │ │ ├── glassboard_ld_horizontal.json │ │ │ │ │ ├── glassboard_ld_inner.json │ │ │ │ │ ├── glassboard_ld_vertical.json │ │ │ │ │ ├── glassboard_lu.json │ │ │ │ │ ├── glassboard_lu_center.json │ │ │ │ │ ├── glassboard_lu_horizontal.json │ │ │ │ │ ├── glassboard_lu_inner.json │ │ │ │ │ ├── glassboard_lu_vertical.json │ │ │ │ │ ├── glassboard_rd.json │ │ │ │ │ ├── glassboard_rd_center.json │ │ │ │ │ ├── glassboard_rd_horizontal.json │ │ │ │ │ ├── glassboard_rd_inner.json │ │ │ │ │ ├── glassboard_rd_vertical.json │ │ │ │ │ ├── glassboard_ru.json │ │ │ │ │ ├── glassboard_ru_center.json │ │ │ │ │ ├── glassboard_ru_horizontal.json │ │ │ │ │ ├── glassboard_ru_inner.json │ │ │ │ │ ├── glassboard_ru_vertical.json │ │ │ │ │ └── waxed │ │ │ │ │ │ ├── glassboard_ld.json │ │ │ │ │ │ ├── glassboard_ld_center.json │ │ │ │ │ │ ├── glassboard_ld_horizontal.json │ │ │ │ │ │ ├── glassboard_ld_inner.json │ │ │ │ │ │ ├── glassboard_ld_vertical.json │ │ │ │ │ │ ├── glassboard_lu.json │ │ │ │ │ │ ├── glassboard_lu_center.json │ │ │ │ │ │ ├── glassboard_lu_horizontal.json │ │ │ │ │ │ ├── glassboard_lu_inner.json │ │ │ │ │ │ ├── glassboard_lu_vertical.json │ │ │ │ │ │ ├── glassboard_rd.json │ │ │ │ │ │ ├── glassboard_rd_center.json │ │ │ │ │ │ ├── glassboard_rd_horizontal.json │ │ │ │ │ │ ├── glassboard_rd_inner.json │ │ │ │ │ │ ├── glassboard_rd_vertical.json │ │ │ │ │ │ ├── glassboard_ru.json │ │ │ │ │ │ ├── glassboard_ru_center.json │ │ │ │ │ │ ├── glassboard_ru_horizontal.json │ │ │ │ │ │ ├── glassboard_ru_inner.json │ │ │ │ │ │ └── glassboard_ru_vertical.json │ │ │ │ ├── hanging_flower_pot.json │ │ │ │ ├── jacaranda_button.json │ │ │ │ ├── jacaranda_door.json │ │ │ │ ├── jacaranda_fence.json │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ ├── jacaranda_hanging_sign.json │ │ │ │ ├── jacaranda_leaves.json │ │ │ │ ├── jacaranda_log.json │ │ │ │ ├── jacaranda_planks.json │ │ │ │ ├── jacaranda_pressure_plate.json │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ ├── jacaranda_sign.json │ │ │ │ ├── jacaranda_slab.json │ │ │ │ ├── jacaranda_stairs.json │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ ├── jacaranda_wall_hanging_sign.json │ │ │ │ ├── jacaranda_wall_sign.json │ │ │ │ ├── jacaranda_wood.json │ │ │ │ ├── lavender.json │ │ │ │ ├── mossy_calcite_brick_slab.json │ │ │ │ ├── mossy_calcite_brick_stairs.json │ │ │ │ ├── mossy_calcite_brick_wall.json │ │ │ │ ├── mossy_calcite_bricks.json │ │ │ │ ├── mossy_deepslate_brick_slab.json │ │ │ │ ├── mossy_deepslate_brick_stairs.json │ │ │ │ ├── mossy_deepslate_brick_wall.json │ │ │ │ ├── mossy_deepslate_bricks.json │ │ │ │ ├── mossy_tuff_brick_slab.json │ │ │ │ ├── mossy_tuff_brick_stairs.json │ │ │ │ ├── mossy_tuff_brick_wall.json │ │ │ │ ├── mossy_tuff_bricks.json │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ ├── pet_bed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── plant_air.json │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ ├── polished_calcite.json │ │ │ │ ├── polished_calcite_slab.json │ │ │ │ ├── polished_calcite_stairs.json │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ ├── polished_tuff.json │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ ├── potted │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ │ └── lavender.json │ │ │ │ ├── pumpkin_pie.json │ │ │ │ ├── redstone_lantern.json │ │ │ │ ├── sawmill.json │ │ │ │ ├── sleeping_bag │ │ │ │ │ └── red.json │ │ │ │ ├── small_log_pile │ │ │ │ │ └── oak.json │ │ │ │ ├── soul_brazier.json │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_jacaranda_log.json │ │ │ │ ├── stripped_jacaranda_wood.json │ │ │ │ ├── stump │ │ │ │ │ └── yttr │ │ │ │ │ │ └── squeeze.json │ │ │ │ ├── sturdy_stone.json │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ ├── tuff_bricks.json │ │ │ │ ├── tuff_slab.json │ │ │ │ ├── tuff_stairs.json │ │ │ │ ├── wall_black_candle.json │ │ │ │ ├── wall_blue_candle.json │ │ │ │ ├── wall_brown_candle.json │ │ │ │ ├── wall_candle.json │ │ │ │ ├── wall_cyan_candle.json │ │ │ │ ├── wall_gray_candle.json │ │ │ │ ├── wall_green_candle.json │ │ │ │ ├── wall_light_blue_candle.json │ │ │ │ ├── wall_light_gray_candle.json │ │ │ │ ├── wall_lime_candle.json │ │ │ │ ├── wall_magenta_candle.json │ │ │ │ ├── wall_orange_candle.json │ │ │ │ ├── wall_pink_candle.json │ │ │ │ ├── wall_purple_candle.json │ │ │ │ ├── wall_red_candle.json │ │ │ │ ├── wall_white_candle.json │ │ │ │ ├── wall_yellow_candle.json │ │ │ │ ├── waxed_blackboard.json │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ ├── waxed_glassboard.json │ │ │ │ └── wind_chime.json │ │ │ ├── icon.png │ │ │ ├── lang │ │ │ │ ├── en_us.json │ │ │ │ ├── fr_ca.json │ │ │ │ ├── fr_fr.json │ │ │ │ └── uk_ua.json │ │ │ ├── lights │ │ │ │ └── item │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── redstone_lantern.json │ │ │ │ │ └── soul_brazier.json │ │ │ ├── materialmaps │ │ │ │ ├── block │ │ │ │ │ ├── amethyst_lantern.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── redstone_lantern.json │ │ │ │ │ └── soul_brazier.json │ │ │ │ └── particle │ │ │ │ │ ├── amethyst_glint.json │ │ │ │ │ ├── copper_sulfate_flame.json │ │ │ │ │ └── copper_sulfate_lava.json │ │ │ ├── materials │ │ │ │ └── warm_glow.json │ │ │ ├── models │ │ │ │ ├── block │ │ │ │ │ ├── azalea │ │ │ │ │ │ ├── button.json │ │ │ │ │ │ ├── button_inventory.json │ │ │ │ │ │ ├── button_pressed.json │ │ │ │ │ │ ├── door │ │ │ │ │ │ │ ├── bottom_left.json │ │ │ │ │ │ │ ├── bottom_left_open.json │ │ │ │ │ │ │ ├── bottom_right.json │ │ │ │ │ │ │ ├── bottom_right_open.json │ │ │ │ │ │ │ ├── top_left.json │ │ │ │ │ │ │ ├── top_left_open.json │ │ │ │ │ │ │ ├── top_right.json │ │ │ │ │ │ │ └── top_right_open.json │ │ │ │ │ │ ├── fence │ │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ │ ├── mossy_post.json │ │ │ │ │ │ │ ├── mossy_side.json │ │ │ │ │ │ │ ├── post.json │ │ │ │ │ │ │ ├── side.json │ │ │ │ │ │ │ ├── snowy_post.json │ │ │ │ │ │ │ └── snowy_side.json │ │ │ │ │ │ ├── fence_gate.json │ │ │ │ │ │ ├── fence_gate_open.json │ │ │ │ │ │ ├── fence_gate_wall.json │ │ │ │ │ │ ├── fence_gate_wall_open.json │ │ │ │ │ │ ├── flowering_log.json │ │ │ │ │ │ ├── flowering_log_horizontal.json │ │ │ │ │ │ ├── flowering_wood.json │ │ │ │ │ │ ├── log.json │ │ │ │ │ │ ├── log_horizontal.json │ │ │ │ │ │ ├── planks.json │ │ │ │ │ │ ├── pressure_plate.json │ │ │ │ │ │ ├── pressure_plate_down.json │ │ │ │ │ │ ├── sign.json │ │ │ │ │ │ ├── slab.json │ │ │ │ │ │ ├── slab_top.json │ │ │ │ │ │ ├── stairs.json │ │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ │ ├── stairs_outer.json │ │ │ │ │ │ ├── stripped_log.json │ │ │ │ │ │ ├── stripped_log_horizontal.json │ │ │ │ │ │ ├── stripped_wood.json │ │ │ │ │ │ ├── trapdoor_bottom.json │ │ │ │ │ │ ├── trapdoor_open.json │ │ │ │ │ │ ├── trapdoor_top.json │ │ │ │ │ │ └── wood.json │ │ │ │ │ ├── big_flower_pot │ │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ │ ├── clay.json │ │ │ │ │ │ ├── crimson_nylium.json │ │ │ │ │ │ ├── gravel.json │ │ │ │ │ │ ├── moss.json │ │ │ │ │ │ ├── mycelium.json │ │ │ │ │ │ ├── potted │ │ │ │ │ │ │ ├── bamboo.json │ │ │ │ │ │ │ └── tater.json │ │ │ │ │ │ ├── sand.json │ │ │ │ │ │ ├── soul_sand.json │ │ │ │ │ │ └── warped_nylium.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── blackboard_press │ │ │ │ │ │ ├── base.json │ │ │ │ │ │ ├── press_plate.json │ │ │ │ │ │ └── screw.json │ │ │ │ │ ├── book_pile.json │ │ │ │ │ ├── brazier │ │ │ │ │ │ ├── brazier.json │ │ │ │ │ │ ├── brazier_lit.json │ │ │ │ │ │ ├── copper_sulfate_brazier_lit.json │ │ │ │ │ │ ├── soul_brazier.json │ │ │ │ │ │ └── soul_brazier_lit.json │ │ │ │ │ ├── burnt_vine.json │ │ │ │ │ ├── calcite │ │ │ │ │ │ ├── brick_slab.json │ │ │ │ │ │ ├── brick_slab_top.json │ │ │ │ │ │ ├── brick_stairs.json │ │ │ │ │ │ ├── brick_stairs_inner.json │ │ │ │ │ │ ├── brick_stairs_outer.json │ │ │ │ │ │ ├── brick_wall_inventory.json │ │ │ │ │ │ ├── brick_wall_post.json │ │ │ │ │ │ ├── brick_wall_side.json │ │ │ │ │ │ ├── brick_wall_side_tall.json │ │ │ │ │ │ ├── bricks.json │ │ │ │ │ │ ├── chiseled_bricks.json │ │ │ │ │ │ ├── cracked_bricks.json │ │ │ │ │ │ ├── mossy_brick_slab.json │ │ │ │ │ │ ├── mossy_brick_slab_top.json │ │ │ │ │ │ ├── mossy_brick_stairs.json │ │ │ │ │ │ ├── mossy_brick_stairs_inner.json │ │ │ │ │ │ ├── mossy_brick_stairs_outer.json │ │ │ │ │ │ ├── mossy_brick_wall_inventory.json │ │ │ │ │ │ ├── mossy_brick_wall_post.json │ │ │ │ │ │ ├── mossy_brick_wall_side.json │ │ │ │ │ │ ├── mossy_brick_wall_side_tall.json │ │ │ │ │ │ ├── mossy_bricks.json │ │ │ │ │ │ ├── polished.json │ │ │ │ │ │ ├── polished_slab.json │ │ │ │ │ │ ├── polished_slab_double.json │ │ │ │ │ │ ├── polished_slab_top.json │ │ │ │ │ │ ├── polished_stairs.json │ │ │ │ │ │ ├── polished_stairs_inner.json │ │ │ │ │ │ ├── polished_stairs_outer.json │ │ │ │ │ │ ├── polished_wall_inventory.json │ │ │ │ │ │ ├── polished_wall_post.json │ │ │ │ │ │ ├── polished_wall_side.json │ │ │ │ │ │ ├── polished_wall_side_tall.json │ │ │ │ │ │ ├── slab.json │ │ │ │ │ │ ├── slab_top.json │ │ │ │ │ │ ├── stairs.json │ │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ │ └── stairs_outer.json │ │ │ │ │ ├── chalkboard.json │ │ │ │ │ ├── chandelier │ │ │ │ │ │ ├── four │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ ├── one │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ ├── three │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ └── two │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ ├── copper_hopper.json │ │ │ │ │ ├── copper_hopper_side.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── copper_sulfate_wall_torch.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── deepslate │ │ │ │ │ │ ├── mossy_brick_slab.json │ │ │ │ │ │ ├── mossy_brick_slab_top.json │ │ │ │ │ │ ├── mossy_brick_stairs.json │ │ │ │ │ │ ├── mossy_brick_stairs_inner.json │ │ │ │ │ │ ├── mossy_brick_stairs_outer.json │ │ │ │ │ │ ├── mossy_brick_wall_inventory.json │ │ │ │ │ │ ├── mossy_brick_wall_post.json │ │ │ │ │ │ ├── mossy_brick_wall_side.json │ │ │ │ │ │ ├── mossy_brick_wall_side_tall.json │ │ │ │ │ │ └── mossy_bricks.json │ │ │ │ │ ├── duckweed.json │ │ │ │ │ ├── glassboard.json │ │ │ │ │ ├── glassboard │ │ │ │ │ │ ├── glassboard_ld.json │ │ │ │ │ │ ├── glassboard_ld_center.json │ │ │ │ │ │ ├── glassboard_ld_horizontal.json │ │ │ │ │ │ ├── glassboard_ld_inner.json │ │ │ │ │ │ ├── glassboard_ld_vertical.json │ │ │ │ │ │ ├── glassboard_lu.json │ │ │ │ │ │ ├── glassboard_lu_center.json │ │ │ │ │ │ ├── glassboard_lu_horizontal.json │ │ │ │ │ │ ├── glassboard_lu_inner.json │ │ │ │ │ │ ├── glassboard_lu_vertical.json │ │ │ │ │ │ ├── glassboard_rd.json │ │ │ │ │ │ ├── glassboard_rd_center.json │ │ │ │ │ │ ├── glassboard_rd_horizontal.json │ │ │ │ │ │ ├── glassboard_rd_inner.json │ │ │ │ │ │ ├── glassboard_rd_vertical.json │ │ │ │ │ │ ├── glassboard_ru.json │ │ │ │ │ │ ├── glassboard_ru_center.json │ │ │ │ │ │ ├── glassboard_ru_horizontal.json │ │ │ │ │ │ ├── glassboard_ru_inner.json │ │ │ │ │ │ ├── glassboard_ru_vertical.json │ │ │ │ │ │ └── waxed │ │ │ │ │ │ │ ├── glassboard_ld.json │ │ │ │ │ │ │ ├── glassboard_ld_center.json │ │ │ │ │ │ │ ├── glassboard_ld_horizontal.json │ │ │ │ │ │ │ ├── glassboard_ld_inner.json │ │ │ │ │ │ │ ├── glassboard_ld_vertical.json │ │ │ │ │ │ │ ├── glassboard_lu.json │ │ │ │ │ │ │ ├── glassboard_lu_center.json │ │ │ │ │ │ │ ├── glassboard_lu_horizontal.json │ │ │ │ │ │ │ ├── glassboard_lu_inner.json │ │ │ │ │ │ │ ├── glassboard_lu_vertical.json │ │ │ │ │ │ │ ├── glassboard_rd.json │ │ │ │ │ │ │ ├── glassboard_rd_center.json │ │ │ │ │ │ │ ├── glassboard_rd_horizontal.json │ │ │ │ │ │ │ ├── glassboard_rd_inner.json │ │ │ │ │ │ │ ├── glassboard_rd_vertical.json │ │ │ │ │ │ │ ├── glassboard_ru.json │ │ │ │ │ │ │ ├── glassboard_ru_center.json │ │ │ │ │ │ │ ├── glassboard_ru_horizontal.json │ │ │ │ │ │ │ ├── glassboard_ru_inner.json │ │ │ │ │ │ │ └── glassboard_ru_vertical.json │ │ │ │ │ ├── hanging_amethyst_lantern.json │ │ │ │ │ ├── hanging_copper_sulfate_lantern.json │ │ │ │ │ ├── hanging_flower_pot_attachment.json │ │ │ │ │ ├── jacaranda │ │ │ │ │ │ ├── budding_leaves.json │ │ │ │ │ │ ├── button.json │ │ │ │ │ │ ├── button_inventory.json │ │ │ │ │ │ ├── button_pressed.json │ │ │ │ │ │ ├── door │ │ │ │ │ │ │ ├── bottom_left.json │ │ │ │ │ │ │ ├── bottom_left_open.json │ │ │ │ │ │ │ ├── bottom_right.json │ │ │ │ │ │ │ ├── bottom_right_open.json │ │ │ │ │ │ │ ├── top_left.json │ │ │ │ │ │ │ ├── top_left_open.json │ │ │ │ │ │ │ ├── top_right.json │ │ │ │ │ │ │ └── top_right_open.json │ │ │ │ │ │ ├── fence │ │ │ │ │ │ │ ├── inventory.json │ │ │ │ │ │ │ ├── mossy_post.json │ │ │ │ │ │ │ ├── mossy_side.json │ │ │ │ │ │ │ ├── post.json │ │ │ │ │ │ │ ├── side.json │ │ │ │ │ │ │ ├── snowy_post.json │ │ │ │ │ │ │ └── snowy_side.json │ │ │ │ │ │ ├── fence_gate.json │ │ │ │ │ │ ├── fence_gate_open.json │ │ │ │ │ │ ├── fence_gate_wall.json │ │ │ │ │ │ ├── fence_gate_wall_open.json │ │ │ │ │ │ ├── flowering_leaves.json │ │ │ │ │ │ ├── leaves.json │ │ │ │ │ │ ├── log.json │ │ │ │ │ │ ├── log_horizontal.json │ │ │ │ │ │ ├── planks.json │ │ │ │ │ │ ├── pressure_plate.json │ │ │ │ │ │ ├── pressure_plate_down.json │ │ │ │ │ │ ├── sapling.json │ │ │ │ │ │ ├── sign.json │ │ │ │ │ │ ├── slab.json │ │ │ │ │ │ ├── slab_top.json │ │ │ │ │ │ ├── stairs.json │ │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ │ ├── stairs_outer.json │ │ │ │ │ │ ├── stripped_log.json │ │ │ │ │ │ ├── stripped_log_horizontal.json │ │ │ │ │ │ ├── stripped_wood.json │ │ │ │ │ │ ├── trapdoor_bottom.json │ │ │ │ │ │ ├── trapdoor_open.json │ │ │ │ │ │ ├── trapdoor_top.json │ │ │ │ │ │ └── wood.json │ │ │ │ │ ├── jar.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ │ ├── nether_brick_fence_gate_open.json │ │ │ │ │ ├── nether_brick_fence_gate_wall.json │ │ │ │ │ ├── nether_brick_fence_gate_wall_open.json │ │ │ │ │ ├── pet_bed │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ └── yellow.json │ │ │ │ │ ├── pie │ │ │ │ │ │ └── pumpkin │ │ │ │ │ │ │ ├── 0.json │ │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ │ └── 3.json │ │ │ │ │ ├── polished_basalt_wall_east_extension.json │ │ │ │ │ ├── polished_basalt_wall_pole.json │ │ │ │ │ ├── polished_basalt_wall_west_extension.json │ │ │ │ │ ├── potted │ │ │ │ │ │ ├── daffodil.json │ │ │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ │ │ └── lavender.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── sleeping_bag │ │ │ │ │ │ └── red │ │ │ │ │ │ │ ├── foot.json │ │ │ │ │ │ │ └── head.json │ │ │ │ │ ├── small_log_pile │ │ │ │ │ │ ├── bamboo │ │ │ │ │ │ │ ├── bottom.json │ │ │ │ │ │ │ ├── double.json │ │ │ │ │ │ │ └── top.json │ │ │ │ │ │ ├── flowering_azalea │ │ │ │ │ │ │ ├── bottom.json │ │ │ │ │ │ │ ├── double.json │ │ │ │ │ │ │ └── top.json │ │ │ │ │ │ └── oak │ │ │ │ │ │ │ ├── bottom.json │ │ │ │ │ │ │ ├── double.json │ │ │ │ │ │ │ └── top.json │ │ │ │ │ ├── stump │ │ │ │ │ │ ├── azalea.json │ │ │ │ │ │ ├── azalea_brown_mushroom.json │ │ │ │ │ │ ├── azalea_red_mushroom.json │ │ │ │ │ │ ├── cherry.json │ │ │ │ │ │ ├── cherry_brown_mushroom.json │ │ │ │ │ │ ├── cherry_red_mushroom.json │ │ │ │ │ │ ├── flowering_azalea.json │ │ │ │ │ │ ├── flowering_azalea_brown_mushroom.json │ │ │ │ │ │ ├── flowering_azalea_red_mushroom.json │ │ │ │ │ │ ├── jacaranda.json │ │ │ │ │ │ ├── jacaranda_brown_mushroom.json │ │ │ │ │ │ └── jacaranda_red_mushroom.json │ │ │ │ │ ├── sturdy_stone.json │ │ │ │ │ ├── template │ │ │ │ │ │ ├── bench_full.json │ │ │ │ │ │ ├── bench_legs.json │ │ │ │ │ │ ├── bench_rest_left.json │ │ │ │ │ │ ├── bench_rest_plank.json │ │ │ │ │ │ ├── bench_rest_right.json │ │ │ │ │ │ ├── bench_seat.json │ │ │ │ │ │ ├── board.json │ │ │ │ │ │ ├── chandelier_four.json │ │ │ │ │ │ ├── chandelier_one.json │ │ │ │ │ │ ├── chandelier_three.json │ │ │ │ │ │ ├── chandelier_two.json │ │ │ │ │ │ ├── log_stump.json │ │ │ │ │ │ ├── log_stump_brown_mushroom.json │ │ │ │ │ │ ├── log_stump_mushroom.json │ │ │ │ │ │ ├── log_stump_red_mushroom.json │ │ │ │ │ │ ├── pet_bed.json │ │ │ │ │ │ ├── shelf_base.json │ │ │ │ │ │ ├── shelf_bottom.json │ │ │ │ │ │ ├── shelf_double.json │ │ │ │ │ │ ├── shelf_top.json │ │ │ │ │ │ ├── sign_post.json │ │ │ │ │ │ ├── sleeping_bag_foot.json │ │ │ │ │ │ ├── sleeping_bag_head.json │ │ │ │ │ │ ├── small_log_pile.json │ │ │ │ │ │ ├── small_log_pile_double.json │ │ │ │ │ │ ├── small_log_pile_top.json │ │ │ │ │ │ ├── stem_stump.json │ │ │ │ │ │ ├── wall_four_candle.json │ │ │ │ │ │ ├── wall_one_candle.json │ │ │ │ │ │ ├── wall_three_candle.json │ │ │ │ │ │ └── wall_two_candle.json │ │ │ │ │ ├── tuff │ │ │ │ │ │ ├── brick_slab.json │ │ │ │ │ │ ├── brick_slab_top.json │ │ │ │ │ │ ├── brick_stairs.json │ │ │ │ │ │ ├── brick_stairs_inner.json │ │ │ │ │ │ ├── brick_stairs_outer.json │ │ │ │ │ │ ├── brick_wall_inventory.json │ │ │ │ │ │ ├── brick_wall_post.json │ │ │ │ │ │ ├── brick_wall_side.json │ │ │ │ │ │ ├── brick_wall_side_tall.json │ │ │ │ │ │ ├── bricks.json │ │ │ │ │ │ ├── chiseled_bricks.json │ │ │ │ │ │ ├── cracked_bricks.json │ │ │ │ │ │ ├── mossy_brick_slab.json │ │ │ │ │ │ ├── mossy_brick_slab_top.json │ │ │ │ │ │ ├── mossy_brick_stairs.json │ │ │ │ │ │ ├── mossy_brick_stairs_inner.json │ │ │ │ │ │ ├── mossy_brick_stairs_outer.json │ │ │ │ │ │ ├── mossy_brick_wall_inventory.json │ │ │ │ │ │ ├── mossy_brick_wall_post.json │ │ │ │ │ │ ├── mossy_brick_wall_side.json │ │ │ │ │ │ ├── mossy_brick_wall_side_tall.json │ │ │ │ │ │ ├── mossy_bricks.json │ │ │ │ │ │ ├── polished.json │ │ │ │ │ │ ├── polished_slab.json │ │ │ │ │ │ ├── polished_slab_double.json │ │ │ │ │ │ ├── polished_slab_top.json │ │ │ │ │ │ ├── polished_stairs.json │ │ │ │ │ │ ├── polished_stairs_inner.json │ │ │ │ │ │ ├── polished_stairs_outer.json │ │ │ │ │ │ ├── polished_wall_inventory.json │ │ │ │ │ │ ├── polished_wall_post.json │ │ │ │ │ │ ├── polished_wall_side.json │ │ │ │ │ │ ├── polished_wall_side_tall.json │ │ │ │ │ │ ├── slab.json │ │ │ │ │ │ ├── slab_top.json │ │ │ │ │ │ ├── stairs.json │ │ │ │ │ │ ├── stairs_inner.json │ │ │ │ │ │ └── stairs_outer.json │ │ │ │ │ ├── wall_candle │ │ │ │ │ │ ├── four │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── one.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ ├── one │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── one.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ ├── three │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── one.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ │ └── two │ │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ │ ├── black_lit.json │ │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ │ ├── blue_lit.json │ │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ │ ├── brown_lit.json │ │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ │ ├── cyan_lit.json │ │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ │ ├── gray_lit.json │ │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ │ ├── green_lit.json │ │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ │ ├── light_blue_lit.json │ │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ │ ├── light_gray_lit.json │ │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ │ ├── lime_lit.json │ │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ │ ├── magenta_lit.json │ │ │ │ │ │ │ ├── normal.json │ │ │ │ │ │ │ ├── normal_lit.json │ │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ │ ├── orange_lit.json │ │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ │ ├── pink_lit.json │ │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ │ ├── purple_lit.json │ │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ │ ├── red_lit.json │ │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ │ ├── white_lit.json │ │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ │ └── yellow_lit.json │ │ │ │ │ ├── waxed_blackboard.json │ │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ │ ├── waxed_glassboard.json │ │ │ │ │ └── wind_chime.json │ │ │ │ └── item │ │ │ │ │ ├── azalea_boat.json │ │ │ │ │ ├── azalea_button.json │ │ │ │ │ ├── azalea_chest_boat.json │ │ │ │ │ ├── azalea_door.json │ │ │ │ │ ├── azalea_fence.json │ │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ │ ├── azalea_hanging_sign.json │ │ │ │ │ ├── azalea_log.json │ │ │ │ │ ├── azalea_planks.json │ │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ │ ├── azalea_sign.json │ │ │ │ │ ├── azalea_slab.json │ │ │ │ │ ├── azalea_stairs.json │ │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ │ ├── azalea_wood.json │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── blackboard_base.json │ │ │ │ │ ├── blackboard_mask.json │ │ │ │ │ ├── blackboard_press.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── budding_jacaranda_leaves.json │ │ │ │ │ ├── calcite_brick_slab.json │ │ │ │ │ ├── calcite_brick_stairs.json │ │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ │ ├── calcite_bricks.json │ │ │ │ │ ├── calcite_slab.json │ │ │ │ │ ├── calcite_stairs.json │ │ │ │ │ ├── chalkboard.json │ │ │ │ │ ├── chalkboard_base.json │ │ │ │ │ ├── chiseled_calcite_bricks.json │ │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ │ ├── copper_hopper.json │ │ │ │ │ ├── copper_sulfate.json │ │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── cracked_calcite_bricks.json │ │ │ │ │ ├── cracked_tuff_bricks.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── duckweed.json │ │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ │ ├── flowering_jacaranda_leaves.json │ │ │ │ │ ├── glassboard.json │ │ │ │ │ ├── glassboard_base.json │ │ │ │ │ ├── jacaranda_boat.json │ │ │ │ │ ├── jacaranda_button.json │ │ │ │ │ ├── jacaranda_chest_boat.json │ │ │ │ │ ├── jacaranda_door.json │ │ │ │ │ ├── jacaranda_fence.json │ │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ │ ├── jacaranda_hanging_sign.json │ │ │ │ │ ├── jacaranda_leaves.json │ │ │ │ │ ├── jacaranda_log.json │ │ │ │ │ ├── jacaranda_planks.json │ │ │ │ │ ├── jacaranda_pressure_plate.json │ │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ │ ├── jacaranda_sign.json │ │ │ │ │ ├── jacaranda_slab.json │ │ │ │ │ ├── jacaranda_stairs.json │ │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ │ ├── jacaranda_wood.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── mossy_calcite_brick_slab.json │ │ │ │ │ ├── mossy_calcite_brick_stairs.json │ │ │ │ │ ├── mossy_calcite_brick_wall.json │ │ │ │ │ ├── mossy_calcite_bricks.json │ │ │ │ │ ├── mossy_deepslate_brick_slab.json │ │ │ │ │ ├── mossy_deepslate_brick_stairs.json │ │ │ │ │ ├── mossy_deepslate_brick_wall.json │ │ │ │ │ ├── mossy_deepslate_bricks.json │ │ │ │ │ ├── mossy_tuff_brick_slab.json │ │ │ │ │ ├── mossy_tuff_brick_stairs.json │ │ │ │ │ ├── mossy_tuff_brick_wall.json │ │ │ │ │ ├── mossy_tuff_bricks.json │ │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ │ ├── painter_palette.json │ │ │ │ │ ├── pet_bed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ │ ├── polished_calcite.json │ │ │ │ │ ├── polished_calcite_slab.json │ │ │ │ │ ├── polished_calcite_stairs.json │ │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ │ ├── polished_tuff.json │ │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── small_log_pile │ │ │ │ │ └── oak.json │ │ │ │ │ ├── soul_brazier.json │ │ │ │ │ ├── special │ │ │ │ │ ├── book.json │ │ │ │ │ ├── book │ │ │ │ │ │ ├── blue_book.json │ │ │ │ │ │ ├── book1.json │ │ │ │ │ │ ├── book2.json │ │ │ │ │ │ ├── book2_red.json │ │ │ │ │ │ ├── book_and_quill.json │ │ │ │ │ │ ├── enchanted_book.json │ │ │ │ │ │ ├── green_book.json │ │ │ │ │ │ ├── green_medium_book.json │ │ │ │ │ │ └── red_medium_book.json │ │ │ │ │ └── medium_book.json │ │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ │ ├── stripped_jacaranda_log.json │ │ │ │ │ ├── stripped_jacaranda_wood.json │ │ │ │ │ ├── sturdy_stone.json │ │ │ │ │ ├── template │ │ │ │ │ ├── seat_rest.json │ │ │ │ │ └── sleeping_bag.json │ │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ │ ├── tuff_bricks.json │ │ │ │ │ ├── tuff_slab.json │ │ │ │ │ ├── tuff_stairs.json │ │ │ │ │ ├── waxed_blackboard.json │ │ │ │ │ ├── waxed_blackboard_base.json │ │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ │ ├── waxed_chalkboard_base.json │ │ │ │ │ ├── waxed_glassboard.json │ │ │ │ │ ├── waxed_glassboard_base.json │ │ │ │ │ └── wind_chime.json │ │ │ ├── particles │ │ │ │ ├── copper_sulfate_flame.json │ │ │ │ ├── copper_sulfate_lava.json │ │ │ │ └── lavender_petal.json │ │ │ ├── shaders │ │ │ │ ├── block.properties │ │ │ │ └── material │ │ │ │ │ └── warm_glow.frag │ │ │ ├── sounds.json │ │ │ └── textures │ │ │ │ ├── block │ │ │ │ ├── attachment.png │ │ │ │ ├── azalea │ │ │ │ │ └── fence │ │ │ │ │ │ ├── mossy_post.png │ │ │ │ │ │ ├── mossy_side.png │ │ │ │ │ │ ├── snowy_post.png │ │ │ │ │ │ └── snowy_side.png │ │ │ │ ├── azalea_door_bottom.png │ │ │ │ ├── azalea_door_top.png │ │ │ │ ├── azalea_log.png │ │ │ │ ├── azalea_log_stump_leaf.png │ │ │ │ ├── azalea_log_top.png │ │ │ │ ├── azalea_planks.png │ │ │ │ ├── azalea_trapdoor.png │ │ │ │ ├── big_flower_pot.png │ │ │ │ ├── blackboard │ │ │ │ │ ├── blackboard.png │ │ │ │ │ ├── chalkboard.png │ │ │ │ │ ├── glassboard.png │ │ │ │ │ ├── glassboard_center.png │ │ │ │ │ ├── glassboard_horizontal.png │ │ │ │ │ ├── glassboard_inner_corners.png │ │ │ │ │ ├── glassboard_side.png │ │ │ │ │ ├── glassboard_vertical.png │ │ │ │ │ └── press │ │ │ │ │ │ ├── chassis_plate.png │ │ │ │ │ │ ├── press_plate.png │ │ │ │ │ │ └── screw.png │ │ │ │ ├── brazier │ │ │ │ │ ├── coal.png │ │ │ │ │ ├── coal_lit.png │ │ │ │ │ ├── coal_lit.png.mcmeta │ │ │ │ │ ├── copper_sulfate_coal_lit.png │ │ │ │ │ ├── copper_sulfate_coal_lit.png.mcmeta │ │ │ │ │ ├── plate.png │ │ │ │ │ ├── side.png │ │ │ │ │ ├── soul_coal_lit.png │ │ │ │ │ └── soul_coal_lit.png.mcmeta │ │ │ │ ├── burnt_vine.png │ │ │ │ ├── calcite_bricks.png │ │ │ │ ├── cherry_log_stump_leaf.png │ │ │ │ ├── chiseled_calcite_bricks.png │ │ │ │ ├── chiseled_tuff_bricks.png │ │ │ │ ├── copper_hopper_inside.png │ │ │ │ ├── copper_hopper_outside.png │ │ │ │ ├── copper_hopper_top.png │ │ │ │ ├── copper_sulfate_campfire_fire.png │ │ │ │ ├── copper_sulfate_campfire_fire.png.mcmeta │ │ │ │ ├── copper_sulfate_campfire_log_lit.png │ │ │ │ ├── copper_sulfate_campfire_log_lit.png.mcmeta │ │ │ │ ├── copper_sulfate_lantern.png │ │ │ │ ├── copper_sulfate_lantern.png.mcmeta │ │ │ │ ├── copper_sulfate_torch.png │ │ │ │ ├── cork.png │ │ │ │ ├── cracked_calcite_bricks.png │ │ │ │ ├── cracked_tuff_bricks.png │ │ │ │ ├── daffodil_front.png │ │ │ │ ├── daffodil_leaves.png │ │ │ │ ├── duckweed.png │ │ │ │ ├── flowering_azalea_log.png │ │ │ │ ├── hanging_flower_pot_attachment.png │ │ │ │ ├── jacaranda │ │ │ │ │ └── fence │ │ │ │ │ │ ├── mossy_post.png │ │ │ │ │ │ ├── mossy_side.png │ │ │ │ │ │ ├── snowy_post.png │ │ │ │ │ │ └── snowy_side.png │ │ │ │ ├── jacaranda_door_bottom.png │ │ │ │ ├── jacaranda_door_top.png │ │ │ │ ├── jacaranda_leaves.png │ │ │ │ ├── jacaranda_leaves_budding_flowers.png │ │ │ │ ├── jacaranda_leaves_flowers.png │ │ │ │ ├── jacaranda_log.png │ │ │ │ ├── jacaranda_log_stump_leaf.png │ │ │ │ ├── jacaranda_log_top.png │ │ │ │ ├── jacaranda_planks.png │ │ │ │ ├── jacaranda_sapling.png │ │ │ │ ├── jacaranda_trapdoor.png │ │ │ │ ├── jar_glass.png │ │ │ │ ├── lavender.png │ │ │ │ ├── log_stump_leaf.png │ │ │ │ ├── mossy_calcite_bricks.png │ │ │ │ ├── mossy_deepslate_bricks.png │ │ │ │ ├── mossy_tuff_bricks.png │ │ │ │ ├── pie │ │ │ │ │ └── pumpkin │ │ │ │ │ │ ├── pumpkin_pie_bottom.png │ │ │ │ │ │ ├── pumpkin_pie_side.png │ │ │ │ │ │ ├── pumpkin_pie_slice.png │ │ │ │ │ │ └── pumpkin_pie_top.png │ │ │ │ ├── polished_basalt_wall.png │ │ │ │ ├── polished_calcite.png │ │ │ │ ├── polished_calcite_slab_side.png │ │ │ │ ├── polished_tuff.png │ │ │ │ ├── polished_tuff_slab_side.png │ │ │ │ ├── redstone_lantern.png │ │ │ │ ├── sawmill.png │ │ │ │ ├── sign_post │ │ │ │ │ └── oak.png │ │ │ │ ├── sleeping_bag │ │ │ │ │ ├── black │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── blue │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── brown │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── cyan │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── gray │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── green │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── light_blue │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── light_gray │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── lime │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── magenta │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── orange │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── pink │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── purple │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── red │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ ├── white │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ │ └── yellow │ │ │ │ │ │ ├── foot_side.png │ │ │ │ │ │ ├── foot_top.png │ │ │ │ │ │ ├── head_bottom.png │ │ │ │ │ │ ├── head_side.png │ │ │ │ │ │ └── head_top.png │ │ │ │ ├── stripped_azalea_log.png │ │ │ │ ├── stripped_azalea_log_top.png │ │ │ │ ├── stripped_jacaranda_log.png │ │ │ │ ├── stripped_jacaranda_log_top.png │ │ │ │ ├── tater_face.png │ │ │ │ ├── tater_side.png │ │ │ │ ├── tuff_bricks.png │ │ │ │ └── wind_chime.png │ │ │ │ ├── entity │ │ │ │ ├── boat │ │ │ │ │ ├── azalea.png │ │ │ │ │ └── jacaranda.png │ │ │ │ ├── chest_boat │ │ │ │ │ ├── azalea.png │ │ │ │ │ └── jacaranda.png │ │ │ │ └── signs │ │ │ │ │ ├── azalea.png │ │ │ │ │ ├── hanging │ │ │ │ │ ├── azalea.png │ │ │ │ │ └── jacaranda.png │ │ │ │ │ └── jacaranda.png │ │ │ │ ├── gui │ │ │ │ ├── container │ │ │ │ │ ├── copper_hopper.png │ │ │ │ │ ├── painter_palette.png │ │ │ │ │ └── shelf.png │ │ │ │ ├── glowing_sprite.png │ │ │ │ └── hanging_sign │ │ │ │ │ ├── azalea.png │ │ │ │ │ └── jacaranda.png │ │ │ │ ├── item │ │ │ │ ├── amethyst_lantern.png │ │ │ │ ├── azalea_boat.png │ │ │ │ ├── azalea_chest_boat.png │ │ │ │ ├── azalea_door.png │ │ │ │ ├── azalea_hanging_sign.png │ │ │ │ ├── azalea_sign.png │ │ │ │ ├── blackboard_mask.png │ │ │ │ ├── copper_hopper.png │ │ │ │ ├── copper_sulfate.png │ │ │ │ ├── copper_sulfate_campfire.png │ │ │ │ ├── copper_sulfate_lantern.png │ │ │ │ ├── daffodil.png │ │ │ │ ├── jacaranda_boat.png │ │ │ │ ├── jacaranda_chest_boat.png │ │ │ │ ├── jacaranda_door.png │ │ │ │ ├── jacaranda_hanging_sign.png │ │ │ │ ├── jacaranda_sign.png │ │ │ │ ├── lavender.png │ │ │ │ ├── painter_palette │ │ │ │ │ ├── base.png │ │ │ │ │ ├── brush_color.png │ │ │ │ │ ├── next_color.png │ │ │ │ │ ├── previous_color.png │ │ │ │ │ └── primary_color.png │ │ │ │ ├── redstone_lantern.png │ │ │ │ └── wind_chime.png │ │ │ │ ├── particle │ │ │ │ ├── copper_sulfate_flame.png │ │ │ │ ├── copper_sulfate_lava.png │ │ │ │ └── lavender_petal │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ └── 3.png │ │ │ │ └── special │ │ │ │ ├── book │ │ │ │ ├── blue_book.png │ │ │ │ ├── enchanted_book.png │ │ │ │ ├── green_book.png │ │ │ │ ├── green_medium_book.png │ │ │ │ ├── page.png │ │ │ │ ├── quill.png │ │ │ │ ├── red_medium_book.png │ │ │ │ └── simple_book.png │ │ │ │ └── white.png │ │ └── minecraft │ │ │ └── atlases │ │ │ └── blocks.json │ │ ├── aurorasdeco.mixins.json │ │ ├── data │ │ ├── aurorasdeco │ │ │ ├── advancements │ │ │ │ ├── husbandry │ │ │ │ │ └── pet_use_pet_bed.json │ │ │ │ └── recipes │ │ │ │ │ ├── building_blocks │ │ │ │ │ ├── azalea_planks.json │ │ │ │ │ ├── azalea_slab.json │ │ │ │ │ ├── azalea_stairs.json │ │ │ │ │ ├── azalea_wood.json │ │ │ │ │ ├── calcite_brick_slab.json │ │ │ │ │ ├── calcite_brick_slab_from_stonecutting.json │ │ │ │ │ ├── calcite_brick_stairs.json │ │ │ │ │ ├── calcite_brick_stairs_from_stonecutting.json │ │ │ │ │ ├── calcite_bricks.json │ │ │ │ │ ├── calcite_bricks_from_stonecutting.json │ │ │ │ │ ├── calcite_slab.json │ │ │ │ │ ├── calcite_slab_from_stonecutting.json │ │ │ │ │ ├── calcite_stairs.json │ │ │ │ │ ├── calcite_stairs_from_stonecutting.json │ │ │ │ │ ├── chiseled_calcite_bricks.json │ │ │ │ │ ├── chiseled_calcite_bricks_from_stonecutting.json │ │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ │ ├── chiseled_tuff_bricks_from_stonecutting.json │ │ │ │ │ ├── cracked_calcite_bricks.json │ │ │ │ │ ├── cracked_calcite_bricks_from_stonecutting.json │ │ │ │ │ ├── cracked_tuff_bricks.json │ │ │ │ │ ├── cracked_tuff_bricks_from_stonecutting.json │ │ │ │ │ ├── flowering_azalea_log_from_flowers.json │ │ │ │ │ ├── flowering_azalea_wood_from_flowers.json │ │ │ │ │ ├── flowering_azalea_wood_from_log.json │ │ │ │ │ ├── jacaranda_planks.json │ │ │ │ │ ├── jacaranda_slab.json │ │ │ │ │ ├── jacaranda_stairs.json │ │ │ │ │ ├── jacaranda_wood.json │ │ │ │ │ ├── mossy_calcite_brick_slab.json │ │ │ │ │ ├── mossy_calcite_brick_slab_from_mossy_calcite_brick_stonecutting.json │ │ │ │ │ ├── mossy_calcite_brick_stairs.json │ │ │ │ │ ├── mossy_calcite_brick_stairs_from_mossy_calcite_brick_stonecutting.json │ │ │ │ │ ├── mossy_calcite_brick_wall.json │ │ │ │ │ ├── mossy_calcite_brick_wall_from_mossy_calcite_brick_stonecutting.json │ │ │ │ │ ├── mossy_calcite_bricks_from_moss_block.json │ │ │ │ │ ├── mossy_calcite_bricks_from_vine.json │ │ │ │ │ ├── mossy_deepslate_brick_slab.json │ │ │ │ │ ├── mossy_deepslate_brick_slab_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ │ ├── mossy_deepslate_brick_stairs.json │ │ │ │ │ ├── mossy_deepslate_brick_stairs_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ │ ├── mossy_deepslate_brick_wall.json │ │ │ │ │ ├── mossy_deepslate_brick_wall_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ │ ├── mossy_deepslate_bricks_from_moss_block.json │ │ │ │ │ ├── mossy_deepslate_bricks_from_vine.json │ │ │ │ │ ├── mossy_tuff_brick_slab.json │ │ │ │ │ ├── mossy_tuff_brick_slab_from_mossy_tuff_brick_stonecutting.json │ │ │ │ │ ├── mossy_tuff_brick_stairs.json │ │ │ │ │ ├── mossy_tuff_brick_stairs_from_mossy_tuff_brick_stonecutting.json │ │ │ │ │ ├── mossy_tuff_brick_wall.json │ │ │ │ │ ├── mossy_tuff_brick_wall_from_mossy_tuff_brick_stonecutting.json │ │ │ │ │ ├── mossy_tuff_bricks_from_moss_block.json │ │ │ │ │ ├── mossy_tuff_bricks_from_vine.json │ │ │ │ │ ├── polished_calcite.json │ │ │ │ │ ├── polished_calcite_from_stonecutting.json │ │ │ │ │ ├── polished_calcite_slab.json │ │ │ │ │ ├── polished_calcite_slab_from_stonecutting.json │ │ │ │ │ ├── polished_calcite_stairs.json │ │ │ │ │ ├── polished_calcite_stairs_from_stonecutting.json │ │ │ │ │ ├── polished_tuff.json │ │ │ │ │ ├── polished_tuff_from_stonecutting.json │ │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ │ ├── polished_tuff_slab_from_stonecutting.json │ │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ │ ├── polished_tuff_stairs_from_stonecutting.json │ │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ │ ├── stripped_jacaranda_wood.json │ │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ │ ├── tuff_brick_slab_from_stonecutting.json │ │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ │ ├── tuff_brick_stairs_from_stonecutting.json │ │ │ │ │ ├── tuff_bricks.json │ │ │ │ │ ├── tuff_bricks_from_tuff_stonecutting.json │ │ │ │ │ ├── tuff_slab.json │ │ │ │ │ ├── tuff_slab_from_tuff_stonecutting.json │ │ │ │ │ ├── tuff_stairs.json │ │ │ │ │ └── tuff_stairs_from_tuff_stonecutting.json │ │ │ │ │ ├── decorations │ │ │ │ │ ├── azalea_fence.json │ │ │ │ │ ├── azalea_hanging_sign.json │ │ │ │ │ ├── azalea_sign.json │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ │ ├── calcite_brick_wall_from_stonecutting.json │ │ │ │ │ ├── chalkboard.json │ │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_from_exploding.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── glassboard.json │ │ │ │ │ ├── jacaranda_fence.json │ │ │ │ │ ├── jacaranda_hanging_sign.json │ │ │ │ │ ├── jacaranda_sign.json │ │ │ │ │ ├── pet_bed │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ └── yellow.json │ │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ │ ├── polished_basalt_wall_stonecutting.json │ │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ │ ├── polished_calcite_wall_from_stonecutting.json │ │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ │ ├── polished_tuff_wall_from_stonecutting.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── sleeping_bag │ │ │ │ │ │ ├── black.json │ │ │ │ │ │ ├── black_from_other.json │ │ │ │ │ │ ├── blue.json │ │ │ │ │ │ ├── blue_from_other.json │ │ │ │ │ │ ├── brown.json │ │ │ │ │ │ ├── brown_from_other.json │ │ │ │ │ │ ├── cyan.json │ │ │ │ │ │ ├── cyan_from_other.json │ │ │ │ │ │ ├── gray.json │ │ │ │ │ │ ├── gray_from_other.json │ │ │ │ │ │ ├── green.json │ │ │ │ │ │ ├── green_from_other.json │ │ │ │ │ │ ├── light_blue.json │ │ │ │ │ │ ├── light_blue_from_other.json │ │ │ │ │ │ ├── light_gray.json │ │ │ │ │ │ ├── light_gray_from_other.json │ │ │ │ │ │ ├── lime.json │ │ │ │ │ │ ├── lime_from_other.json │ │ │ │ │ │ ├── magenta.json │ │ │ │ │ │ ├── magenta_from_other.json │ │ │ │ │ │ ├── orange.json │ │ │ │ │ │ ├── orange_from_other.json │ │ │ │ │ │ ├── pink.json │ │ │ │ │ │ ├── pink_from_other.json │ │ │ │ │ │ ├── purple.json │ │ │ │ │ │ ├── purple_from_other.json │ │ │ │ │ │ ├── red.json │ │ │ │ │ │ ├── red_from_other.json │ │ │ │ │ │ ├── white.json │ │ │ │ │ │ ├── white_from_other.json │ │ │ │ │ │ ├── yellow.json │ │ │ │ │ │ └── yellow_from_other.json │ │ │ │ │ ├── soul_brazier.json │ │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ │ ├── tuff_brick_wall_from_stonecutting.json │ │ │ │ │ ├── waxed_blackboard.json │ │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ │ ├── waxed_glassboard.json │ │ │ │ │ └── wind_chime.json │ │ │ │ │ ├── misc │ │ │ │ │ ├── purple_dye_from_lavender.json │ │ │ │ │ ├── woodcutting │ │ │ │ │ │ ├── ladder.json │ │ │ │ │ │ └── stick.json │ │ │ │ │ └── yellow_dye_from_daffodil.json │ │ │ │ │ ├── redstone │ │ │ │ │ ├── azalea_button.json │ │ │ │ │ ├── azalea_door.json │ │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ │ ├── copper_hopper.json │ │ │ │ │ ├── jacaranda_button.json │ │ │ │ │ ├── jacaranda_door.json │ │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ │ ├── jacaranda_pressure_plate.json │ │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ │ ├── sturdy_stone_first.json │ │ │ │ │ ├── sturdy_stone_from_stonecutting.json │ │ │ │ │ └── sturdy_stone_second.json │ │ │ │ │ ├── tools │ │ │ │ │ └── painter_palette.json │ │ │ │ │ └── transportation │ │ │ │ │ ├── azalea_boat.json │ │ │ │ │ ├── azalea_chest_boat.json │ │ │ │ │ ├── jacaranda_boat.json │ │ │ │ │ └── jacaranda_chest_boat.json │ │ │ ├── loot_tables │ │ │ │ └── blocks │ │ │ │ │ ├── azalea_button.json │ │ │ │ │ ├── azalea_door.json │ │ │ │ │ ├── azalea_fence.json │ │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ │ ├── azalea_hanging_sign.json │ │ │ │ │ ├── azalea_log.json │ │ │ │ │ ├── azalea_planks.json │ │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ │ ├── azalea_sign.json │ │ │ │ │ ├── azalea_slab.json │ │ │ │ │ ├── azalea_stairs.json │ │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ │ ├── azalea_wood.json │ │ │ │ │ ├── big_flower_pot.json │ │ │ │ │ ├── blackboard.json │ │ │ │ │ ├── book_pile.json │ │ │ │ │ ├── brazier.json │ │ │ │ │ ├── budding_jacaranda_leaves.json │ │ │ │ │ ├── burnt_vine.json │ │ │ │ │ ├── calcite_brick_slab.json │ │ │ │ │ ├── calcite_brick_stairs.json │ │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ │ ├── calcite_bricks.json │ │ │ │ │ ├── calcite_slab.json │ │ │ │ │ ├── calcite_stairs.json │ │ │ │ │ ├── chalkboard.json │ │ │ │ │ ├── chiseled_calcite_bricks.json │ │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ │ ├── copper_hopper.json │ │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ │ ├── cracked_calcite_bricks.json │ │ │ │ │ ├── cracked_tuff_bricks.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── duckweed.json │ │ │ │ │ ├── flowering_azalea_log.json │ │ │ │ │ ├── flowering_azalea_wood.json │ │ │ │ │ ├── flowering_jacaranda_leaves.json │ │ │ │ │ ├── glassboard.json │ │ │ │ │ ├── jacaranda_button.json │ │ │ │ │ ├── jacaranda_door.json │ │ │ │ │ ├── jacaranda_fence.json │ │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ │ ├── jacaranda_hanging_sign.json │ │ │ │ │ ├── jacaranda_leaves.json │ │ │ │ │ ├── jacaranda_log.json │ │ │ │ │ ├── jacaranda_planks.json │ │ │ │ │ ├── jacaranda_pressure_plate.json │ │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ │ ├── jacaranda_sign.json │ │ │ │ │ ├── jacaranda_slab.json │ │ │ │ │ ├── jacaranda_stairs.json │ │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ │ ├── jacaranda_wood.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── mossy_calcite_brick_slab.json │ │ │ │ │ ├── mossy_calcite_brick_stairs.json │ │ │ │ │ ├── mossy_calcite_brick_wall.json │ │ │ │ │ ├── mossy_calcite_bricks.json │ │ │ │ │ ├── mossy_deepslate_brick_slab.json │ │ │ │ │ ├── mossy_deepslate_brick_stairs.json │ │ │ │ │ ├── mossy_deepslate_brick_wall.json │ │ │ │ │ ├── mossy_deepslate_bricks.json │ │ │ │ │ ├── mossy_tuff_brick_slab.json │ │ │ │ │ ├── mossy_tuff_brick_stairs.json │ │ │ │ │ ├── mossy_tuff_brick_wall.json │ │ │ │ │ ├── mossy_tuff_bricks.json │ │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ │ ├── pet_bed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ │ ├── polished_calcite.json │ │ │ │ │ ├── polished_calcite_slab.json │ │ │ │ │ ├── polished_calcite_stairs.json │ │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ │ ├── polished_tuff.json │ │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ │ ├── potted │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── jacaranda_sapling.json │ │ │ │ │ └── lavender.json │ │ │ │ │ ├── potted_jacaranda_sapling.json │ │ │ │ │ ├── pumpkin_pie.json │ │ │ │ │ ├── sawmill.json │ │ │ │ │ ├── sleeping_bag │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ │ ├── soul_brazier.json │ │ │ │ │ ├── stripped_azalea_log.json │ │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ │ ├── stripped_jacaranda_log.json │ │ │ │ │ ├── stripped_jacaranda_wood.json │ │ │ │ │ ├── sturdy_stone.json │ │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ │ ├── tuff_bricks.json │ │ │ │ │ ├── tuff_slab.json │ │ │ │ │ ├── tuff_stairs.json │ │ │ │ │ ├── waxed_blackboard.json │ │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ │ ├── waxed_glassboard.json │ │ │ │ │ └── wind_chime.json │ │ │ ├── recipes │ │ │ │ ├── azalea_boat.json │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_chest_boat.json │ │ │ │ ├── azalea_door.json │ │ │ │ ├── azalea_fence.json │ │ │ │ ├── azalea_fence_gate.json │ │ │ │ ├── azalea_hanging_sign.json │ │ │ │ ├── azalea_planks.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ ├── azalea_sign.json │ │ │ │ ├── azalea_slab.json │ │ │ │ ├── azalea_stairs.json │ │ │ │ ├── azalea_trapdoor.json │ │ │ │ ├── azalea_wood.json │ │ │ │ ├── big_flower_pot.json │ │ │ │ ├── blackboard.json │ │ │ │ ├── blackboard_clone.json │ │ │ │ ├── brazier.json │ │ │ │ ├── calcite_brick_slab.json │ │ │ │ ├── calcite_brick_slab_from_stonecutting.json │ │ │ │ ├── calcite_brick_stairs.json │ │ │ │ ├── calcite_brick_stairs_from_stonecutting.json │ │ │ │ ├── calcite_brick_wall.json │ │ │ │ ├── calcite_brick_wall_from_stonecutting.json │ │ │ │ ├── calcite_bricks.json │ │ │ │ ├── calcite_bricks_from_stonecutting.json │ │ │ │ ├── calcite_slab.json │ │ │ │ ├── calcite_slab_from_stonecutting.json │ │ │ │ ├── calcite_stairs.json │ │ │ │ ├── calcite_stairs_from_stonecutting.json │ │ │ │ ├── chalkboard.json │ │ │ │ ├── chiseled_calcite_bricks.json │ │ │ │ ├── chiseled_calcite_bricks_from_stonecutting.json │ │ │ │ ├── chiseled_tuff_bricks.json │ │ │ │ ├── chiseled_tuff_bricks_from_stonecutting.json │ │ │ │ ├── copper_hopper.json │ │ │ │ ├── copper_sulfate_brazier.json │ │ │ │ ├── copper_sulfate_campfire.json │ │ │ │ ├── copper_sulfate_from_copper_block.json │ │ │ │ ├── copper_sulfate_from_exposed_copper.json │ │ │ │ ├── copper_sulfate_from_oxidized_copper.json │ │ │ │ ├── copper_sulfate_from_weathered_copper.json │ │ │ │ ├── copper_sulfate_lantern.json │ │ │ │ ├── copper_sulfate_torch.json │ │ │ │ ├── cracked_calcite_bricks.json │ │ │ │ ├── cracked_calcite_bricks_from_stonecutting.json │ │ │ │ ├── cracked_tuff_bricks.json │ │ │ │ ├── cracked_tuff_bricks_from_stonecutting.json │ │ │ │ ├── flowering_azalea_log_from_flowers.json │ │ │ │ ├── flowering_azalea_wood_from_flowers.json │ │ │ │ ├── flowering_azalea_wood_from_log.json │ │ │ │ ├── glassboard.json │ │ │ │ ├── jacaranda_boat.json │ │ │ │ ├── jacaranda_button.json │ │ │ │ ├── jacaranda_chest_boat.json │ │ │ │ ├── jacaranda_door.json │ │ │ │ ├── jacaranda_fence.json │ │ │ │ ├── jacaranda_fence_gate.json │ │ │ │ ├── jacaranda_hanging_sign.json │ │ │ │ ├── jacaranda_planks.json │ │ │ │ ├── jacaranda_pressure_plate.json │ │ │ │ ├── jacaranda_sign.json │ │ │ │ ├── jacaranda_slab.json │ │ │ │ ├── jacaranda_stairs.json │ │ │ │ ├── jacaranda_trapdoor.json │ │ │ │ ├── jacaranda_wood.json │ │ │ │ ├── mossy_calcite_brick_slab.json │ │ │ │ ├── mossy_calcite_brick_slab_from_mossy_calcite_brick_stonecutting.json │ │ │ │ ├── mossy_calcite_brick_stairs.json │ │ │ │ ├── mossy_calcite_brick_stairs_from_mossy_calcite_brick_stonecutting.json │ │ │ │ ├── mossy_calcite_brick_wall.json │ │ │ │ ├── mossy_calcite_brick_wall_from_mossy_calcite_brick_stonecutting.json │ │ │ │ ├── mossy_calcite_bricks_from_moss_block.json │ │ │ │ ├── mossy_calcite_bricks_from_vine.json │ │ │ │ ├── mossy_deepslate_brick_slab.json │ │ │ │ ├── mossy_deepslate_brick_slab_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ ├── mossy_deepslate_brick_stairs.json │ │ │ │ ├── mossy_deepslate_brick_stairs_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ ├── mossy_deepslate_brick_wall.json │ │ │ │ ├── mossy_deepslate_brick_wall_from_mossy_deepslate_brick_stonecutting.json │ │ │ │ ├── mossy_deepslate_bricks_from_moss_block.json │ │ │ │ ├── mossy_deepslate_bricks_from_vine.json │ │ │ │ ├── mossy_tuff_brick_slab.json │ │ │ │ ├── mossy_tuff_brick_slab_from_mossy_tuff_brick_stonecutting.json │ │ │ │ ├── mossy_tuff_brick_stairs.json │ │ │ │ ├── mossy_tuff_brick_stairs_from_mossy_tuff_brick_stonecutting.json │ │ │ │ ├── mossy_tuff_brick_wall.json │ │ │ │ ├── mossy_tuff_brick_wall_from_mossy_tuff_brick_stonecutting.json │ │ │ │ ├── mossy_tuff_bricks_from_moss_block.json │ │ │ │ ├── mossy_tuff_bricks_from_vine.json │ │ │ │ ├── nether_brick_fence_gate.json │ │ │ │ ├── painter_palette.json │ │ │ │ ├── pet_bed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── polished_basalt_wall.json │ │ │ │ ├── polished_basalt_wall_stonecutting.json │ │ │ │ ├── polished_calcite.json │ │ │ │ ├── polished_calcite_from_stonecutting.json │ │ │ │ ├── polished_calcite_slab.json │ │ │ │ ├── polished_calcite_slab_from_stonecutting.json │ │ │ │ ├── polished_calcite_stairs.json │ │ │ │ ├── polished_calcite_stairs_from_stonecutting.json │ │ │ │ ├── polished_calcite_wall.json │ │ │ │ ├── polished_calcite_wall_from_stonecutting.json │ │ │ │ ├── polished_tuff.json │ │ │ │ ├── polished_tuff_from_stonecutting.json │ │ │ │ ├── polished_tuff_slab.json │ │ │ │ ├── polished_tuff_slab_from_stonecutting.json │ │ │ │ ├── polished_tuff_stairs.json │ │ │ │ ├── polished_tuff_stairs_from_stonecutting.json │ │ │ │ ├── polished_tuff_wall.json │ │ │ │ ├── polished_tuff_wall_from_stonecutting.json │ │ │ │ ├── purple_dye_from_lavender.json │ │ │ │ ├── sawmill.json │ │ │ │ ├── sleeping_bag │ │ │ │ │ ├── black.json │ │ │ │ │ ├── black_from_other.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── blue_from_other.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── brown_from_other.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── cyan_from_other.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── gray_from_other.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── green_from_other.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_blue_from_other.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── light_gray_from_other.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── lime_from_other.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── magenta_from_other.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── orange_from_other.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── pink_from_other.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── purple_from_other.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── red_from_other.json │ │ │ │ │ ├── white.json │ │ │ │ │ ├── white_from_other.json │ │ │ │ │ ├── yellow.json │ │ │ │ │ └── yellow_from_other.json │ │ │ │ ├── soul_brazier.json │ │ │ │ ├── stripped_azalea_wood.json │ │ │ │ ├── stripped_jacaranda_wood.json │ │ │ │ ├── sturdy_stone_first.json │ │ │ │ ├── sturdy_stone_second.json │ │ │ │ ├── sturdy_stone_stonecutter.json │ │ │ │ ├── tuff_brick_slab.json │ │ │ │ ├── tuff_brick_slab_from_stonecutting.json │ │ │ │ ├── tuff_brick_stairs.json │ │ │ │ ├── tuff_brick_stairs_from_stonecutting.json │ │ │ │ ├── tuff_brick_wall.json │ │ │ │ ├── tuff_brick_wall_from_stonecutting.json │ │ │ │ ├── tuff_bricks.json │ │ │ │ ├── tuff_bricks_from_stonecutting.json │ │ │ │ ├── tuff_slab.json │ │ │ │ ├── tuff_slab_from_tuff_stonecutting.json │ │ │ │ ├── tuff_stairs.json │ │ │ │ ├── tuff_stairs_from_tuff_stonecutting.json │ │ │ │ ├── waxed_blackboard.json │ │ │ │ ├── waxed_chalkboard.json │ │ │ │ ├── waxed_glassboard.json │ │ │ │ ├── wind_chime.json │ │ │ │ ├── woodcutting │ │ │ │ │ ├── ladder.json │ │ │ │ │ └── stick.json │ │ │ │ └── yellow_dye_from_daffodil.json │ │ │ ├── tags │ │ │ │ ├── blocks │ │ │ │ │ ├── azalea_logs.json │ │ │ │ │ ├── benches.json │ │ │ │ │ ├── blackboards.json │ │ │ │ │ ├── braziers.json │ │ │ │ │ ├── copper_sulfate_decomposable.json │ │ │ │ │ ├── glassboards.json │ │ │ │ │ ├── hoppers.json │ │ │ │ │ ├── jacaranda_leaves.json │ │ │ │ │ ├── jacaranda_logs.json │ │ │ │ │ ├── pet_beds.json │ │ │ │ │ ├── shelves.json │ │ │ │ │ ├── sleeping_bags.json │ │ │ │ │ ├── small_log_piles.json │ │ │ │ │ └── stumps.json │ │ │ │ ├── items │ │ │ │ │ ├── azalea_logs.json │ │ │ │ │ ├── blackboards.json │ │ │ │ │ ├── jacaranda_leaves.json │ │ │ │ │ ├── jacaranda_logs.json │ │ │ │ │ ├── pet_beds.json │ │ │ │ │ ├── sleeping_bags.json │ │ │ │ │ └── sturdy_stone_components.json │ │ │ │ └── worldgen │ │ │ │ │ ├── biome │ │ │ │ │ └── feature │ │ │ │ │ │ ├── fallen_trees │ │ │ │ │ │ └── birch_forest.json │ │ │ │ │ │ └── way_sign │ │ │ │ │ │ ├── birch.json │ │ │ │ │ │ ├── desert.json │ │ │ │ │ │ ├── oak.json │ │ │ │ │ │ └── taiga.json │ │ │ │ │ └── structure │ │ │ │ │ └── way_sign_destinations.json │ │ │ └── worldgen │ │ │ │ ├── biome │ │ │ │ └── lavender_plains.json │ │ │ │ ├── configured_feature │ │ │ │ ├── fallen_tree │ │ │ │ │ ├── birch.json │ │ │ │ │ ├── jungle.json │ │ │ │ │ ├── oak.json │ │ │ │ │ ├── snowy_spruce.json │ │ │ │ │ └── spruce.json │ │ │ │ ├── tree │ │ │ │ │ ├── azalea.json │ │ │ │ │ ├── birch_bees_015.json │ │ │ │ │ ├── fancy_oak_bees_015.json │ │ │ │ │ ├── flowering_jacaranda.json │ │ │ │ │ ├── flowering_jacaranda_bees_015.json │ │ │ │ │ ├── jacaranda.json │ │ │ │ │ ├── jacaranda_bees_015.json │ │ │ │ │ └── oak_bees_015.json │ │ │ │ ├── trees_lavender_plains.json │ │ │ │ ├── vegetation │ │ │ │ │ ├── duckweed.json │ │ │ │ │ ├── fallen_tree │ │ │ │ │ │ ├── average.json │ │ │ │ │ │ └── sparse_jungle.json │ │ │ │ │ ├── patch_lavender.json │ │ │ │ │ └── small_dripleaf.json │ │ │ │ └── way_sign │ │ │ │ │ ├── birch_land.json │ │ │ │ │ ├── desert.json │ │ │ │ │ ├── normal.json │ │ │ │ │ └── taiga.json │ │ │ │ └── placed_feature │ │ │ │ ├── trees_lavender_plains.json │ │ │ │ ├── vegetation │ │ │ │ ├── fallen_tree │ │ │ │ │ ├── birch_forest.json │ │ │ │ │ ├── forest.json │ │ │ │ │ ├── old_growth_spruce_taiga.json │ │ │ │ │ ├── snowy_spruce_taiga.json │ │ │ │ │ ├── sparse_jungle.json │ │ │ │ │ └── spruce_taiga.json │ │ │ │ ├── patch_lavender.json │ │ │ │ └── small_dripleaf.json │ │ │ │ └── way_sign │ │ │ │ ├── birch.json │ │ │ │ ├── desert.json │ │ │ │ ├── oak.json │ │ │ │ └── taiga.json │ │ ├── c │ │ │ └── tags │ │ │ │ ├── blocks │ │ │ │ ├── stripped_logs.json │ │ │ │ └── vegetation │ │ │ │ │ └── on_water_surface.json │ │ │ │ ├── items │ │ │ │ ├── copper_sulfates.json │ │ │ │ ├── planks_that_burn.json │ │ │ │ └── stripped_logs.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── plains.json │ │ ├── fabric │ │ │ └── tags │ │ │ │ └── blocks │ │ │ │ └── mineable │ │ │ │ └── shears.json │ │ ├── lovely_snails │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── snail_food_items.json │ │ ├── minecraft │ │ │ └── tags │ │ │ │ ├── blocks │ │ │ │ ├── beds.json │ │ │ │ ├── campfires.json │ │ │ │ ├── candles.json │ │ │ │ ├── climbable.json │ │ │ │ ├── fence_gates.json │ │ │ │ ├── fences.json │ │ │ │ ├── flower_pots.json │ │ │ │ ├── flowers.json │ │ │ │ ├── leaves.json │ │ │ │ ├── logs_that_burn.json │ │ │ │ ├── lush_plants_replaceable.json │ │ │ │ ├── mineable │ │ │ │ │ ├── axe.json │ │ │ │ │ ├── hoe.json │ │ │ │ │ └── pickaxe.json │ │ │ │ ├── planks.json │ │ │ │ ├── saplings.json │ │ │ │ ├── slabs.json │ │ │ │ ├── small_flowers.json │ │ │ │ ├── stairs.json │ │ │ │ ├── standing_signs.json │ │ │ │ ├── wall_post_override.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 │ │ │ │ ├── items │ │ │ │ ├── boats.json │ │ │ │ ├── chest_boats.json │ │ │ │ ├── leaves.json │ │ │ │ ├── logs_that_burn.json │ │ │ │ ├── planks.json │ │ │ │ ├── saplings.json │ │ │ │ ├── signs.json │ │ │ │ ├── small_flowers.json │ │ │ │ ├── wooden_buttons.json │ │ │ │ ├── wooden_doors.json │ │ │ │ ├── wooden_fences.json │ │ │ │ ├── wooden_pressure_plates.json │ │ │ │ ├── wooden_slabs.json │ │ │ │ ├── wooden_stairs.json │ │ │ │ └── wooden_trapdoors.json │ │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ ├── has_structure │ │ │ │ ├── mineshaft.json │ │ │ │ ├── ruined_portal_standard.json │ │ │ │ └── stronghold.json │ │ │ │ └── is_overworld.json │ │ ├── quilt │ │ │ └── attachments │ │ │ │ └── minecraft │ │ │ │ ├── block │ │ │ │ ├── flammable.json │ │ │ │ ├── strippable.json │ │ │ │ └── waxable.json │ │ │ │ └── item │ │ │ │ └── compost_chances.json │ │ └── trinkets │ │ │ ├── entities │ │ │ └── blackboard.json │ │ │ └── tags │ │ │ └── items │ │ │ └── head │ │ │ └── face.json │ │ ├── programmer_art │ │ └── assets │ │ │ └── aurorasdeco │ │ │ └── textures │ │ │ └── block │ │ │ └── burnt_vine.png │ │ └── resourcepacks │ │ ├── azalea_tree │ │ ├── data │ │ │ └── minecraft │ │ │ │ └── worldgen │ │ │ │ └── configured_feature │ │ │ │ └── azalea_tree.json │ │ ├── pack.mcmeta │ │ └── pack.png │ │ └── swamp_worldgen │ │ ├── data │ │ └── aurorasdeco │ │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ └── swamp │ │ │ │ └── giant_mushrooms.json │ │ │ └── placed_feature │ │ │ └── swamp │ │ │ ├── duckweed.json │ │ │ ├── giant_mushrooms.json │ │ │ └── small_dripleaf.json │ │ ├── pack.mcmeta │ │ └── pack.png ├── testmod │ ├── java │ │ └── dev │ │ │ └── lambdaurora │ │ │ └── aurorasdeco │ │ │ ├── debug │ │ │ ├── AurorasDecoDebug.java │ │ │ └── mixin │ │ │ │ ├── ArrayPaletteMixin.java │ │ │ │ └── HolderReferenceMixin.java │ │ │ └── test │ │ │ ├── AurorasDecoTests.java │ │ │ ├── CopperHopperTest.java │ │ │ ├── ShelfTest.java │ │ │ └── SturdyStoneTest.java │ └── resources │ │ ├── aurorasdeco.debug.mixins.json │ │ ├── data │ │ └── aurorasdeco │ │ │ └── game_test │ │ │ └── structures │ │ │ ├── copper_hopper │ │ │ └── simple.snbt │ │ │ ├── shelf │ │ │ ├── insertion.snbt │ │ │ ├── insertion_lock.snbt │ │ │ └── insertion_locked.snbt │ │ │ └── sturdy_stone │ │ │ ├── piston.snbt │ │ │ └── propagation.snbt │ │ └── quilt.mod.json └── trinkets │ └── java │ └── dev │ └── lambdaurora │ └── aurorasdeco │ └── hook │ └── TrinketsHooks.java └── wiki ├── .gitignore ├── amethyst_lantern.md ├── blackboards.md ├── braziers.md ├── copper_sulfate.md ├── deploy.ts ├── index.md ├── painter_palette.md ├── plants ├── burnt_vine.md ├── daffodil.md └── lavender.md ├── public ├── script.js └── style.css ├── redstone └── redstone_lantern.md ├── sawmill.md ├── shelves.md ├── sign_posts.md ├── technical └── render_rules.md ├── wind_chime.md ├── wood ├── azalea.md └── jacaranda.md └── world_generation ├── biomes └── lavender_plains.md └── features ├── fallen_trees.md └── way_signs.md /.github/workflows/gradle_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/.github/workflows/gradle_build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/wiki_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/.github/workflows/wiki_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/TODO.md -------------------------------------------------------------------------------- /codeformat/HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/codeformat/HEADER -------------------------------------------------------------------------------- /datagen/make_recipe_unlock.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/datagen/make_recipe_unlock.mjs -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/amethyst_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/amethyst_lantern.png -------------------------------------------------------------------------------- /images/azalea_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/azalea_wood.png -------------------------------------------------------------------------------- /images/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/bench.png -------------------------------------------------------------------------------- /images/biome/lavender_plains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/biome/lavender_plains.png -------------------------------------------------------------------------------- /images/blackboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/blackboards.png -------------------------------------------------------------------------------- /images/braziers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/braziers.png -------------------------------------------------------------------------------- /images/burnt_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/burnt_vine.png -------------------------------------------------------------------------------- /images/calcite_and_tuff_variants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/calcite_and_tuff_variants.png -------------------------------------------------------------------------------- /images/chandeliers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/chandeliers.png -------------------------------------------------------------------------------- /images/copper_hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/copper_hopper.png -------------------------------------------------------------------------------- /images/copper_sulfate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/copper_sulfate.png -------------------------------------------------------------------------------- /images/daffodils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/daffodils.png -------------------------------------------------------------------------------- /images/flower_pot_and_wall_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/flower_pot_and_wall_lantern.png -------------------------------------------------------------------------------- /images/glassboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/glassboard.png -------------------------------------------------------------------------------- /images/gui/painter_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/gui/painter_palette.png -------------------------------------------------------------------------------- /images/in_world_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/in_world_books.png -------------------------------------------------------------------------------- /images/jacaranda_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/jacaranda_wood.png -------------------------------------------------------------------------------- /images/lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/lavender.png -------------------------------------------------------------------------------- /images/leash_tweaks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/leash_tweaks.png -------------------------------------------------------------------------------- /images/nether_brick_fence_gate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/nether_brick_fence_gate.png -------------------------------------------------------------------------------- /images/pet_beds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/pet_beds.png -------------------------------------------------------------------------------- /images/placeable_pumpkin_pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/placeable_pumpkin_pie.png -------------------------------------------------------------------------------- /images/polished_basalt_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/polished_basalt_wall.png -------------------------------------------------------------------------------- /images/render/azalea/flowering_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/flowering_log.png -------------------------------------------------------------------------------- /images/render/azalea/flowering_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/flowering_wood.png -------------------------------------------------------------------------------- /images/render/azalea/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/log.png -------------------------------------------------------------------------------- /images/render/azalea/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/planks.png -------------------------------------------------------------------------------- /images/render/azalea/stripped_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/stripped_log.png -------------------------------------------------------------------------------- /images/render/azalea/stripped_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/stripped_wood.png -------------------------------------------------------------------------------- /images/render/azalea/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/azalea/wood.png -------------------------------------------------------------------------------- /images/render/brazier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/brazier.png -------------------------------------------------------------------------------- /images/render/burnt_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/burnt_vine.png -------------------------------------------------------------------------------- /images/render/copper_sulfate_brazier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/copper_sulfate_brazier.png -------------------------------------------------------------------------------- /images/render/copper_sulfate_campfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/copper_sulfate_campfire.png -------------------------------------------------------------------------------- /images/render/copper_sulfate_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/copper_sulfate_lantern.png -------------------------------------------------------------------------------- /images/render/daffodil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/daffodil.png -------------------------------------------------------------------------------- /images/render/item/painter_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/item/painter_palette.png -------------------------------------------------------------------------------- /images/render/item/painter_palette_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/item/painter_palette_empty.png -------------------------------------------------------------------------------- /images/render/jacaranda/budding_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/budding_leaves.png -------------------------------------------------------------------------------- /images/render/jacaranda/flowering_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/flowering_leaves.png -------------------------------------------------------------------------------- /images/render/jacaranda/leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/leaves.png -------------------------------------------------------------------------------- /images/render/jacaranda/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/log.png -------------------------------------------------------------------------------- /images/render/jacaranda/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/planks.png -------------------------------------------------------------------------------- /images/render/jacaranda/stripped_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/stripped_log.png -------------------------------------------------------------------------------- /images/render/jacaranda/stripped_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/stripped_wood.png -------------------------------------------------------------------------------- /images/render/jacaranda/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/jacaranda/wood.png -------------------------------------------------------------------------------- /images/render/lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/lavender.png -------------------------------------------------------------------------------- /images/render/lit_brazier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/lit_brazier.png -------------------------------------------------------------------------------- /images/render/oak_shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/oak_shelf.png -------------------------------------------------------------------------------- /images/render/potted/daffodil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/potted/daffodil.png -------------------------------------------------------------------------------- /images/render/potted/lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/potted/lavender.png -------------------------------------------------------------------------------- /images/render/redstone_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/redstone_lantern.png -------------------------------------------------------------------------------- /images/render/redstone_lantern/basic_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/redstone_lantern/basic_connectivity.png -------------------------------------------------------------------------------- /images/render/redstone_lantern/emit_direction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/redstone_lantern/emit_direction.png -------------------------------------------------------------------------------- /images/render/redstone_lantern/wall_connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/redstone_lantern/wall_connectivity.png -------------------------------------------------------------------------------- /images/render/redstone_lantern_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/redstone_lantern_off.png -------------------------------------------------------------------------------- /images/render/sawmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/sawmill.png -------------------------------------------------------------------------------- /images/render/soul_brazier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/soul_brazier.png -------------------------------------------------------------------------------- /images/render/wind_chime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/render/wind_chime.png -------------------------------------------------------------------------------- /images/sawmill_and_stumps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/sawmill_and_stumps.png -------------------------------------------------------------------------------- /images/shelves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/shelves.png -------------------------------------------------------------------------------- /images/sign_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/sign_post.png -------------------------------------------------------------------------------- /images/sleeping_bags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/sleeping_bags.png -------------------------------------------------------------------------------- /images/small_log_piles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/small_log_piles.png -------------------------------------------------------------------------------- /images/sturdy_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/sturdy_stone.png -------------------------------------------------------------------------------- /images/wall_candles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/wall_candles.png -------------------------------------------------------------------------------- /images/worldgen/features/fallen_birch_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/worldgen/features/fallen_birch_tree.png -------------------------------------------------------------------------------- /images/worldgen/features/fallen_oak_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/worldgen/features/fallen_oak_tree.png -------------------------------------------------------------------------------- /images/worldgen/features/fallen_spruce_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/worldgen/features/fallen_spruce_tree.png -------------------------------------------------------------------------------- /images/worldgen/features/way_sign_taiga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/images/worldgen/features/way_sign_taiga.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/emi/java/dev/lambdaurora/aurorasdeco/hook/EmiHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/emi/java/dev/lambdaurora/aurorasdeco/hook/EmiHooks.java -------------------------------------------------------------------------------- /src/emi/java/dev/lambdaurora/aurorasdeco/hook/emi/AuroraEmiRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/emi/java/dev/lambdaurora/aurorasdeco/hook/emi/AuroraEmiRecipe.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/AurorasDeco.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/AurorasDeco.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/accessor/ItemExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/accessor/ItemExtensions.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/blackboard/Blackboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/blackboard/Blackboard.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/AuroraBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/AuroraBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/BenchBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/BenchBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/BlackboardBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/BlackboardBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/BookPileBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/BookPileBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/BrazierBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/BrazierBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/BurntVineBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/BurntVineBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/ChandelierBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/ChandelierBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/CopperHopperBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/CopperHopperBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/ExtensionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/ExtensionType.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/FenceLikeWallBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/FenceLikeWallBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/PartType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/PartType.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/PetBedBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/PetBedBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/PieBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/PieBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SawmillBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SawmillBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SeatBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SeatBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/ShelfBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/ShelfBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SignPostBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SignPostBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SleepingBagBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SleepingBagBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SmallLogPileBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SmallLogPileBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/StumpBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/StumpBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/SturdyStoneBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/SturdyStoneBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/WallCandleBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/WallCandleBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/block/WindChimeBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/block/WindChimeBlock.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/client/AurorasDecoClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/client/AurorasDecoClient.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/client/BlackboardTexture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/client/BlackboardTexture.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/client/RenderRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/client/RenderRule.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/client/Wind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/client/Wind.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/entity/SeatEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/entity/SeatEntity.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/hook/LBGHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/hook/LBGHooks.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/BlackboardItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/BlackboardItem.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/DuckweedItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/DuckweedItem.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/PainterPaletteItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/PainterPaletteItem.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/SeatRestItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/SeatRestItem.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/SignPostItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/SignPostItem.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/group/ItemTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/group/ItemTree.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/item/group/ItemTreeNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/item/group/ItemTreeNode.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/mixin/block/BlockMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/mixin/block/BlockMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/mixin/client/MouseMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/mixin/client/MouseMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/mixin/item/ItemMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/mixin/item/ItemMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/mixin/item/LeadItemMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/mixin/item/LeadItemMixin.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/recipe/ExplodingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/recipe/ExplodingRecipe.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/recipe/WoodcuttingRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/recipe/WoodcuttingRecipe.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/registry/AurorasDecoTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/registry/AurorasDecoTags.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/registry/Registrar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/registry/Registrar.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/registry/SignData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/registry/SignData.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/registry/WoodType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/registry/WoodType.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/resource/AurorasDecoPack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/resource/AurorasDecoPack.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/resource/Datagen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/resource/Datagen.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/resource/ModTagReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/resource/ModTagReader.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/screen/slot/ColorSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/screen/slot/ColorSlot.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/screen/slot/LockedSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/screen/slot/LockedSlot.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/AuroraUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/AuroraUtil.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/ColorUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/ColorUtil.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/CustomStateBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/CustomStateBuilder.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/Derivator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/Derivator.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/MapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/MapUtil.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/util/math/SmoothNoise.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/util/math/SmoothNoise.java -------------------------------------------------------------------------------- /src/main/java/dev/lambdaurora/aurorasdeco/world/gen/WorldGenUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/java/dev/lambdaurora/aurorasdeco/world/gen/WorldGenUtils.java -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/assets.md -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/bench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/bench.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/default.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/flower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/flower.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/pumpkin_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/pumpkin_pie.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/shelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/shelf.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/stump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/stump.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/wall_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/wall_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/data/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/data/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/states/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/states/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/states/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/states/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/states/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/states/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/bettergrass/states/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/bettergrass/states/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_planks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_trapdoor.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_wall_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_wall_sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/azalea_wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/big_flower_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/big_flower_pot.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/blackboard_press.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/blackboard_press.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/book_pile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/book_pile.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/burnt_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/burnt_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/calcite_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/calcite_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/calcite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/calcite_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/calcite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/calcite_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/black.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/blue.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/brown.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/cyan.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/gray.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/green.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/lime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/pink.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/red.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/chandelier/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/chandelier/white.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/copper_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/copper_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/duckweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/duckweed.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/glassboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_button.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_fence.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_log.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_planks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/jacaranda_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/jacaranda_wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/black.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/blue.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/brown.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/cyan.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/gray.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/green.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/lime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/magenta.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/orange.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/pink.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/purple.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/red.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/white.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pet_bed/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pet_bed/yellow.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/plant_air.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/plant_air.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/polished_calcite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/polished_calcite.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/polished_tuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/polished_tuff.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/potted/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/potted/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/potted/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/potted/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/pumpkin_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/pumpkin_pie.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/redstone_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/redstone_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/sleeping_bag/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/sleeping_bag/red.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/soul_brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/soul_brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/sturdy_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/sturdy_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/tuff_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/tuff_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/tuff_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/tuff_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/tuff_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/tuff_bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/tuff_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/tuff_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/tuff_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/tuff_stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_blue_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_blue_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_cyan_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_cyan_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_gray_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_gray_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_lime_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_lime_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_pink_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_pink_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wall_red_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wall_red_candle.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/waxed_blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/waxed_blackboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/waxed_chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/waxed_chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/waxed_glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/waxed_glassboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/blockstates/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/blockstates/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lang/fr_ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lang/fr_ca.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lights/item/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lights/item/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lights/item/redstone_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lights/item/redstone_lantern.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/lights/item/soul_brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/lights/item/soul_brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/amethyst_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultMaterial": "aurorasdeco:warm_glow" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/materialmaps/block/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/copper_sulfate_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultMaterial": "aurorasdeco:warm_glow" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/copper_sulfate_torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultMaterial": "aurorasdeco:warm_glow" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/materialmaps/block/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/block/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/materialmaps/block/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/particle/amethyst_glint.json: -------------------------------------------------------------------------------- 1 | { 2 | "material": "frex:emissive_no_diffuse" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/particle/copper_sulfate_flame.json: -------------------------------------------------------------------------------- 1 | { 2 | "material": "frex:emissive_no_diffuse" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materialmaps/particle/copper_sulfate_lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "material": "frex:emissive_no_diffuse" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/materials/warm_glow.json: -------------------------------------------------------------------------------- 1 | { 2 | "fragmentSource": "aurorasdeco:shaders/material/warm_glow.frag" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/button.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/log.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/planks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/azalea/wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/azalea/wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/book_pile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/book_pile.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/brazier/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/brazier/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/burnt_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/burnt_vine.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/calcite/bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/calcite/bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/calcite/slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/calcite/slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/calcite/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/calcite/stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/copper_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/copper_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/duckweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/duckweed.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/glassboard.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/jacaranda/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/jacaranda/log.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/jacaranda/sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/jacaranda/sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/jacaranda/slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/jacaranda/slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/jacaranda/wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/jacaranda/wood.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/jar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/jar.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/black.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/blue.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/brown.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/cyan.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/gray.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/green.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/lime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/magenta.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/orange.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/pink.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/purple.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/red.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/white.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pet_bed/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pet_bed/yellow.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/0.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/1.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/2.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/pie/pumpkin/3.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/potted/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/potted/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/potted/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/potted/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/stump/azalea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/stump/azalea.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/stump/cherry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/stump/cherry.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/stump/jacaranda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/stump/jacaranda.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/sturdy_stone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/sturdy_stone.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/template/board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/template/board.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/bricks.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/polished.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/polished.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/slab.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/slab_top.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/slab_top.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/tuff/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/tuff/stairs.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/block/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/block/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/azalea_boat.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/azalea_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/fence/inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/azalea_sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/big_flower_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/big_flower_pot.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/blackboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/blackboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/blackboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/blackboard_mask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/blackboard_mask.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/blackboard_press.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/blackboard_press.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/budding_jacaranda_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/budding_leaves" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/calcite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/chalkboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/chalkboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/chalkboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/chiseled_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/chiseled_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/chiseled_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/chiseled_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/copper_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/copper_hopper.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/copper_sulfate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/copper_sulfate.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/cracked_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/cracked_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/cracked_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/cracked_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/duckweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/duckweed.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/flowering_azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/flowering_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/flowering_azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/flowering_wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/flowering_jacaranda_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/flowering_leaves" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/glassboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/glassboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/glassboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/jacaranda_boat.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/jacaranda_door.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/fence/inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/leaves" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_pressure_plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/pressure_plate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/jacaranda_sign.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/trapdoor_bottom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/jacaranda_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/lavender.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_calcite_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/mossy_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_calcite_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/mossy_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_calcite_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/mossy_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_calcite_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/mossy_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_deepslate_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/deepslate/mossy_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_deepslate_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/deepslate/mossy_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_deepslate_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/deepslate/mossy_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_deepslate_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/deepslate/mossy_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_tuff_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/mossy_brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_tuff_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/mossy_brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_tuff_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/mossy_brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/mossy_tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/mossy_bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/nether_brick_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/nether_brick_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/painter_palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/painter_palette.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/black" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/blue" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/brown.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/brown" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/cyan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/cyan" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/gray" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/green" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/light_blue.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/light_blue" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/light_gray.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/light_gray" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/lime" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/magenta.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/magenta" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/orange" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/pink.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/pink" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/purple.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/purple" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/white" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/pet_bed/yellow.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/pet_bed/yellow" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_calcite.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/polished" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_calcite_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/polished_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_calcite_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/polished_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_calcite_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/calcite/polished_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_tuff.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/polished" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/polished_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/polished_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/polished_tuff_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/polished_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/sawmill.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/sawmill" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/small_log_pile/oak.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/small_log_pile/oak/bottom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/soul_brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/soul_brazier.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/special/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/special/book.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/stripped_azalea_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/stripped_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/stripped_azalea_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/azalea/stripped_wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/stripped_jacaranda_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/stripped_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/stripped_jacaranda_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/jacaranda/stripped_wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/sturdy_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/sturdy_stone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_brick_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/brick_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_brick_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/brick_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_brick_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/brick_wall_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_bricks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/bricks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/tuff_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/tuff/stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_blackboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_blackboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/waxed_blackboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_chalkboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_chalkboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/waxed_chalkboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_glassboard.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:builtin/entity" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/waxed_glassboard_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "aurorasdeco:block/waxed_glassboard" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/models/item/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/models/item/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/particles/lavender_petal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/particles/lavender_petal.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/shaders/block.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/shaders/block.properties -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/shaders/material/warm_glow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/shaders/material/warm_glow.frag -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/sounds.json -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/attachment.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/azalea_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/azalea_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/azalea_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/azalea_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/azalea_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/azalea_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/big_flower_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/big_flower_pot.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/brazier/coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/brazier/coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/brazier/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/brazier/plate.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/brazier/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/brazier/side.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/burnt_vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/burnt_vine.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/calcite_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/calcite_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/cork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/cork.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/daffodil_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/daffodil_front.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/duckweed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/duckweed.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/jacaranda_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/jacaranda_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/jar_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/jar_glass.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/lavender.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/log_stump_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/log_stump_leaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/polished_tuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/polished_tuff.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/sawmill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/sawmill.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/sign_post/oak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/sign_post/oak.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/tater_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/tater_face.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/tater_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/tater_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/tuff_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/tuff_bricks.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/block/wind_chime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/block/wind_chime.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/entity/boat/azalea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/entity/boat/azalea.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/entity/signs/azalea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/entity/signs/azalea.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/gui/container/shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/gui/container/shelf.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/gui/glowing_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/gui/glowing_sprite.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/azalea_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/azalea_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/azalea_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/azalea_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/azalea_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/azalea_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/blackboard_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/blackboard_mask.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/copper_hopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/copper_hopper.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/copper_sulfate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/copper_sulfate.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/daffodil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/daffodil.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/jacaranda_boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/jacaranda_boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/jacaranda_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/jacaranda_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/jacaranda_sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/jacaranda_sign.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/lavender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/lavender.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/item/wind_chime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/item/wind_chime.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/special/book/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/special/book/page.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/special/book/quill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/special/book/quill.png -------------------------------------------------------------------------------- /src/main/resources/assets/aurorasdeco/textures/special/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/aurorasdeco/textures/special/white.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/assets/minecraft/atlases/blocks.json -------------------------------------------------------------------------------- /src/main/resources/aurorasdeco.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/aurorasdeco.mixins.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_door.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_log.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_sign.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/azalea_wood.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/book_pile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/book_pile.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/brazier.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/burnt_vine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/burnt_vine.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/daffodil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/daffodil.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/duckweed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/duckweed.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/glassboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/lavender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/lavender.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/pet_bed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/pet_bed/red.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/pumpkin_pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/pumpkin_pie.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/tuff_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/loot_tables/blocks/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/loot_tables/blocks/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_boat.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_button.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_chest_boat.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_door.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_fence.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_hanging_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_hanging_sign.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_planks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_pressure_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_pressure_plate.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_sign.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_trapdoor.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/azalea_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/azalea_wood.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/big_flower_pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/big_flower_pot.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/blackboard_clone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "aurorasdeco:crafting_special_blackboard_clone" 3 | } -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/brazier.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_brick_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/calcite_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/calcite_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/chiseled_tuff_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/chiseled_tuff_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/copper_hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/copper_hopper.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/copper_sulfate_brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/copper_sulfate_brazier.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/copper_sulfate_lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/copper_sulfate_lantern.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/copper_sulfate_torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/copper_sulfate_torch.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/cracked_calcite_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/cracked_calcite_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/cracked_tuff_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/cracked_tuff_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/glassboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_boat.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_button.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_chest_boat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_chest_boat.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_door.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_fence.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_fence_gate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_fence_gate.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_hanging_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_hanging_sign.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_planks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_sign.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_trapdoor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_trapdoor.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/jacaranda_wood.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/jacaranda_wood.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/mossy_tuff_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/mossy_tuff_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/mossy_tuff_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/mossy_tuff_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/painter_palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/painter_palette.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/black.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/blue.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/brown.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/cyan.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/gray.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/green.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/light_blue.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/light_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/light_gray.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/lime.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/magenta.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/orange.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/pink.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/purple.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/red.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/white.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/pet_bed/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/pet_bed/yellow.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/polished_basalt_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/polished_basalt_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/polished_calcite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/polished_calcite.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/polished_tuff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/polished_tuff.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/polished_tuff_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/polished_tuff_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/polished_tuff_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/polished_tuff_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sawmill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sawmill.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/black.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/blue.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/brown.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/cyan.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/gray.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/green.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/lime.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/orange.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/pink.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/purple.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/red.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/white.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sleeping_bag/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sleeping_bag/yellow.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/soul_brazier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/soul_brazier.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sturdy_stone_first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sturdy_stone_first.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/sturdy_stone_second.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/sturdy_stone_second.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_brick_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_brick_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_brick_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_brick_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_brick_wall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_brick_wall.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_bricks.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_slab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_slab.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/tuff_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/tuff_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/waxed_blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/waxed_blackboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/waxed_chalkboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/waxed_chalkboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/waxed_glassboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/waxed_glassboard.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/wind_chime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/wind_chime.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/woodcutting/ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/woodcutting/ladder.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/recipes/woodcutting/stick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/recipes/woodcutting/stick.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/azalea_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/benches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/benches.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/blackboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/blackboards.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/braziers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/braziers.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/glassboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/glassboards.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/hoppers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/hoppers.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/jacaranda_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/jacaranda_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/pet_beds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/pet_beds.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/shelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/shelves.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/sleeping_bags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/sleeping_bags.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/small_log_piles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/small_log_piles.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/blocks/stumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/blocks/stumps.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/azalea_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/azalea_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/blackboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/blackboards.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/jacaranda_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/jacaranda_leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/jacaranda_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/jacaranda_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/pet_beds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/pet_beds.json -------------------------------------------------------------------------------- /src/main/resources/data/aurorasdeco/tags/items/sleeping_bags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/aurorasdeco/tags/items/sleeping_bags.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/blocks/stripped_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/c/tags/blocks/stripped_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/copper_sulfates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/c/tags/items/copper_sulfates.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/planks_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/c/tags/items/planks_that_burn.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/stripped_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/c/tags/items/stripped_logs.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/worldgen/biome/plains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/c/tags/worldgen/biome/plains.json -------------------------------------------------------------------------------- /src/main/resources/data/fabric/tags/blocks/mineable/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/fabric/tags/blocks/mineable/shears.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/beds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/beds.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/campfires.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/campfires.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/candles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/candles.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/climbable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/climbable.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/fence_gates.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/fences.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/flower_pots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/flower_pots.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/flowers.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/logs_that_burn.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/axe.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/hoe.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/planks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/saplings.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/slabs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/small_flowers.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/standing_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/standing_signs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wall_signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wall_signs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/walls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/walls.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_buttons.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_doors.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_fences.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_slabs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/blocks/wooden_trapdoors.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/boats.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/chest_boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/chest_boats.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/logs_that_burn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/logs_that_burn.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/planks.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/saplings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/saplings.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/signs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/signs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/small_flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/small_flowers.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_buttons.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_doors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_doors.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_fences.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_slabs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_stairs.json -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/minecraft/tags/items/wooden_trapdoors.json -------------------------------------------------------------------------------- /src/main/resources/data/trinkets/entities/blackboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/trinkets/entities/blackboard.json -------------------------------------------------------------------------------- /src/main/resources/data/trinkets/tags/items/head/face.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/data/trinkets/tags/items/head/face.json -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/azalea_tree/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/resourcepacks/azalea_tree/pack.mcmeta -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/azalea_tree/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/resourcepacks/azalea_tree/pack.png -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/swamp_worldgen/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/resourcepacks/swamp_worldgen/pack.mcmeta -------------------------------------------------------------------------------- /src/main/resources/resourcepacks/swamp_worldgen/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/main/resources/resourcepacks/swamp_worldgen/pack.png -------------------------------------------------------------------------------- /src/testmod/java/dev/lambdaurora/aurorasdeco/test/ShelfTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/testmod/java/dev/lambdaurora/aurorasdeco/test/ShelfTest.java -------------------------------------------------------------------------------- /src/testmod/resources/aurorasdeco.debug.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/testmod/resources/aurorasdeco.debug.mixins.json -------------------------------------------------------------------------------- /src/testmod/resources/quilt.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/src/testmod/resources/quilt.mod.json -------------------------------------------------------------------------------- /wiki/.gitignore: -------------------------------------------------------------------------------- 1 | deploy_out 2 | -------------------------------------------------------------------------------- /wiki/amethyst_lantern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/amethyst_lantern.md -------------------------------------------------------------------------------- /wiki/blackboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/blackboards.md -------------------------------------------------------------------------------- /wiki/braziers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/braziers.md -------------------------------------------------------------------------------- /wiki/copper_sulfate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/copper_sulfate.md -------------------------------------------------------------------------------- /wiki/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/deploy.ts -------------------------------------------------------------------------------- /wiki/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/index.md -------------------------------------------------------------------------------- /wiki/painter_palette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/painter_palette.md -------------------------------------------------------------------------------- /wiki/plants/burnt_vine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/plants/burnt_vine.md -------------------------------------------------------------------------------- /wiki/plants/daffodil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/plants/daffodil.md -------------------------------------------------------------------------------- /wiki/plants/lavender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/plants/lavender.md -------------------------------------------------------------------------------- /wiki/public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/public/script.js -------------------------------------------------------------------------------- /wiki/public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/public/style.css -------------------------------------------------------------------------------- /wiki/redstone/redstone_lantern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/redstone/redstone_lantern.md -------------------------------------------------------------------------------- /wiki/sawmill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/sawmill.md -------------------------------------------------------------------------------- /wiki/shelves.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/shelves.md -------------------------------------------------------------------------------- /wiki/sign_posts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/sign_posts.md -------------------------------------------------------------------------------- /wiki/technical/render_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/technical/render_rules.md -------------------------------------------------------------------------------- /wiki/wind_chime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/wind_chime.md -------------------------------------------------------------------------------- /wiki/wood/azalea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/wood/azalea.md -------------------------------------------------------------------------------- /wiki/wood/jacaranda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/wood/jacaranda.md -------------------------------------------------------------------------------- /wiki/world_generation/biomes/lavender_plains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/world_generation/biomes/lavender_plains.md -------------------------------------------------------------------------------- /wiki/world_generation/features/fallen_trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/world_generation/features/fallen_trees.md -------------------------------------------------------------------------------- /wiki/world_generation/features/way_signs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LambdAurora/AurorasDecorations/HEAD/wiki/world_generation/features/way_signs.md --------------------------------------------------------------------------------