├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── CREDITS.txt ├── LICENSE.txt ├── README.md ├── TEMPLATE_LICENSE.txt ├── build.gradle ├── changelog.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── generated └── resources │ ├── .cache │ └── cache │ └── data │ ├── ashihara │ ├── loot_tables │ │ └── blocks │ │ │ ├── cherry_blossom.json │ │ │ └── maple_leaves_red.json │ └── recipes │ │ ├── cutting │ │ ├── cut_dried_bamboo.json │ │ ├── cut_log_acacia.json │ │ ├── cut_log_birch.json │ │ ├── cut_log_crimson.json │ │ ├── cut_log_dark_oak.json │ │ ├── cut_log_jungle.json │ │ ├── cut_log_oak.json │ │ ├── cut_log_spruce.json │ │ ├── cut_log_warped.json │ │ └── cut_melon.json │ │ ├── mill │ │ ├── mill_bean_powder.json │ │ ├── mill_coal_powder.json │ │ ├── mill_flour.json │ │ ├── mill_glowstone_dust.json │ │ ├── mill_gold_ore_milling.json │ │ ├── mill_iron_ore_milling.json │ │ ├── mill_macha_powder.json │ │ ├── mill_rice.json │ │ ├── mill_rice_powder.json │ │ └── mill_soy_milk.json │ │ └── mortar │ │ ├── mortar_bone_meal.json │ │ ├── mortar_mochi.json │ │ ├── mortar_mochi_2x.json │ │ ├── mortar_rice_unthreshing.json │ │ ├── mortar_rice_unthreshing_2x.json │ │ ├── mortar_rice_unthreshing_3x.json │ │ └── mortar_rice_unthreshing_4x.jsone │ └── minecraft │ └── tags │ └── blocks │ ├── mineable │ └── shovel.json │ └── needs_iron_tool.json └── main ├── java └── kogasastudio │ └── ashihara │ ├── Ashihara.java │ ├── CreativeModeTabsRegistryHandler.java │ ├── block │ ├── AbstractCropAge7.java │ ├── AbstractCropAge7Pickable.java │ ├── AbstractFallenLeavesBlock.java │ ├── AbstractFallingLeavesBlock.java │ ├── AdvancedFenceBlock.java │ ├── CandleBlock.java │ ├── CharlotteBlock.java │ ├── CherryVinesBlock.java │ ├── ChrysanthemumBushBlock.java │ ├── CucumberCropBlock.java │ ├── CuttingBoardBlock.java │ ├── DirtCookStoveBlock.java │ ├── DirtDepressionBlock.java │ ├── DoubleLanternBlock.java │ ├── FenceDecorationBlock.java │ ├── FenceExpansionBlock.java │ ├── HydrangeaBushBlock.java │ ├── IVariable.java │ ├── ImmatureRiceCropBlock.java │ ├── JinjaLanternBlock.java │ ├── LanternBlock.java │ ├── MarkableHangingLanternBlock.java │ ├── MealTableBlock.java │ ├── MillBlock.java │ ├── MortarBlock.java │ ├── PaddyFieldBlock.java │ ├── PailBlock.java │ ├── PotBlock.java │ ├── ReedBlock.java │ ├── RiceCropBlock.java │ ├── RiceDryingSticksBlock.java │ ├── ShorterReedBlock.java │ ├── StoneLanternBlock.java │ ├── TatamiBlock.java │ ├── TeaTreeBlock.java │ ├── TetsusenchiBlock.java │ ├── blockentity │ │ ├── AshiharaMachineBE.java │ │ ├── CandleBE.java │ │ ├── CharlotteBE.java │ │ ├── CuttingBoardBE.java │ │ ├── IFluidHandler.java │ │ ├── IRenderInWorldToolTip.java │ │ ├── IRenderSwitchable.java │ │ ├── MarkableLanternBE.java │ │ ├── MillBE.java │ │ ├── MortarBE.java │ │ ├── MultiBuiltBlockEntity.java │ │ ├── PailBE.java │ │ ├── TickableTileEntity.java │ │ └── util │ │ │ ├── RenderAutoSwitch.java │ │ │ ├── RenderSwitch.java │ │ │ └── ToolTipController.java │ ├── building │ │ ├── AbstractBeamBlock.java │ │ ├── AbstractWallBlock.java │ │ ├── BaseMultiBuiltBlock.java │ │ ├── ColumnBlock.java │ │ ├── IExpandable.java │ │ ├── IMultiBuiltBlock.java │ │ ├── StraightBarWindowBlock.java │ │ └── component │ │ │ ├── AdditionalComponent.java │ │ │ ├── BaseStone.java │ │ │ ├── Beam.java │ │ │ ├── BeamOblique.java │ │ │ ├── BendedSticker.java │ │ │ ├── BigTou.java │ │ │ ├── BuildingComponent.java │ │ │ ├── Clamp.java │ │ │ ├── ClampJoint.java │ │ │ ├── Column.java │ │ │ ├── ComponentStateDefinition.java │ │ │ ├── Connectable.java │ │ │ ├── Decoratable.java │ │ │ ├── Floor.java │ │ │ ├── HangingFish.java │ │ │ ├── HangingSticker.java │ │ │ ├── HangingStickerOblique.java │ │ │ ├── Hijiki.java │ │ │ ├── HijikiCornered.java │ │ │ ├── HijikiLong.java │ │ │ ├── HijikiStandAlong.java │ │ │ ├── Interactable.java │ │ │ ├── Occupation.java │ │ │ ├── OrientedFloor.java │ │ │ ├── QuarterFloor.java │ │ │ ├── QuarterOrientedFloor.java │ │ │ ├── QuarterStraightBarWindow.java │ │ │ ├── QuarterWall.java │ │ │ ├── RafterEnd.java │ │ │ ├── RafterPlanks.java │ │ │ ├── RafterStickingBeam.java │ │ │ ├── RoundTile.java │ │ │ ├── RoundTileHalf.java │ │ │ ├── ShortColumn.java │ │ │ ├── SmoothRafter.java │ │ │ ├── SteepRafter.java │ │ │ ├── StraightBarWindow.java │ │ │ ├── ThinRafter.java │ │ │ ├── Tou.java │ │ │ ├── TouOblique.java │ │ │ └── Wall.java │ ├── trees │ │ └── TreeGrowers.java │ └── woodcraft │ │ ├── KawakiBlock.java │ │ ├── KumimonoBlock.java │ │ ├── SimpleButtonBlock.java │ │ ├── SimpleFenceBlock.java │ │ ├── SimpleFenceGateBlock.java │ │ ├── SimpleLogBlock.java │ │ ├── SimplePlanksBlock.java │ │ ├── SimpleSlabBlock.java │ │ ├── SimpleStairsBlock.java │ │ ├── SimpleWoodBlock.java │ │ └── StrippableLogBlock.java │ ├── client │ ├── gui │ │ ├── FluidStackRenderer.java │ │ ├── GuideBookScreen.java │ │ ├── InWorldToolTipTipToast.java │ │ └── widget │ │ │ ├── AnimatedWidget.java │ │ │ ├── SpaceFixedWidget3D.java │ │ │ ├── TestButton.java │ │ │ └── TextField.java │ ├── models │ │ ├── CandleModel.java │ │ ├── MillStoneModel.java │ │ ├── PailItemModel.java │ │ ├── SujikabutoModel.java │ │ ├── baked │ │ │ ├── BakedModels.java │ │ │ ├── PailModel.java │ │ │ ├── TransformedBakedModel.java │ │ │ └── UnbakedModelPart.java │ │ └── geo │ │ │ ├── EdgeModel.java │ │ │ ├── GuideBookModel.java │ │ │ ├── HemmingCornerModel.java │ │ │ ├── HemmingEdgeModel.java │ │ │ ├── InternalAnimationController.java │ │ │ ├── InternalControlGeoModel.java │ │ │ ├── PlayerProxyModel.java │ │ │ ├── SimpleInternalControlGeoModel.java │ │ │ ├── TestButtonModel.java │ │ │ └── UIPanelModel.java │ ├── particles │ │ ├── MapleLeafParticle.java │ │ ├── ParticleRegistryHandler.java │ │ ├── RiceParticle.java │ │ └── SakuraParticle.java │ └── render │ │ ├── AshiharaAtlas.java │ │ ├── AshiharaRenderTypes.java │ │ ├── LayerRegistryHandler.java │ │ ├── PlayerAnimationProxy.java │ │ ├── SectionRenderContext.java │ │ ├── SimpleMultiBufferSource.java │ │ ├── WithLevelRenderer.java │ │ ├── geo │ │ ├── GuideBookRenderer.java │ │ └── worldui │ │ │ └── PanelRenderer.java │ │ ├── ister │ │ └── PailISTER.java │ │ └── ter │ │ ├── CandleTER.java │ │ ├── CharlotteBER.java │ │ ├── CuttingBoardTER.java │ │ ├── InWorldToolTipBER.java │ │ ├── MarkableLanternTER.java │ │ ├── MillTER.java │ │ ├── MortarTER.java │ │ ├── MultiBuiltBlockRenderer.java │ │ └── PailTER.java │ ├── compat │ ├── jei │ │ ├── JeiPlugin.java │ │ ├── category │ │ │ ├── BaseRecipeCategory.java │ │ │ ├── CuttingBoardRecipeCategory.java │ │ │ ├── MillRecipeCategory.java │ │ │ └── MortarRecipeCategory.java │ │ └── drawable │ │ │ └── NumberDrawable.java │ └── sodium │ │ ├── AshiharaMaterials.java │ │ └── AshiharaTerrainRenderPasses.java │ ├── event │ ├── BasicEventHandler.java │ ├── ClientEventSubscribeHandler.java │ ├── EntityEventHandler.java │ ├── ToastEventHandler.java │ └── WLREventHandler.java │ ├── fluid │ └── FluidRegistryHandler.java │ ├── helper │ ├── BlockActionHelper.java │ ├── DataHelper.java │ ├── FluidHelper.java │ ├── FontHelper.java │ ├── InWorldTipRenderHelper.java │ ├── InventoryHelper.java │ ├── MathHelper.java │ ├── ParticleHelper.java │ ├── PlayerAnimationHelper.java │ ├── PositionHelper.java │ ├── RenderHelper.java │ └── ShapeHelper.java │ ├── interaction │ └── recipes │ │ ├── CuttingBoardRecipe.java │ │ ├── MortarRecipe.java │ │ ├── base │ │ └── WrappedRecipe.java │ │ └── mill │ │ ├── MillRecipe.java │ │ └── MillRecipeSerializer.java │ ├── inventory │ ├── BEItemStackHandler.java │ └── container │ │ └── AshiharaCommonContainer.java │ ├── item │ ├── GuideBook.java │ ├── IBoundedInteract.java │ ├── IHasCustomModel.java │ ├── IHasHoldAnim.java │ ├── IHasPreSwing.java │ ├── IHeavyUse.java │ ├── Koishi.java │ ├── MinatoAqua.java │ ├── Otsuchi.java │ ├── Paddy.java │ ├── RiceSeedling.java │ ├── SujikaButo.java │ ├── block │ │ ├── BeamBlockItem.java │ │ ├── BuildingComponentItem.java │ │ ├── CandleBlockItem.java │ │ ├── DoubleBlockItem.java │ │ └── PailBlockItem.java │ └── food │ │ ├── DirtBallDon.java │ │ ├── EasyFood.java │ │ └── FoodBowled.java │ ├── loading │ ├── GuideBookLoader.java │ └── ReloadableResources.java │ ├── mixin │ ├── MixinLivingEntityRenderer.java │ ├── MixinLocalPlayer.java │ ├── MixinMinecraft.java │ ├── MixinPlayer.java │ ├── MixinRemotePlayer.java │ ├── MixinRenderType.java │ ├── iris │ │ ├── MixinSodiumPrograms.java │ │ └── MixinWorldRenderingPhase.java │ └── sodium │ │ ├── MixinDefaultMaterials.java │ │ ├── MixinDefaultTerrainRenderPasses.java │ │ └── MixinSodiumWorldRenderer.java │ ├── network │ ├── AnimatePlayerPacket.java │ ├── GuidebookProgressPacket.java │ └── OpenGuidebookPacket.java │ ├── registry │ ├── AdditionalModels.java │ ├── BlockEntities.java │ ├── Blocks.java │ ├── BuildingComponents.java │ ├── Capabilities.java │ ├── DataComponentTypes.java │ ├── Features.java │ ├── Items.java │ ├── KeyMappings.java │ ├── PacketPayloads.java │ ├── PlayerAnimations.java │ ├── RecipeSerializers.java │ ├── RecipeTypes.java │ ├── Shaders.java │ └── WorldGenEventRegistryHandler.java │ ├── sounds │ └── SoundEvents.java │ ├── utils │ ├── AshiharaItemTiers.java │ ├── AshiharaTags.java │ ├── AshiharaWoodTypes.java │ ├── BuildingComponentModelResourceLocation.java │ ├── ClientUtil.java │ ├── CuttingBoardToolType.java │ ├── InWorldTooltipInfoWrapper.java │ ├── ItemCodecs.java │ ├── ItemHoldAnimHandler.java │ ├── OptionalUtil.java │ ├── PrePostSwingHandler.java │ ├── WallTypes.java │ ├── json │ │ ├── JsonUtils.java │ │ └── serializer │ │ │ ├── BaseSerializer.java │ │ │ ├── CuttingBoardToolTypeSerializer.java │ │ │ ├── FluidStackSerializer.java │ │ │ ├── GuideBookPageSerializer.java │ │ │ ├── IngredientSerializer.java │ │ │ ├── ItemStackSerializer.java │ │ │ └── NonNullListSerializer.java │ ├── mixin │ │ ├── PlayerHandleAttackTickResetProvider.java │ │ └── PlayerProxyProvider.java │ └── shape │ │ ├── DiscreteShapeType.java │ │ ├── VoxelShapeSerializer.java │ │ └── VoxelShapeType.java │ └── world │ ├── configuration │ └── WildCropConfiguration.java │ ├── feature │ └── WildCropFeature.java │ └── tree │ ├── BigCherryFoliagePlacer.java │ └── BigCherryTrunkPlacer.java └── resources ├── META-INF ├── accesstransformer.cfg ├── mods.toml └── neoforge.mods.toml ├── ashihara.mixins.json ├── ashihara.png ├── assets ├── ashihara │ ├── animations │ │ ├── entity │ │ │ └── player_proxy.animation.json │ │ ├── gui_panel_general.animation.json │ │ └── item │ │ │ └── guidebook.animation.json │ ├── blockstates │ │ ├── advanced_red_fence.json │ │ ├── advanced_spruce_fence.json │ │ ├── bamboo_bones_component.json │ │ ├── bonburi_lamp.json │ │ ├── candle.json │ │ ├── candlestick.json │ │ ├── charlotte.json │ │ ├── cherry_blossom.json │ │ ├── cherry_button.json │ │ ├── cherry_fence.json │ │ ├── cherry_fence_gate.json │ │ ├── cherry_log.json │ │ ├── cherry_planks.json │ │ ├── cherry_sapling.json │ │ ├── cherry_slab.json │ │ ├── cherry_stairs.json │ │ ├── cherry_vines.json │ │ ├── cherry_wood.json │ │ ├── chrysanthemum.json │ │ ├── cucumbers.json │ │ ├── cutting_board.json │ │ ├── cypress_skin_block.json │ │ ├── cypress_skin_component.json │ │ ├── cypress_skin_slab.json │ │ ├── cypress_skin_stairs.json │ │ ├── dirt_cookstove.json │ │ ├── dirt_depression.json │ │ ├── fallen_maple_leaves_red.json │ │ ├── fallen_sakura.json │ │ ├── gold_deco_component.json │ │ ├── gold_fence_decoration.json │ │ ├── gold_structural_component.json │ │ ├── green_wood_component.json │ │ ├── hexagonal_hanging_lantern.json │ │ ├── house_like_hanging_lantern.json │ │ ├── hydrangea_bush.json │ │ ├── immature_rice.json │ │ ├── jinja_lantern.json │ │ ├── lantern_long_red.json │ │ ├── lantern_long_white.json │ │ ├── maple_button.json │ │ ├── maple_fence.json │ │ ├── maple_fence_gate.json │ │ ├── maple_leaves_red.json │ │ ├── maple_log.json │ │ ├── maple_planks.json │ │ ├── maple_slab.json │ │ ├── maple_stairs.json │ │ ├── maple_wood.json │ │ ├── meal_table.json │ │ ├── mill.json │ │ ├── mortar.json │ │ ├── multi_built_block.json │ │ ├── oil.json │ │ ├── oil_plate_stick.json │ │ ├── pail.json │ │ ├── pot.json │ │ ├── potted_cherry_sapling.json │ │ ├── potted_red_maple_sapling.json │ │ ├── rammed_soil_component.json │ │ ├── red_fence.json │ │ ├── red_fence_expansion.json │ │ ├── red_fence_gate.json │ │ ├── red_kawaki.json │ │ ├── red_kumimono.json │ │ ├── red_maple_sapling.json │ │ ├── red_planks.json │ │ ├── red_slab.json │ │ ├── red_stairs.json │ │ ├── red_thick_column.json │ │ ├── red_thin_beam.json │ │ ├── red_wood_component.json │ │ ├── reed.json │ │ ├── rice_crop.json │ │ ├── rice_drying_sticks.json │ │ ├── shorter_reed.json │ │ ├── soy_beans.json │ │ ├── soy_milk.json │ │ ├── spruce_fence_expansion.json │ │ ├── spruce_wood_component.json │ │ ├── stone_component.json │ │ ├── stone_lantern.json │ │ ├── straight_bar_window_green.json │ │ ├── stripped_cherry_log.json │ │ ├── stripped_maple_log.json │ │ ├── stripped_red_log.json │ │ ├── sweet_potatoes.json │ │ ├── tatami.json │ │ ├── tea_tree.json │ │ ├── terracotta_tile_component.json │ │ ├── tetsusenchi.json │ │ ├── thin_white_soil_wall.json │ │ ├── water_field.json │ │ ├── white_soil_component.json │ │ ├── white_wood_component.json │ │ └── wild_rice.json │ ├── geo │ │ ├── assistance │ │ │ ├── indicator.geo.json │ │ │ ├── mortar_fluid_display_loc.geo.json │ │ │ └── mortar_item_display_loc.geo.json │ │ ├── block │ │ │ └── pot.geo.json │ │ ├── entity │ │ │ └── player_proxy.geo.json │ │ ├── golden_hemming_corner.geo.json │ │ ├── golden_hemming_edge.geo.json │ │ ├── item │ │ │ ├── guidebook.geo.json │ │ │ └── highlight_outline.geo.json │ │ ├── light_wood_edge.geo.json │ │ └── panel.geo.json │ ├── guidebook │ │ ├── en_us │ │ │ └── en_us.json │ │ └── zh_cn │ │ │ └── zh_cn.json │ ├── lang │ │ ├── en_us.json │ │ ├── ja_jp.json │ │ ├── la_la.json │ │ └── zh_cn.json │ ├── models │ │ ├── block │ │ │ ├── bamboo_bones_component.json │ │ │ ├── bloomed_hydrangea_bush.json │ │ │ ├── bonburi_lamp.json │ │ │ ├── building_blocks │ │ │ │ ├── advanced_fence │ │ │ │ │ ├── advanced_red_fence │ │ │ │ │ │ ├── arf_column_core.json │ │ │ │ │ │ ├── arf_column_mid.json │ │ │ │ │ │ ├── arf_column_short.json │ │ │ │ │ │ ├── arf_part.json │ │ │ │ │ │ └── arf_part_expansion.json │ │ │ │ │ ├── advanced_spruce_fence │ │ │ │ │ │ ├── arf_column_core.json │ │ │ │ │ │ ├── arf_column_mid.json │ │ │ │ │ │ ├── arf_column_short.json │ │ │ │ │ │ ├── arf_part.json │ │ │ │ │ │ └── arf_part_expansion.json │ │ │ │ │ ├── column_core.json │ │ │ │ │ ├── column_mid.json │ │ │ │ │ ├── column_short.json │ │ │ │ │ ├── decoration │ │ │ │ │ │ ├── gold_fence_decoration.json │ │ │ │ │ │ ├── gold_fence_decoration_cross.json │ │ │ │ │ │ └── gold_fence_orb.json │ │ │ │ │ ├── gold_expansion_decoration.json │ │ │ │ │ ├── part.json │ │ │ │ │ └── part_expansion.json │ │ │ │ ├── beam │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── ex │ │ │ │ │ │ ├── l_1.json │ │ │ │ │ │ ├── l_2.json │ │ │ │ │ │ ├── l_3.json │ │ │ │ │ │ ├── l_4.json │ │ │ │ │ │ ├── ng_l_1.json │ │ │ │ │ │ ├── ng_l_2.json │ │ │ │ │ │ ├── ng_l_3.json │ │ │ │ │ │ ├── ng_l_4.json │ │ │ │ │ │ ├── ng_r_1.json │ │ │ │ │ │ ├── ng_r_2.json │ │ │ │ │ │ ├── ng_r_3.json │ │ │ │ │ │ ├── ng_r_4.json │ │ │ │ │ │ ├── r_1.json │ │ │ │ │ │ ├── r_2.json │ │ │ │ │ │ ├── r_3.json │ │ │ │ │ │ └── r_4.json │ │ │ │ │ ├── n_1.json │ │ │ │ │ ├── n_2.json │ │ │ │ │ ├── n_3.json │ │ │ │ │ ├── n_4.json │ │ │ │ │ └── red │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ ├── ex │ │ │ │ │ │ ├── l_1.json │ │ │ │ │ │ ├── l_2.json │ │ │ │ │ │ ├── l_3.json │ │ │ │ │ │ ├── l_4.json │ │ │ │ │ │ ├── n_l_1.json │ │ │ │ │ │ ├── n_l_2.json │ │ │ │ │ │ ├── n_l_3.json │ │ │ │ │ │ ├── n_l_4.json │ │ │ │ │ │ ├── n_r_1.json │ │ │ │ │ │ ├── n_r_2.json │ │ │ │ │ │ ├── n_r_3.json │ │ │ │ │ │ ├── n_r_4.json │ │ │ │ │ │ ├── r_1.json │ │ │ │ │ │ ├── r_2.json │ │ │ │ │ │ ├── r_3.json │ │ │ │ │ │ └── r_4.json │ │ │ │ │ │ ├── n_1.json │ │ │ │ │ │ ├── n_2.json │ │ │ │ │ │ ├── n_3.json │ │ │ │ │ │ └── n_4.json │ │ │ │ ├── beam_wall │ │ │ │ │ ├── ex │ │ │ │ │ │ ├── plate_l_1.json │ │ │ │ │ │ ├── plate_l_2.json │ │ │ │ │ │ ├── plate_l_3.json │ │ │ │ │ │ ├── plate_l_4.json │ │ │ │ │ │ ├── plate_r_1.json │ │ │ │ │ │ ├── plate_r_2.json │ │ │ │ │ │ ├── plate_r_3.json │ │ │ │ │ │ └── plate_r_4.json │ │ │ │ │ ├── plate_1.json │ │ │ │ │ ├── plate_2.json │ │ │ │ │ ├── plate_3.json │ │ │ │ │ ├── plate_4.json │ │ │ │ │ └── white_soil │ │ │ │ │ │ ├── 1.json │ │ │ │ │ │ ├── 2.json │ │ │ │ │ │ ├── 3.json │ │ │ │ │ │ ├── 4.json │ │ │ │ │ │ └── ex │ │ │ │ │ │ ├── l_1.json │ │ │ │ │ │ ├── l_2.json │ │ │ │ │ │ ├── l_3.json │ │ │ │ │ │ ├── l_4.json │ │ │ │ │ │ ├── r_1.json │ │ │ │ │ │ ├── r_2.json │ │ │ │ │ │ ├── r_3.json │ │ │ │ │ │ └── r_4.json │ │ │ │ ├── column │ │ │ │ │ └── column_thick_red.json │ │ │ │ ├── decoration │ │ │ │ │ ├── gold_pin_fin_deco.json │ │ │ │ │ └── gold_pin_fin_n.json │ │ │ │ ├── kumimono │ │ │ │ │ ├── kawaki.json │ │ │ │ │ ├── kawaki_long_z.json │ │ │ │ │ ├── kumimono.json │ │ │ │ │ ├── red │ │ │ │ │ │ ├── kawaki.json │ │ │ │ │ │ ├── kawaki_long_z.json │ │ │ │ │ │ ├── kumimono.json │ │ │ │ │ │ ├── thick_beam_l.json │ │ │ │ │ │ └── thick_beam_r.json │ │ │ │ │ ├── red_kumimono_beam_long_z.json │ │ │ │ │ ├── thick_beam_l.json │ │ │ │ │ └── thick_beam_r.json │ │ │ │ ├── lanterns │ │ │ │ │ ├── lantern_long.json │ │ │ │ │ ├── lantern_long_red.json │ │ │ │ │ └── lantern_long_white.json │ │ │ │ └── wall │ │ │ │ │ ├── column_mid.json │ │ │ │ │ ├── expansions │ │ │ │ │ ├── ex_d.json │ │ │ │ │ ├── ex_l.json │ │ │ │ │ ├── ex_ld.json │ │ │ │ │ ├── ex_lu.json │ │ │ │ │ ├── ex_r.json │ │ │ │ │ ├── ex_rd.json │ │ │ │ │ ├── ex_ru.json │ │ │ │ │ ├── ex_u.json │ │ │ │ │ ├── tsw_d.json │ │ │ │ │ ├── tsw_l.json │ │ │ │ │ ├── tsw_ld.json │ │ │ │ │ ├── tsw_lu.json │ │ │ │ │ ├── tsw_r.json │ │ │ │ │ ├── tsw_rd.json │ │ │ │ │ ├── tsw_ru.json │ │ │ │ │ └── tsw_u.json │ │ │ │ │ ├── sbw_green.json │ │ │ │ │ ├── straight_bar_expansions │ │ │ │ │ ├── ex_e_d.json │ │ │ │ │ ├── ex_e_ld.json │ │ │ │ │ ├── ex_e_lu.json │ │ │ │ │ ├── ex_e_rd.json │ │ │ │ │ ├── ex_e_ru.json │ │ │ │ │ ├── ex_e_u.json │ │ │ │ │ ├── ex_l.json │ │ │ │ │ ├── ex_r.json │ │ │ │ │ ├── sbwg_e_d.json │ │ │ │ │ ├── sbwg_e_ld.json │ │ │ │ │ ├── sbwg_e_lu.json │ │ │ │ │ ├── sbwg_e_rd.json │ │ │ │ │ ├── sbwg_e_ru.json │ │ │ │ │ ├── sbwg_e_u.json │ │ │ │ │ ├── sbwg_l.json │ │ │ │ │ └── sbwg_r.json │ │ │ │ │ ├── straight_bar_window.json │ │ │ │ │ ├── wall_plate.json │ │ │ │ │ └── wall_thin_soil_white.json │ │ │ ├── candle.json │ │ │ ├── candle_air.json │ │ │ ├── candlestick.json │ │ │ ├── charlotte.json │ │ │ ├── cherry_blossom.json │ │ │ ├── cherry_blossom_vines_base.json │ │ │ ├── cherry_blossom_vines_front.json │ │ │ ├── cherry_blossom_vines_mid.json │ │ │ ├── cherry_blossom_vines_top.json │ │ │ ├── cherry_log.json │ │ │ ├── cherry_log_horizontal.json │ │ │ ├── cherry_sapling.json │ │ │ ├── cherry_vines.json │ │ │ ├── cherry_vines_top.json │ │ │ ├── cherry_woodcrafts │ │ │ │ ├── cherry_button.json │ │ │ │ ├── cherry_button_inventory.json │ │ │ │ ├── cherry_button_pressed.json │ │ │ │ ├── cherry_fence_gate.json │ │ │ │ ├── cherry_fence_gate_open.json │ │ │ │ ├── cherry_fence_gate_wall.json │ │ │ │ ├── cherry_fence_gate_wall_open.json │ │ │ │ ├── cherry_fence_inventory.json │ │ │ │ ├── cherry_fence_post.json │ │ │ │ ├── cherry_fence_side.json │ │ │ │ ├── cherry_planks.json │ │ │ │ ├── cherry_slab.json │ │ │ │ ├── cherry_slab_top.json │ │ │ │ ├── cherry_stairs.json │ │ │ │ ├── cherry_stairs_inner.json │ │ │ │ ├── cherry_stairs_outer.json │ │ │ │ ├── cherry_wood.json │ │ │ │ ├── potted_cherry_sapling.json │ │ │ │ ├── stripped_cherry_log.json │ │ │ │ └── stripped_cherry_log_horizontal.json │ │ │ ├── chrysanthemum.json │ │ │ ├── components │ │ │ │ ├── bamboo_wall_bones.json │ │ │ │ ├── bamboo_wall_bones_quarter.json │ │ │ │ ├── base_stone_0.json │ │ │ │ ├── base_stone_1.json │ │ │ │ ├── base_stone_2.json │ │ │ │ ├── cypress_roof.json │ │ │ │ ├── cypress_roof_corner.json │ │ │ │ ├── cypress_roof_edge.json │ │ │ │ ├── cypress_roof_edge_corner.json │ │ │ │ ├── cypress_roof_edge_layer_bottom.json │ │ │ │ ├── cypress_roof_edge_layer_top.json │ │ │ │ ├── cypress_roof_half.json │ │ │ │ ├── cypress_roof_quarter.json │ │ │ │ ├── cypress_roof_quarter_corner.json │ │ │ │ ├── cypress_roof_top.json │ │ │ │ ├── flat_terracotta_tile_roof.json │ │ │ │ ├── flat_terracotta_tile_roof_half.json │ │ │ │ ├── flat_terracotta_tile_roof_quarter.json │ │ │ │ ├── gold_pin_fin.json │ │ │ │ ├── gold_roof_edge_planks_decoration.json │ │ │ │ ├── green_straight_bar_window.json │ │ │ │ ├── green_straight_bar_window_all.json │ │ │ │ ├── green_straight_bar_window_all_quarter.json │ │ │ │ ├── green_straight_bar_window_down.json │ │ │ │ ├── green_straight_bar_window_down_quarter.json │ │ │ │ ├── green_straight_bar_window_quarter.json │ │ │ │ ├── green_straight_bar_window_up.json │ │ │ │ ├── green_straight_bar_window_up_quarter.json │ │ │ │ ├── oni_tile_1.json │ │ │ │ ├── oni_tile_1_oblique.json │ │ │ │ ├── rammed_soil_wall.json │ │ │ │ ├── rammed_soil_wall_quarter.json │ │ │ │ ├── red_beam.json │ │ │ │ ├── red_beam_a.json │ │ │ │ ├── red_beam_corner.json │ │ │ │ ├── red_beam_corner_painted_yellow.json │ │ │ │ ├── red_beam_l.json │ │ │ │ ├── red_beam_r.json │ │ │ │ ├── red_bended_stickers.json │ │ │ │ ├── red_big_tou.json │ │ │ │ ├── red_clamp.json │ │ │ │ ├── red_clamp_joint.json │ │ │ │ ├── red_column.json │ │ │ │ ├── red_column_short.json │ │ │ │ ├── red_frog_legs_liked_sticker.json │ │ │ │ ├── red_hanging_fish_pig_eye.json │ │ │ │ ├── red_hanging_sticker.json │ │ │ │ ├── red_hanging_sticker_corner.json │ │ │ │ ├── red_hanging_sticker_end.json │ │ │ │ ├── red_hanging_sticker_end_corner.json │ │ │ │ ├── red_hanging_sticker_end_corner_painted_yellow.json │ │ │ │ ├── red_hanging_sticker_end_painted_yellow.json │ │ │ │ ├── red_hijiki_a.json │ │ │ │ ├── red_hijiki_cornered_long.json │ │ │ │ ├── red_hijiki_cornered_normal.json │ │ │ │ ├── red_hijiki_cornered_normal_long.json │ │ │ │ ├── red_hijiki_l.json │ │ │ │ ├── red_hijiki_long.json │ │ │ │ ├── red_hijiki_r.json │ │ │ │ ├── red_hijiki_supporter.json │ │ │ │ ├── red_latticed_ceiling_white.json │ │ │ │ ├── red_latticed_ceiling_white_quarter.json │ │ │ │ ├── red_latticed_window.json │ │ │ │ ├── red_latticed_window_quarter.json │ │ │ │ ├── red_planks_floor.json │ │ │ │ ├── red_planks_floor_quarter.json │ │ │ │ ├── red_planks_wall.json │ │ │ │ ├── red_planks_wall_quarter.json │ │ │ │ ├── red_rafter_connector.json │ │ │ │ ├── red_rafter_end.json │ │ │ │ ├── red_rafter_sticking_beam.json │ │ │ │ ├── red_roof_edge_planks.json │ │ │ │ ├── red_smooth_rafter.json │ │ │ │ ├── red_steep_rafter.json │ │ │ │ ├── red_thick_column_short.json │ │ │ │ ├── red_thin_rafter.json │ │ │ │ ├── red_thin_rafter_connector.json │ │ │ │ ├── red_thin_rafter_painted_yellow.json │ │ │ │ ├── red_tou.json │ │ │ │ ├── red_tou_oni.json │ │ │ │ ├── roof_top_tiles_pile_1_1.json │ │ │ │ ├── roof_top_tiles_pile_1_1_oblique.json │ │ │ │ ├── roof_top_tiles_pile_1_2.json │ │ │ │ ├── roof_top_tiles_pile_1_2_oblique.json │ │ │ │ ├── roof_top_tiles_pile_1_4.json │ │ │ │ ├── roof_top_tiles_pile_1_4_oblique.json │ │ │ │ ├── roof_top_tiles_pile_flat.json │ │ │ │ ├── roof_top_tiles_pile_flat_oblique.json │ │ │ │ ├── roof_top_tiles_pile_start.json │ │ │ │ ├── round_terracotta_tile_1_1.json │ │ │ │ ├── round_terracotta_tile_1_1_half.json │ │ │ │ ├── round_terracotta_tile_1_1_oblique.json │ │ │ │ ├── round_terracotta_tile_1_2.json │ │ │ │ ├── round_terracotta_tile_1_2_half.json │ │ │ │ ├── round_terracotta_tile_1_2_oblique.json │ │ │ │ ├── round_terracotta_tile_1_4.json │ │ │ │ ├── round_terracotta_tile_1_4_half.json │ │ │ │ ├── round_terracotta_tile_1_4_oblique.json │ │ │ │ ├── round_terracotta_tile_end.json │ │ │ │ ├── round_terracotta_tile_flat.json │ │ │ │ ├── round_terracotta_tile_flat_half.json │ │ │ │ ├── round_terracotta_tile_flat_oblique.json │ │ │ │ ├── spruce_rafter_planks.json │ │ │ │ ├── spruce_rafter_planks_quarter.json │ │ │ │ ├── templates │ │ │ │ │ ├── flat_wall.json │ │ │ │ │ ├── flat_wall_quarter.json │ │ │ │ │ ├── full_floor.json │ │ │ │ │ ├── full_floor_quarter.json │ │ │ │ │ └── rafter_planks.json │ │ │ │ ├── terracotta_tile_roof_edge.json │ │ │ │ ├── terracotta_tile_roof_edge_corner.json │ │ │ │ ├── terracotta_tile_roof_top.json │ │ │ │ ├── white_rafter_planks.json │ │ │ │ ├── white_rafter_planks_quarter.json │ │ │ │ ├── white_soil_wall.json │ │ │ │ └── white_soil_wall_quarter.json │ │ │ ├── crops │ │ │ │ ├── cucumbers_stage0.json │ │ │ │ ├── cucumbers_stage1.json │ │ │ │ ├── cucumbers_stage2.json │ │ │ │ ├── cucumbers_stage2_full.json │ │ │ │ ├── cucumbers_stage3.json │ │ │ │ ├── cucumbers_stage3_full.json │ │ │ │ ├── soy_beans_stage0.json │ │ │ │ ├── soy_beans_stage1.json │ │ │ │ ├── soy_beans_stage2.json │ │ │ │ ├── soy_beans_stage3.json │ │ │ │ ├── sweet_potatoes_stage0.json │ │ │ │ ├── sweet_potatoes_stage1.json │ │ │ │ ├── sweet_potatoes_stage2.json │ │ │ │ └── sweet_potatoes_stage3.json │ │ │ ├── cross.json │ │ │ ├── cucumbers_age0_1.json │ │ │ ├── cucumbers_age0_2.json │ │ │ ├── cucumbers_age0_3.json │ │ │ ├── cucumbers_age1_1.json │ │ │ ├── cucumbers_age1_2.json │ │ │ ├── cucumbers_age1_3.json │ │ │ ├── cucumbers_age2_1.json │ │ │ ├── cucumbers_age2_1_with_fruits.json │ │ │ ├── cucumbers_age2_2.json │ │ │ ├── cucumbers_age2_2_with_fruits.json │ │ │ ├── cucumbers_age2_3.json │ │ │ ├── cucumbers_age2_3_with_fruits.json │ │ │ ├── cucumbers_age3_1.json │ │ │ ├── cucumbers_age3_1_with_fruits.json │ │ │ ├── cucumbers_age3_2.json │ │ │ ├── cucumbers_age3_2_with_fruits.json │ │ │ ├── cucumbers_age3_3.json │ │ │ ├── cucumbers_age3_3_with_fruits.json │ │ │ ├── cutting_board.json │ │ │ ├── cypress_blocks │ │ │ │ ├── cypress_skin_block.json │ │ │ │ ├── cypress_skin_slab.json │ │ │ │ ├── cypress_skin_slab_top.json │ │ │ │ ├── cypress_skin_stairs.json │ │ │ │ ├── cypress_skin_stairs_inner.json │ │ │ │ └── cypress_skin_stairs_outer.json │ │ │ ├── cypress_skin_component.json │ │ │ ├── dirt_cookstove.json │ │ │ ├── dirt_depression.json │ │ │ ├── double_block.json │ │ │ ├── drying_rice_dry.json │ │ │ ├── drying_rice_dry_upper.json │ │ │ ├── drying_rice_wet.json │ │ │ ├── drying_rice_wet_upper.json │ │ │ ├── fallen_leaves.json │ │ │ ├── fallen_maple_leaves_red.json │ │ │ ├── fallen_sakura.json │ │ │ ├── fluid │ │ │ │ ├── oil.json │ │ │ │ └── soy_milk.json │ │ │ ├── gold_component.json │ │ │ ├── green_wood_component.json │ │ │ ├── hexagonal_hanging_lantern.json │ │ │ ├── house_like_hanging_lantern.json │ │ │ ├── hydrangea_bush.json │ │ │ ├── jinja_lantern.json │ │ │ ├── lamp_base.json │ │ │ ├── maple_leaves_red.json │ │ │ ├── maple_log.json │ │ │ ├── maple_log_horizontal.json │ │ │ ├── maple_woodcrafts │ │ │ │ ├── maple_button.json │ │ │ │ ├── maple_button_inventory.json │ │ │ │ ├── maple_button_pressed.json │ │ │ │ ├── maple_fence_gate.json │ │ │ │ ├── maple_fence_gate_open.json │ │ │ │ ├── maple_fence_gate_wall.json │ │ │ │ ├── maple_fence_gate_wall_open.json │ │ │ │ ├── maple_fence_inventory.json │ │ │ │ ├── maple_fence_post.json │ │ │ │ ├── maple_fence_side.json │ │ │ │ ├── maple_planks.json │ │ │ │ ├── maple_slab.json │ │ │ │ ├── maple_slab_top.json │ │ │ │ ├── maple_stairs.json │ │ │ │ ├── maple_stairs_inner.json │ │ │ │ ├── maple_stairs_outer.json │ │ │ │ ├── maple_wood.json │ │ │ │ ├── potted_red_maple_sapling.json │ │ │ │ ├── stripped_maple_log.json │ │ │ │ └── stripped_maple_log_horizontal.json │ │ │ ├── meal_table.json │ │ │ ├── mill.json │ │ │ ├── millet_age0_0.json │ │ │ ├── millet_age0_1.json │ │ │ ├── millet_age1_0.json │ │ │ ├── millet_age1_1.json │ │ │ ├── millet_age2_0.json │ │ │ ├── millet_age2_1.json │ │ │ ├── millet_age3_0.json │ │ │ ├── millet_age3_1.json │ │ │ ├── mortar.json │ │ │ ├── mossy_stone_lantern.json │ │ │ ├── multi_built_block.json │ │ │ ├── oil_plate_stick.json │ │ │ ├── pail.json │ │ │ ├── plant_3x.json │ │ │ ├── pot.json │ │ │ ├── pot_lid.json │ │ │ ├── pot_lid_on_stove.json │ │ │ ├── pot_on_stove.json │ │ │ ├── rammed_soil_component.json │ │ │ ├── red_maple_sapling.json │ │ │ ├── red_wood_component.json │ │ │ ├── red_woodcrafts │ │ │ │ ├── red_fence_gate.json │ │ │ │ ├── red_fence_gate_open.json │ │ │ │ ├── red_fence_gate_wall.json │ │ │ │ ├── red_fence_gate_wall_open.json │ │ │ │ ├── red_fence_inventory.json │ │ │ │ ├── red_fence_post.json │ │ │ │ ├── red_fence_side.json │ │ │ │ ├── red_planks.json │ │ │ │ ├── red_slab.json │ │ │ │ ├── red_slab_top.json │ │ │ │ ├── red_stairs.json │ │ │ │ ├── red_stairs_inner.json │ │ │ │ ├── red_stairs_outer.json │ │ │ │ ├── stripped_red_log.json │ │ │ │ └── stripped_red_log_horizontal.json │ │ │ ├── reed_bottom.json │ │ │ ├── reed_top.json │ │ │ ├── rice_crop_age0_1.json │ │ │ ├── rice_crop_age0_2.json │ │ │ ├── rice_crop_age0_3.json │ │ │ ├── rice_crop_age1_1.json │ │ │ ├── rice_crop_age1_2.json │ │ │ ├── rice_crop_age1_3.json │ │ │ ├── rice_crop_age2_1.json │ │ │ ├── rice_crop_age2_2.json │ │ │ ├── rice_crop_age2_3.json │ │ │ ├── rice_crop_age3_1.json │ │ │ ├── rice_crop_age3_2.json │ │ │ ├── rice_crop_age3_3.json │ │ │ ├── rice_crop_age4_1.json │ │ │ ├── rice_crop_age4_2.json │ │ │ ├── rice_crop_age4_3.json │ │ │ ├── rice_crop_age5_1.json │ │ │ ├── rice_crop_age5_2.json │ │ │ ├── rice_crop_age5_3.json │ │ │ ├── rice_crop_age6_1.json │ │ │ ├── rice_crop_age6_2.json │ │ │ ├── rice_crop_age6_3.json │ │ │ ├── rice_drying_sticks_multiple.json │ │ │ ├── rice_drying_sticks_single.json │ │ │ ├── rice_seedlings_age0_1.json │ │ │ ├── rice_seedlings_age0_2.json │ │ │ ├── rice_seedlings_age0_3.json │ │ │ ├── rice_seedlings_age1_1.json │ │ │ ├── rice_seedlings_age1_2.json │ │ │ ├── rice_seedlings_age1_3.json │ │ │ ├── scallion_age0.json │ │ │ ├── scallion_age1.json │ │ │ ├── scallion_age2.json │ │ │ ├── scallion_age3.json │ │ │ ├── shorter_reed_bottom.json │ │ │ ├── shorter_reed_top.json │ │ │ ├── soy_beans_age0_1.json │ │ │ ├── soy_beans_age1_1.json │ │ │ ├── soy_beans_age2_1.json │ │ │ ├── soy_beans_age3_1.json │ │ │ ├── spruce_wood_component.json │ │ │ ├── stone_component.json │ │ │ ├── stone_lantern.json │ │ │ ├── stone_lantern_glass.json │ │ │ ├── sweet_potatoes_age0_1.json │ │ │ ├── sweet_potatoes_age1_1.json │ │ │ ├── sweet_potatoes_age2_1.json │ │ │ ├── sweet_potatoes_age3_1.json │ │ │ ├── tare_age0_0.json │ │ │ ├── tare_age0_1.json │ │ │ ├── tare_age1_0.json │ │ │ ├── tare_age1_1.json │ │ │ ├── tare_age2_0.json │ │ │ ├── tare_age2_1.json │ │ │ ├── tare_age3_0.json │ │ │ ├── tare_age3_1.json │ │ │ ├── tatami │ │ │ │ ├── edges │ │ │ │ │ ├── e.json │ │ │ │ │ ├── n.json │ │ │ │ │ ├── s.json │ │ │ │ │ ├── w.json │ │ │ │ │ ├── xcut.json │ │ │ │ │ └── zcut.json │ │ │ │ └── tatami.json │ │ │ ├── tea_tree │ │ │ │ ├── tea_blooms.json │ │ │ │ ├── tea_tree.json │ │ │ │ ├── tea_tree_age0.json │ │ │ │ ├── tea_tree_age1.json │ │ │ │ ├── tea_tree_age2.json │ │ │ │ └── tea_tree_fully_grown.json │ │ │ ├── terracotta_tile_component.json │ │ │ ├── tetsusenchi.json │ │ │ ├── wasabi_age0_0.json │ │ │ ├── wasabi_age0_1.json │ │ │ ├── wasabi_age1_0.json │ │ │ ├── wasabi_age1_1.json │ │ │ ├── wasabi_age2_0.json │ │ │ ├── wasabi_age2_1.json │ │ │ ├── wasabi_age3_0.json │ │ │ ├── wasabi_age3_1.json │ │ │ ├── water_field.json │ │ │ ├── water_field_dry.json │ │ │ ├── white_radish_age0_0.json │ │ │ ├── white_radish_age0_1.json │ │ │ ├── white_radish_age1_0.json │ │ │ ├── white_radish_age1_1.json │ │ │ ├── white_radish_age2_0.json │ │ │ ├── white_radish_age2_1.json │ │ │ ├── white_radish_age3_0.json │ │ │ ├── white_radish_age3_1.json │ │ │ ├── white_soil_component.json │ │ │ └── wild_rice.json │ │ └── item │ │ │ ├── advanced_fence.json │ │ │ ├── advanced_red_fence.json │ │ │ ├── advanced_spruce_fence.json │ │ │ ├── aqua.json │ │ │ ├── ashihara_icon.json │ │ │ ├── bamboo_material.json │ │ │ ├── bamboo_stick.json │ │ │ ├── bamboo_strips.json │ │ │ ├── bamboo_wall_bones.json │ │ │ ├── bamboo_wall_bones_quarter.json │ │ │ ├── base_stone.json │ │ │ ├── bean_powder.json │ │ │ ├── bloomed_hydrangea_bush.json │ │ │ ├── bonburi_lamp.json │ │ │ ├── brown_rice.json │ │ │ ├── candle.json │ │ │ ├── candlestick.json │ │ │ ├── charlotte.json │ │ │ ├── cherry_blossom.json │ │ │ ├── cherry_button.json │ │ │ ├── cherry_fence.json │ │ │ ├── cherry_fence_gate.json │ │ │ ├── cherry_log.json │ │ │ ├── cherry_planks.json │ │ │ ├── cherry_sapling.json │ │ │ ├── cherry_slab.json │ │ │ ├── cherry_stairs.json │ │ │ ├── cherry_vines.json │ │ │ ├── cherry_wood.json │ │ │ ├── chisel.json │ │ │ ├── chrysanthemum.json │ │ │ ├── chrysanthemum_flower.json │ │ │ ├── coal_powder.json │ │ │ ├── cooked_rice.json │ │ │ ├── cotton.json │ │ │ ├── cucumber.json │ │ │ ├── cutting_board.json │ │ │ ├── cypress_roof.json │ │ │ ├── cypress_roof_corner.json │ │ │ ├── cypress_roof_edge.json │ │ │ ├── cypress_roof_edge_corner.json │ │ │ ├── cypress_roof_edge_layer_bottom.json │ │ │ ├── cypress_roof_edge_layer_top.json │ │ │ ├── cypress_roof_half.json │ │ │ ├── cypress_roof_quarter.json │ │ │ ├── cypress_roof_quarter_corner.json │ │ │ ├── cypress_roof_top.json │ │ │ ├── cypress_skin_block.json │ │ │ ├── cypress_skin_slab.json │ │ │ ├── cypress_skin_stairs.json │ │ │ ├── daifuku.json │ │ │ ├── daifuku_kusa.json │ │ │ ├── daifuku_sakura.json │ │ │ ├── dango.json │ │ │ ├── dango_bean.json │ │ │ ├── dango_hanamie.json │ │ │ ├── dango_mitarashi.json │ │ │ ├── diamond_otsuchi.json │ │ │ ├── dirt_ball.json │ │ │ ├── dirt_ball_don.json │ │ │ ├── dirt_cookstove.json │ │ │ ├── dirt_depression.json │ │ │ ├── dried_bamboo.json │ │ │ ├── dried_rice_crop.json │ │ │ ├── dried_tea_leaf.json │ │ │ ├── fallen_maple_leaves_red.json │ │ │ ├── fallen_sakura.json │ │ │ ├── flat_terracotta_tile_roof.json │ │ │ ├── flat_terracotta_tile_roof_half.json │ │ │ ├── flat_terracotta_tile_roof_quarter.json │ │ │ ├── flour.json │ │ │ ├── gold_ore_shatter.json │ │ │ ├── gold_pin_fin.json │ │ │ ├── gold_roof_edge_planks_decoration.json │ │ │ ├── green_straight_bar_window.json │ │ │ ├── green_straight_bar_window_quarter.json │ │ │ ├── guidebook.json │ │ │ ├── hexagonal_hanging_lantern.json │ │ │ ├── house_like_hanging_lantern.json │ │ │ ├── hydrangea_bush.json │ │ │ ├── iron_ore_shatter.json │ │ │ ├── iron_otsuchi.json │ │ │ ├── jinja_lantern.json │ │ │ ├── koishi.json │ │ │ ├── lantern_long_red.json │ │ │ ├── lantern_long_white.json │ │ │ ├── lime_powder.json │ │ │ ├── macha_powder.json │ │ │ ├── maple_button.json │ │ │ ├── maple_fence.json │ │ │ ├── maple_fence_gate.json │ │ │ ├── maple_leaves_red.json │ │ │ ├── maple_log.json │ │ │ ├── maple_planks.json │ │ │ ├── maple_slab.json │ │ │ ├── maple_stairs.json │ │ │ ├── maple_wood.json │ │ │ ├── meal_table.json │ │ │ ├── mill.json │ │ │ ├── mochi.json │ │ │ ├── mortar.json │ │ │ ├── multi_red_thick_column.json │ │ │ ├── oil_bucket.json │ │ │ ├── oil_plate_stick.json │ │ │ ├── oni_tile_1.json │ │ │ ├── oni_tile_1_oblique.json │ │ │ ├── onigiri.json │ │ │ ├── otsuchi.json │ │ │ ├── paddy.json │ │ │ ├── paddy_pile.json │ │ │ ├── pail.json │ │ │ ├── pestle.json │ │ │ ├── pot.json │ │ │ ├── pot_lid.json │ │ │ ├── rammed_soil.json │ │ │ ├── rammed_soil_wall.json │ │ │ ├── rammed_soil_wall_quarter.json │ │ │ ├── red_beam.json │ │ │ ├── red_beam_corner.json │ │ │ ├── red_bended_stickers.json │ │ │ ├── red_big_tou.json │ │ │ ├── red_clamp.json │ │ │ ├── red_clamp_joint.json │ │ │ ├── red_column.json │ │ │ ├── red_column_short.json │ │ │ ├── red_fence.json │ │ │ ├── red_fence_gate.json │ │ │ ├── red_frog_legs_liked_sticker.json │ │ │ ├── red_hanging_fish_pig_eye.json │ │ │ ├── red_hanging_sticker.json │ │ │ ├── red_hanging_sticker_corner.json │ │ │ ├── red_hijiki.json │ │ │ ├── red_hijiki_connector.json │ │ │ ├── red_hijiki_corner_long.json │ │ │ ├── red_hijiki_corner_normal.json │ │ │ ├── red_hijiki_long.json │ │ │ ├── red_hijiki_supporter.json │ │ │ ├── red_kawaki.json │ │ │ ├── red_kumimono.json │ │ │ ├── red_latticed_ceiling_white.json │ │ │ ├── red_latticed_ceiling_white_quarter.json │ │ │ ├── red_latticed_window.json │ │ │ ├── red_latticed_window_quarter.json │ │ │ ├── red_maple_sapling.json │ │ │ ├── red_oni_tou.json │ │ │ ├── red_planks.json │ │ │ ├── red_planks_floor.json │ │ │ ├── red_planks_floor_quarter.json │ │ │ ├── red_planks_wall.json │ │ │ ├── red_planks_wall_quarter.json │ │ │ ├── red_rafter_connector.json │ │ │ ├── red_rafter_end.json │ │ │ ├── red_rafter_sticking_beam.json │ │ │ ├── red_roof_edge_planks.json │ │ │ ├── red_slab.json │ │ │ ├── red_smooth_rafter.json │ │ │ ├── red_stairs.json │ │ │ ├── red_steep_rafter.json │ │ │ ├── red_thick_column.json │ │ │ ├── red_thick_column_short.json │ │ │ ├── red_thin_beam.json │ │ │ ├── red_thin_rafter.json │ │ │ ├── red_thin_rafter_connector.json │ │ │ ├── red_tou.json │ │ │ ├── red_tou_oblique.json │ │ │ ├── reed.json │ │ │ ├── rice.json │ │ │ ├── rice_crop_item.json │ │ │ ├── rice_drying_sticks.json │ │ │ ├── rice_powder.json │ │ │ ├── rice_seedling.json │ │ │ ├── roasted_sweet_potato.json │ │ │ ├── roof_top_tiles_pile_1_1.json │ │ │ ├── roof_top_tiles_pile_1_1_oblique.json │ │ │ ├── roof_top_tiles_pile_1_2.json │ │ │ ├── roof_top_tiles_pile_1_2_oblique.json │ │ │ ├── roof_top_tiles_pile_1_4.json │ │ │ ├── roof_top_tiles_pile_1_4_oblique.json │ │ │ ├── roof_top_tiles_pile_flat.json │ │ │ ├── roof_top_tiles_pile_flat_oblique.json │ │ │ ├── roof_top_tiles_pile_start.json │ │ │ ├── round_terracotta_tile_1_1.json │ │ │ ├── round_terracotta_tile_1_1_half.json │ │ │ ├── round_terracotta_tile_1_1_oblique.json │ │ │ ├── round_terracotta_tile_1_2.json │ │ │ ├── round_terracotta_tile_1_2_half.json │ │ │ ├── round_terracotta_tile_1_2_oblique.json │ │ │ ├── round_terracotta_tile_1_4.json │ │ │ ├── round_terracotta_tile_1_4_half.json │ │ │ ├── round_terracotta_tile_1_4_oblique.json │ │ │ ├── round_terracotta_tile_end.json │ │ │ ├── round_terracotta_tile_flat.json │ │ │ ├── round_terracotta_tile_flat_half.json │ │ │ ├── round_terracotta_tile_flat_oblique.json │ │ │ ├── sakura.json │ │ │ ├── sakura_petal.json │ │ │ ├── sakuramochi.json │ │ │ ├── salt.json │ │ │ ├── shorter_reed.json │ │ │ ├── soy_bean.json │ │ │ ├── soy_milk_bucket.json │ │ │ ├── spruce_rafter_planks.json │ │ │ ├── spruce_rafter_planks_quarter.json │ │ │ ├── stone_lantern.json │ │ │ ├── stone_shatter.json │ │ │ ├── straight_bar_window_green.json │ │ │ ├── straw.json │ │ │ ├── stripped_cherry_log.json │ │ │ ├── stripped_maple_log.json │ │ │ ├── stripped_red_log.json │ │ │ ├── sujikabuto.json │ │ │ ├── sushi_basic.json │ │ │ ├── sushi_raw_fish.json │ │ │ ├── sushi_sakura.json │ │ │ ├── sushi_tamago.json │ │ │ ├── sweet_potato.json │ │ │ ├── tachi.json │ │ │ ├── tamago.json │ │ │ ├── tatami.json │ │ │ ├── tea_flower.json │ │ │ ├── tea_leaf.json │ │ │ ├── tea_seeds.json │ │ │ ├── terracotta_tile_roof_edge.json │ │ │ ├── terracotta_tile_roof_edge_corner.json │ │ │ ├── terracotta_tile_roof_top.json │ │ │ ├── tetsusenchi.json │ │ │ ├── thin_white_soil_wall.json │ │ │ ├── tofu.json │ │ │ ├── tomato.json │ │ │ ├── water_field.json │ │ │ ├── white_rafter_planks.json │ │ │ ├── white_rafter_planks_quarter.json │ │ │ ├── white_soil_wall.json │ │ │ ├── white_soil_wall_quarter.json │ │ │ ├── wild_rice.json │ │ │ ├── wood_otsuchi.json │ │ │ └── wooden_hammer.json │ ├── particles │ │ ├── maple_leaf.json │ │ ├── rice.json │ │ └── sakura.json │ ├── shaders │ │ └── core │ │ │ ├── chunk_entity_cutout_translucent.fsh │ │ │ ├── chunk_entity_cutout_translucent.json │ │ │ ├── chunk_entity_cutout_translucent.vsh │ │ │ ├── chunk_entity_solid.fsh │ │ │ ├── chunk_entity_solid.json │ │ │ └── chunk_entity_solid.vsh │ ├── sounds.json │ ├── sounds │ │ └── unthresh.ogg │ └── textures │ │ ├── armors │ │ ├── sujikabuto.png │ │ └── sujikabuto_1.png │ │ ├── assistants │ │ ├── cereals_level.png │ │ └── processed_level.png │ │ ├── block │ │ ├── bonburi_lamp.png │ │ ├── building_blocks │ │ │ └── walls │ │ │ │ └── wall_soil_white.png │ │ ├── candle.png │ │ ├── candle_java.png │ │ ├── candlestick.png │ │ ├── charlotte.png │ │ ├── cherry_alternatives.png │ │ ├── cherry_blossom.png │ │ ├── cherry_log.png │ │ ├── cherry_log_top.png │ │ ├── cherry_sapling.png │ │ ├── cherry_vines.png │ │ ├── chrysanthemum.png │ │ ├── components │ │ │ ├── bamboo_wall_bones.png │ │ │ ├── base_stone.png │ │ │ ├── bottom_mark.png │ │ │ ├── column_thick_red.png │ │ │ ├── column_thick_red_top.png │ │ │ ├── corner_mark.png │ │ │ ├── cypress_side.png │ │ │ ├── cypress_skin.png │ │ │ ├── cypress_skin_corner.png │ │ │ ├── flat_terracotta_tile.png │ │ │ ├── gold_pin_fin.png │ │ │ ├── gold_roof_edge_planks_decoration.png │ │ │ ├── gold_roof_edge_planks_decoration_sculpted.png │ │ │ ├── oni_tile_1.png │ │ │ ├── rammed_soil.png │ │ │ ├── red_beam.png │ │ │ ├── red_hanging_fish_1.png │ │ │ ├── red_planks.png │ │ │ ├── red_tou.png │ │ │ ├── roof_top_tiles_pile.png │ │ │ ├── round_terracotta_tile.png │ │ │ ├── slope_mark.png │ │ │ ├── spruce_planks.png │ │ │ ├── straight_bar_window_green.png │ │ │ ├── top_mark.png │ │ │ └── white_soil.png │ │ ├── crops │ │ │ ├── cucumbers_0.png │ │ │ ├── cucumbers_1.png │ │ │ ├── cucumbers_2.png │ │ │ ├── cucumbers_2_full.png │ │ │ ├── cucumbers_3.png │ │ │ ├── cucumbers_3_full.png │ │ │ ├── cucumbers_age0.png │ │ │ ├── cucumbers_age1.png │ │ │ ├── cucumbers_age2.png │ │ │ ├── cucumbers_age3.png │ │ │ ├── millet_age0.png │ │ │ ├── millet_age1.png │ │ │ ├── millet_age2_3.png │ │ │ ├── rice_crop_age0.png │ │ │ ├── rice_crop_age1.png │ │ │ ├── rice_crop_age2.png │ │ │ ├── rice_crop_age3.png │ │ │ ├── rice_ears.png │ │ │ ├── rice_seedlings_age0.png │ │ │ ├── rice_seedlings_age1.png │ │ │ ├── scallion_age0.png │ │ │ ├── scallion_age1.png │ │ │ ├── scallion_age2.png │ │ │ ├── scallion_age3.png │ │ │ ├── soy_beans_0.png │ │ │ ├── soy_beans_1.png │ │ │ ├── soy_beans_2.png │ │ │ ├── soy_beans_3.png │ │ │ ├── soy_beans_age0.png │ │ │ ├── soy_beans_age1.png │ │ │ ├── soy_beans_age2_3.png │ │ │ ├── sweet_potatoes_0.png │ │ │ ├── sweet_potatoes_1.png │ │ │ ├── sweet_potatoes_2.png │ │ │ ├── sweet_potatoes_3.png │ │ │ ├── sweet_potatoes_age0.png │ │ │ ├── sweet_potatoes_age1_2.png │ │ │ ├── sweet_potatoes_age3.png │ │ │ ├── tare_age0.png │ │ │ ├── tare_age1_2_3.png │ │ │ ├── wasabi_age0.png │ │ │ ├── wasabi_ageall.png │ │ │ ├── white_radish_age0_1.png │ │ │ └── white_radish_age2_3.png │ │ ├── cutting_board.png │ │ ├── cypress_bark.png │ │ ├── cypress_side.png │ │ ├── cypress_skin.png │ │ ├── dirt_cookstove.png │ │ ├── dirt_depression.png │ │ ├── drying_rice.png │ │ ├── gold_expansion_decoration.png │ │ ├── gold_fence_decoration.png │ │ ├── gold_fence_orb.png │ │ ├── gold_pin_fin_deco.png │ │ ├── gold_pin_fin_n.png │ │ ├── hanging_house_like_lantern.png │ │ ├── hexagonal_hanging_lantern.png │ │ ├── hydrangea_altleaves_1.png │ │ ├── hydrangea_altleaves_2.png │ │ ├── hydrangea_blossom_pink.png │ │ ├── hydrangea_blossom_vioblue.png │ │ ├── hydrangea_blossom_violet.png │ │ ├── jinja_lantern │ │ │ └── stick.png │ │ ├── lamp_base.png │ │ ├── lanterns │ │ │ ├── bodies │ │ │ │ ├── long_red.png │ │ │ │ └── long_white.png │ │ │ └── icons │ │ │ │ ├── tomoe.png │ │ │ │ └── yamasakura.png │ │ ├── maple_leaves_red.png │ │ ├── maple_log.png │ │ ├── maple_log_top.png │ │ ├── meal_table.png │ │ ├── mill_stone.png │ │ ├── millstone.png │ │ ├── mortar.png │ │ ├── mossy_stone_lantern.png │ │ ├── pail.png │ │ ├── pail_multiple.png │ │ ├── pot.png │ │ ├── red_maple_sapling.png │ │ ├── reed_buttom.png │ │ ├── reed_top.png │ │ ├── rice_drying_sticks.png │ │ ├── shorter_reed_bottom.png │ │ ├── shorter_reed_top.png │ │ ├── stone_lantern.png │ │ ├── stone_lantern_glass.png │ │ ├── straight_bar_window_green.png │ │ ├── tatami │ │ │ ├── tatami.png │ │ │ ├── tatami_bottom.png │ │ │ ├── tatami_edge.png │ │ │ └── tatami_side.png │ │ ├── tea_tree │ │ │ ├── tea_blooms.png │ │ │ ├── tea_tree.png │ │ │ ├── tea_tree_age0.png │ │ │ ├── tea_tree_age1.png │ │ │ └── tea_tree_fully_grown.png │ │ ├── tetsusenchi.png │ │ ├── water_field.png │ │ ├── wild_rice.png │ │ └── woodcrafts │ │ │ ├── cherry_planks.png │ │ │ ├── column_thick_red.png │ │ │ ├── column_thick_red_top.png │ │ │ ├── maple_planks.png │ │ │ ├── oak_expansion.png │ │ │ ├── oak_fence.png │ │ │ ├── red_beam.png │ │ │ ├── red_expansion.png │ │ │ ├── red_fence.png │ │ │ ├── red_kumimono.png │ │ │ ├── red_planks.png │ │ │ ├── spruce_expansion.png │ │ │ ├── spruce_fence.png │ │ │ ├── spruce_kumimono.png │ │ │ ├── stripped_cherry_log.png │ │ │ ├── stripped_cherry_log_top.png │ │ │ ├── stripped_maple_log.png │ │ │ ├── stripped_maple_log_top.png │ │ │ ├── stripped_red_log.png │ │ │ └── stripped_red_log_top.png │ │ ├── fluid │ │ ├── milky_liquid_flow.png │ │ ├── milky_liquid_flow.png.mcmeta │ │ ├── milky_liquid_still.png │ │ ├── milky_liquid_still.png.mcmeta │ │ ├── water_flow.png │ │ ├── water_flow.png.mcmeta │ │ ├── water_still.png │ │ └── water_still.png.mcmeta │ │ ├── geo │ │ ├── empty.png │ │ ├── golden_hemming.png │ │ ├── guidebook.png │ │ ├── guidebook_debug.png │ │ ├── highlight_outline.png │ │ ├── highlight_outline.png.mcmeta │ │ ├── indicator.png │ │ ├── mortar_progress_bar.png │ │ ├── mortar_progress_bar_outline.png │ │ └── wooden_edge.png │ │ ├── gui │ │ ├── charlotte.png │ │ ├── jei │ │ │ ├── mill.png │ │ │ └── mortar.png │ │ ├── meal_table.png │ │ ├── mill.png │ │ ├── mortar.png │ │ ├── nihil.png │ │ └── toast │ │ │ └── check_in_world_tooltip.png │ │ ├── icons │ │ ├── hanataki.png │ │ ├── otakobe.png │ │ ├── reinakakobo.png │ │ ├── tomoe.png │ │ └── yamasakura.png │ │ ├── item │ │ ├── ITEM_shorter_reed.png │ │ ├── aqua.png │ │ ├── ashihara_icon.png │ │ ├── bamboo_cup.png │ │ ├── bamboo_material.png │ │ ├── bamboo_stick.png │ │ ├── bamboo_strips.png │ │ ├── bean_powder.png │ │ ├── bonburi_lamp.png │ │ ├── brown_rice.png │ │ ├── candlestick.png │ │ ├── cherry_vines.png │ │ ├── chisel.png │ │ ├── chrysanthemum_flower.png │ │ ├── coal_powder.png │ │ ├── cooked_rice.png │ │ ├── cotton.png │ │ ├── cucumber.png │ │ ├── daifuku.png │ │ ├── daifuku_kusa.png │ │ ├── daifuku_sakura.png │ │ ├── dango.png │ │ ├── dango_bean.png │ │ ├── dango_hanamie.png │ │ ├── dango_mitarashi.png │ │ ├── dirt_ball.png │ │ ├── dirt_ball_don.png │ │ ├── dried_bamboo.png │ │ ├── dried_rice_crop.png │ │ ├── dried_tea_leaf.png │ │ ├── flour.png │ │ ├── gold_ore_shatter.png │ │ ├── guidebook.png │ │ ├── iron_ore_shatter.png │ │ ├── koishi.png │ │ ├── lacquered_bowl.png │ │ ├── lime_powder.png │ │ ├── liquids │ │ │ ├── bucket.container.png │ │ │ ├── bucket.contents.png │ │ │ ├── oil_bucket.png │ │ │ └── soy_milk_bucket.png │ │ ├── macha_powder.png │ │ ├── mochi.png │ │ ├── oil_plate_stick.png │ │ ├── onigiri.png │ │ ├── otsuchi.png │ │ ├── otsuchi_tiers │ │ │ ├── diamond.png │ │ │ ├── iron.png │ │ │ └── wood.png │ │ ├── paddy.png │ │ ├── paddy_pile.png │ │ ├── pestle.png │ │ ├── rammed_soil.png │ │ ├── red_beam.png │ │ ├── rice.png │ │ ├── rice_crop_item.png │ │ ├── rice_powder.png │ │ ├── rice_seedling.png │ │ ├── roasted_sweet_potato.png │ │ ├── sakura.png │ │ ├── sakura_petal.png │ │ ├── sakuramochi.png │ │ ├── salt.png │ │ ├── scallion.png │ │ ├── soy_bean.png │ │ ├── stone_shatter.png │ │ ├── straw.png │ │ ├── sujikabuto.png │ │ ├── sushi_basic.png │ │ ├── sushi_raw_fish.png │ │ ├── sushi_sakura.png │ │ ├── sushi_tamago.png │ │ ├── sweet_potato.png │ │ ├── tachi.png │ │ ├── tamago.png │ │ ├── tare_seed.png │ │ ├── tea_flower.png │ │ ├── tea_leaf.png │ │ ├── tea_seeds.png │ │ ├── tofu.png │ │ ├── tomato.png │ │ ├── wasabi.png │ │ └── wooden_hammer.png │ │ └── particle │ │ ├── maple_leaf_1.png │ │ ├── maple_leaf_2.png │ │ ├── rice1.png │ │ ├── rice2.png │ │ ├── sakura_1.png │ │ └── sakura_2.png └── minecraft │ └── atlases │ └── blocks.json ├── data ├── ashihara │ ├── loot_modifiers │ │ └── modify_grass.json │ ├── loot_table │ │ └── blocks │ │ │ ├── advanced_red_fence.json │ │ │ ├── advanced_spruce_fence.json │ │ │ ├── bonburi_lamp.json │ │ │ ├── candlestick.json │ │ │ ├── charlotte.json │ │ │ ├── cherry_blossom_vines.json │ │ │ ├── cherry_button.json │ │ │ ├── cherry_fence.json │ │ │ ├── cherry_fence_gate.json │ │ │ ├── cherry_log.json │ │ │ ├── cherry_planks.json │ │ │ ├── cherry_sapling.json │ │ │ ├── cherry_slab.json │ │ │ ├── cherry_stairs.json │ │ │ ├── cherry_wood.json │ │ │ ├── chrysanthemum.json │ │ │ ├── cucumbers.json │ │ │ ├── cutting_board.json │ │ │ ├── cypress_skin_block.json │ │ │ ├── cypress_skin_slab.json │ │ │ ├── cypress_skin_stairs.json │ │ │ ├── dirt_depression.json │ │ │ ├── fallen_maple_leaves_red.json │ │ │ ├── fallen_sakura.json │ │ │ ├── gold_fence_decoration.json │ │ │ ├── hexagonal_hanging_lantern.json │ │ │ ├── house_like_hanging_lantern.json │ │ │ ├── immature_rice.json │ │ │ ├── jinja_lantern.json │ │ │ ├── lantern_long_red.json │ │ │ ├── lantern_long_white.json │ │ │ ├── maple_button.json │ │ │ ├── maple_fence.json │ │ │ ├── maple_fence_gate.json │ │ │ ├── maple_log.json │ │ │ ├── maple_planks.json │ │ │ ├── maple_slab.json │ │ │ ├── maple_stairs.json │ │ │ ├── maple_wood.json │ │ │ ├── meal_table.json │ │ │ ├── mill.json │ │ │ ├── mortar.json │ │ │ ├── oil_plate_stick.json │ │ │ ├── pail.json │ │ │ ├── red_beam.json │ │ │ ├── red_fence.json │ │ │ ├── red_fence_expansion.json │ │ │ ├── red_fence_gate.json │ │ │ ├── red_kawaki.json │ │ │ ├── red_kumimono.json │ │ │ ├── red_maple_sapling.json │ │ │ ├── red_planks.json │ │ │ ├── red_slab.json │ │ │ ├── red_stairs.json │ │ │ ├── red_thick_column.json │ │ │ ├── reed.json │ │ │ ├── rice_crop.json │ │ │ ├── rice_drying_sticks.json │ │ │ ├── shorter_reed.json │ │ │ ├── soy_beans.json │ │ │ ├── spruce_fence_expansion.json │ │ │ ├── stone_lantern.json │ │ │ ├── straight_bar_window_green.json │ │ │ ├── stripped_cherry_log.json │ │ │ ├── stripped_red_log.json │ │ │ ├── sweet_potatoes.json │ │ │ ├── tatami.json │ │ │ ├── tea_tree.json │ │ │ ├── tetsusenchi.json │ │ │ ├── thin_white_soil_wall.json │ │ │ ├── water_field.json │ │ │ └── wild_rice.json │ ├── neoforge │ │ └── biome_modifier │ │ │ ├── add_vanilla_forest_great_cherry_trees.json │ │ │ └── wild_rice.json │ ├── recipe │ │ ├── bamboo_material.json │ │ ├── bamboo_stick.json │ │ ├── bamboo_strips.json │ │ ├── bonburi_lamp.json │ │ ├── candlestick.json │ │ ├── cherry_button.json │ │ ├── cherry_fence.json │ │ ├── cherry_fence_gate.json │ │ ├── cherry_planks.json │ │ ├── cherry_slab.json │ │ ├── cherry_stairs.json │ │ ├── cherry_wood.json │ │ ├── cooked_rice.json │ │ ├── cutting_board.json │ │ ├── daifuku.json │ │ ├── daifuku_kusa.json │ │ ├── daifuku_sakura.json │ │ ├── dango.json │ │ ├── dango_bean.json │ │ ├── dango_hanamie.json │ │ ├── dango_mitarashi.json │ │ ├── depolymerize_paddy.json │ │ ├── diamond_otsuchi.json │ │ ├── dirt_ball_don.json │ │ ├── dried_bamboo.json │ │ ├── dried_tea_leaf.json │ │ ├── hexagonal_hanging_lantern.json │ │ ├── house_like_hanging_lantern.json │ │ ├── iron_otsuchi.json │ │ ├── jinja_lantern.json │ │ ├── lantern_long_red.json │ │ ├── lantern_long_white.json │ │ ├── maple_button.json │ │ ├── maple_fence.json │ │ ├── maple_fence_gate.json │ │ ├── maple_planks.json │ │ ├── maple_slab.json │ │ ├── maple_stairs.json │ │ ├── maple_wood.json │ │ ├── meal_table.json │ │ ├── mill.json │ │ ├── mortar.json │ │ ├── mortar_brown_rice.json │ │ ├── mortar_rice.json │ │ ├── mortar_test_recipe.json │ │ ├── oil_plate_stick.json │ │ ├── onigiri.json │ │ ├── pail.json │ │ ├── pestle.json │ │ ├── polymerize_paddy_pile.json │ │ ├── red_fence.json │ │ ├── red_fence_gate.json │ │ ├── red_planks.json │ │ ├── red_slab.json │ │ ├── red_stairs.json │ │ ├── rice_drying_sticks.json │ │ ├── roasted_sweet_potato.json │ │ ├── roasted_sweet_potato_from_campfire.json │ │ ├── roasted_sweet_potato_from_smoking.json │ │ ├── sakura.json │ │ ├── sakura_petal.json │ │ ├── sakuramochi.json │ │ ├── stone_lantern.json │ │ ├── straight_bar_window.json │ │ ├── sujikabuto.json │ │ ├── sushi_basic.json │ │ ├── sushi_raw_fish.json │ │ ├── sushi_sakura.json │ │ ├── sushi_tamago.json │ │ ├── tamago.json │ │ ├── tatami.json │ │ ├── tetsusenchi.json │ │ └── wood_otsuchi.json │ ├── tags │ │ ├── block │ │ │ ├── advanced_fences.json │ │ │ ├── cherry_logs.json │ │ │ └── maple_logs.json │ │ └── item │ │ │ ├── cereal_processed.json │ │ │ ├── cereals.json │ │ │ ├── cherry_logs.json │ │ │ ├── maple_logs.json │ │ │ ├── mashable.json │ │ │ └── sauce_materials.json │ └── worldgen │ │ ├── biome │ │ └── cherry_forest.json │ │ ├── configured_feature │ │ ├── great_cherry_tree.json │ │ ├── red_maple_tree.json │ │ └── wild_rice.json │ │ └── placed_feature │ │ ├── vanilla_forest_great_cherry_trees.json │ │ └── wild_rice.json ├── minecraft │ ├── recipe │ │ ├── dirt.json │ │ ├── gold_shatter_to_gold_ingot.json │ │ ├── gold_shatter_to_gold_ingot_from_blasting.json │ │ ├── gravel.json │ │ ├── iron_shatter_to_iron_ingot.json │ │ └── iron_shatter_to_iron_ingot_from_blasting.json │ └── tags │ │ ├── block │ │ ├── fence_gates.json │ │ ├── flower_pots.json │ │ ├── leaves.json │ │ ├── logs_that_burn.json │ │ ├── mineable │ │ │ ├── axe.json │ │ │ └── pickaxe.json │ │ ├── planks.json │ │ ├── wooden_buttons.json │ │ ├── wooden_fences.json │ │ ├── wooden_slabs.json │ │ └── wooden_stairs.json │ │ ├── fluid │ │ └── water.json │ │ └── item │ │ ├── fence_gates.json │ │ ├── logs_that_burn.json │ │ ├── planks.json │ │ ├── wooden_buttons.json │ │ ├── wooden_fences.json │ │ ├── wooden_slabs.json │ │ └── wooden_stairs.json └── neoforge │ ├── loot_modifiers │ └── global_loot_modifiers.json │ └── tags │ ├── block │ └── stripped_logs.json │ └── item │ ├── axe.json │ ├── cooked_fishes.json │ ├── crops │ ├── cotton.json │ ├── cucumber.json │ ├── rice.json │ ├── sweet_potato.json │ ├── tea.json │ └── tomato.json │ ├── grain │ └── rice.json │ ├── knife.json │ └── stripped_logs.json ├── koishi.png ├── pack.mcmeta └── pack.png /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:water_field" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:water_field" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/java/kogasastudio/ashihara/block/IVariable.java: -------------------------------------------------------------------------------- 1 | package kogasastudio.ashihara.block; 2 | 3 | public interface IVariable> 4 | { 5 | T getType(); 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/kogasastudio/ashihara/item/IHasHoldAnim.java: -------------------------------------------------------------------------------- 1 | package kogasastudio.ashihara.item; 2 | 3 | public interface IHasHoldAnim 4 | { 5 | String getHoldAnim(); 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/kogasastudio/ashihara/utils/AshiharaWoodTypes.java: -------------------------------------------------------------------------------- 1 | package kogasastudio.ashihara.utils; 2 | 3 | public enum AshiharaWoodTypes 4 | { 5 | OAK, 6 | RED, 7 | SPRUCE, 8 | DARK 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/ashihara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/ashihara.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/bamboo_bones_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/bamboo_bones_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/cherry_blossom.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cherry_blossom" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/cherry_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cherry_woodcrafts/cherry_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/cherry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cherry_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/chrysanthemum.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/chrysanthemum" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/cypress_skin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cypress_blocks/cypress_skin_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/cypress_skin_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cypress_skin_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/dirt_depression.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/dirt_depression" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/fallen_maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/fallen_maple_leaves_red" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/fallen_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/fallen_sakura" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/gold_deco_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/gold_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/gold_structural_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/gold_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/green_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/green_wood_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/house_like_hanging_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/house_like_hanging_lantern" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/maple_leaves_red" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/maple_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/maple_woodcrafts/maple_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/meal_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/meal_table" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/multi_built_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/multi_built_block" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/fluid/oil" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/potted_cherry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/cherry_woodcrafts/potted_cherry_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/potted_red_maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/maple_woodcrafts/potted_red_maple_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/rammed_soil_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/rammed_soil_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/red_maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/red_maple_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/red_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/red_woodcrafts/red_planks" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/red_thick_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/building_blocks/column/column_thick_red" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/red_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/red_wood_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/reed.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "half=lower": { 4 | "model": "ashihara:block/reed_bottom" 5 | }, 6 | "half=upper": { 7 | "model": "ashihara:block/reed_top" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/soy_milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/fluid/soy_milk" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/spruce_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/spruce_wood_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/stone_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/stone_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/terracotta_tile_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/terracotta_tile_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/white_soil_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/white_soil_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/white_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/white_soil_component" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/blockstates/wild_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "ashihara:block/wild_rice" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/bamboo_bones_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/bamboo_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/l_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/l_1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/l_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/l_2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/l_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/l_3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/l_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/l_4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_l_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_l_1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_l_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_l_2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_l_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_l_3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_l_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_l_4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_r_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_r_1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_r_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_r_2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_r_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_r_3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/n_r_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/ng_r_4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/r_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/r_1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/r_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/r_2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/r_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/r_3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/ex/r_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/ex/r_4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/n_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/n_1", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/n_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/n_2", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/n_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/n_3", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/beam/red/n_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/beam/n_4", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/kumimono/red/kawaki.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/kawaki", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/kumimono/red/kawaki_long_z.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/kawaki_long_z", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/kumimono/red/kumimono.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/kumimono", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/kumimono/red/thick_beam_l.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/thick_beam_l", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/kumimono/red/thick_beam_r.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/thick_beam_r", 3 | "textures": { 4 | "wood": "ashihara:block/woodcrafts/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/expansions/tsw_d.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/expansions/ex_d", 3 | "textures": { 4 | "wall": "ashihara:block/building_blocks/walls/wall_soil_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/expansions/tsw_l.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/expansions/ex_l", 3 | "textures": { 4 | "wall": "ashihara:block/building_blocks/walls/wall_soil_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/expansions/tsw_r.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/expansions/ex_r", 3 | "textures": { 4 | "wall": "ashihara:block/building_blocks/walls/wall_soil_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/expansions/tsw_u.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/expansions/ex_u", 3 | "textures": { 4 | "wall": "ashihara:block/building_blocks/walls/wall_soil_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/sbw_green.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/straight_bar_window", 3 | "textures": { 4 | "window": "ashihara:block/straight_bar_window_green" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/building_blocks/wall/wall_thin_soil_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/wall_plate", 3 | "textures": { 4 | "wall": "ashihara:block/building_blocks/walls/wall_soil_white" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/candle_air.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/air", 3 | "textures": { 4 | "particle": "minecraft:block/snow" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_blossom_vines_base.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/cherry_blossom_vines_base" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_blossom_vines_front.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/cherry_blossom_vines_front" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_blossom_vines_mid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/cherry_blossom_vines_mid" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_blossom_vines_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/cherry_blossom_vines_top" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "ashihara:block/cherry_log_top", 5 | "side": "ashihara:block/cherry_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "ashihara:block/cherry_log_top", 5 | "side": "ashihara:block/cherry_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/cherry_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "ashihara:block/woodcrafts/cherry_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/cherry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "ashihara:block/cherry_log", 5 | "side": "ashihara:block/cherry_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cherry_woodcrafts/potted_cherry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "ashihara:block/cherry_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/chrysanthemum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/chrysanthemum" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/rammed_soil_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall", 3 | "textures": { 4 | "tex": "ashihara:block/components/rammed_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/rammed_soil_wall_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall_quarter", 3 | "textures": { 4 | "tex": "ashihara:block/components/rammed_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/red_planks_floor.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor", 3 | "textures": { 4 | "plank": "ashihara:block/components/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/red_planks_floor_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor_quarter", 3 | "textures": { 4 | "plank": "ashihara:block/components/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/red_planks_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall", 3 | "textures": { 4 | "tex": "ashihara:block/components/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/red_planks_wall_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall_quarter", 3 | "textures": { 4 | "tex": "ashihara:block/components/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/spruce_rafter_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/rafter_planks", 3 | "textures": { 4 | "planks": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/spruce_rafter_planks_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor_quarter", 3 | "textures": { 4 | "plank": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/white_rafter_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/rafter_planks", 3 | "textures": { 4 | "planks": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/white_rafter_planks_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor_quarter", 3 | "textures": { 4 | "plank": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/white_soil_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall", 3 | "textures": { 4 | "tex": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/components/white_soil_wall_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/flat_wall_quarter", 3 | "textures": { 4 | "tex": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage2_full.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_2_full" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/cucumbers_stage3_full.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/crops/cucumbers_3_full" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/soy_beans_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/soy_beans_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/soy_beans_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/soy_beans_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/soy_beans_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/soy_beans_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/soy_beans_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/soy_beans_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/sweet_potatoes_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/sweet_potatoes_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/sweet_potatoes_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/sweet_potatoes_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/sweet_potatoes_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/sweet_potatoes_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/crops/sweet_potatoes_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "ashihara:block/crops/sweet_potatoes_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cypress_blocks/cypress_skin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "ashihara:block/cypress_skin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/cypress_skin_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "ashihara:block/components/cypress_skin" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/fallen_maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/fallen_leaves", 3 | "textures": { 4 | "leaves": "ashihara:block/maple_leaves_red" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/fallen_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/fallen_leaves", 3 | "textures": { 4 | "leaves": "ashihara:block/cherry_blossom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/fluid/oil.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "minecraft:block/water_still" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/fluid/soy_milk.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "ashihara:fluid/milky_liquid_still" 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/gold_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/gold_block" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/green_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/warped_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/leaves", 3 | "ambientocclusion": false, 4 | "textures": { 5 | "all": "ashihara:block/maple_leaves_red" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "ashihara:block/maple_log_top", 5 | "side": "ashihara:block/maple_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_log_horizontal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column_horizontal", 3 | "textures": { 4 | "end": "ashihara:block/maple_log_top", 5 | "side": "ashihara:block/maple_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_button_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_inventory", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_button_pressed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/button_pressed", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "ashihara:block/woodcrafts/maple_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/maple_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "end": "ashihara:block/maple_log", 5 | "side": "ashihara:block/maple_log" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/maple_woodcrafts/potted_red_maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "textures": { 4 | "plant": "ashihara:block/red_maple_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/mossy_stone_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/stone_lantern", 3 | "textures": { 4 | "0": "ashihara:block/mossy_stone_lantern", 5 | "particle": "ashihara:block/mossy_stone_lantern" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/multi_built_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/oak_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/rammed_soil_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "ashihara:block/components/rammed_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/red_maple_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "ashihara:block/components/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_gate_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_gate_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_gate_wall_open.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_fence_gate_wall_open", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_inventory.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_inventory", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_post.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_post", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_fence_side.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/fence_side", 3 | "textures": { 4 | "texture": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/red_woodcrafts/red_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "ashihara:block/woodcrafts/red_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/reed_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/plant_3x", 3 | "textures": { 4 | "plant": "ashihara:block/reed_buttom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/reed_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/plant_3x", 3 | "textures": { 4 | "plant": "ashihara:block/reed_top" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/shorter_reed_bottom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/plant_3x", 3 | "textures": { 4 | "plant": "ashihara:block/shorter_reed_bottom" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/shorter_reed_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/plant_3x", 3 | "textures": { 4 | "plant": "ashihara:block/shorter_reed_top" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/spruce_wood_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/stone_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "minecraft:block/stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/tea_tree/tea_tree_age2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/tea_tree/tea_tree", 3 | "textures": { 4 | "leaves": "ashihara:block/tea_tree/tea_tree" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/tea_tree/tea_tree_fully_grown.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/tea_tree/tea_tree", 3 | "textures": { 4 | "leaves": "ashihara:block/tea_tree/tea_tree_fully_grown" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/terracotta_tile_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "ashihara:block/components/flat_terracotta_tile" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/water_field_dry.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made with Blockbench", 3 | "parent": "ashihara:block/water_field", 4 | "ambientocclusion": false, 5 | "textures": { 6 | "0": "block/farmland" 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/white_soil_component.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/block", 3 | "textures": { 4 | "particle": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/block/wild_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cross", 3 | "textures": { 4 | "cross": "ashihara:block/wild_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/aqua.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/aqua" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/ashihara_icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/ashihara_icon" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bamboo_material.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/bamboo_material" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bamboo_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/bamboo_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bamboo_strips.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/bamboo_strips" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bamboo_wall_bones.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/bamboo_wall_bones" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bean_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/bean_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bloomed_hydrangea_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/bloomed_hydrangea_bush" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/bonburi_lamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/bonburi_lamp" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/brown_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/brown_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/candle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/candle" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/candlestick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/candlestick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/charlotte.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/charlotte" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_blossom.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_blossom" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_fence_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/cherry_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/cherry_vines" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cherry_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/cherry_wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/chisel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/chisel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/chrysanthemum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/chrysanthemum" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/chrysanthemum_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/chrysanthemum_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/coal_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/coal_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cooked_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/cooked_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cotton.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/cotton" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cucumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/cucumber" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cutting_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cutting_board" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_corner" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_edge" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_edge_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_edge_corner" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_half.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_half" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_quarter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_quarter_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_quarter_corner" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_roof_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/cypress_roof_top" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_skin_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cypress_blocks/cypress_skin_block" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_skin_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cypress_blocks/cypress_skin_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/cypress_skin_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cypress_blocks/cypress_skin_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/daifuku.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/daifuku" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/daifuku_kusa.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/daifuku_kusa" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/daifuku_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/daifuku_sakura" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dango.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/dango" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dango_bean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/dango_bean" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dango_hanamie.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/dango_hanamie" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dango_mitarashi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/dango_mitarashi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/diamond_otsuchi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:item/otsuchi", 3 | "textures": { 4 | "tier": "ashihara:item/otsuchi_tiers/diamond" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dirt_ball.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/dirt_ball" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dirt_ball_don.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/dirt_ball_don" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dirt_depression.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/dirt_depression" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dried_bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/dried_bamboo" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dried_rice_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/dried_rice_crop" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/dried_tea_leaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/dried_tea_leaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/fallen_maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/fallen_maple_leaves_red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/fallen_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/fallen_sakura" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/flat_terracotta_tile_roof.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/flat_terracotta_tile_roof" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/flat_terracotta_tile_roof_half.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/flat_terracotta_tile_roof_half" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/flat_terracotta_tile_roof_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/flat_terracotta_tile_roof_quarter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/flour" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/gold_ore_shatter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/gold_ore_shatter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/gold_roof_edge_planks_decoration.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/gold_roof_edge_planks_decoration" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/green_straight_bar_window.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/green_straight_bar_window_all" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/green_straight_bar_window_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/green_straight_bar_window_all_quarter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/guidebook.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/guidebook" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/hexagonal_hanging_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/hexagonal_hanging_lantern" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/house_like_hanging_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/house_like_hanging_lantern" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/hydrangea_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/hydrangea_bush" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/iron_ore_shatter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/iron_ore_shatter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/iron_otsuchi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:item/otsuchi", 3 | "textures": { 4 | "tier": "ashihara:item/otsuchi_tiers/iron" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/jinja_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/jinja_lantern" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/koishi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/koishi" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/lantern_long_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/lanterns/lantern_long_red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/lantern_long_white.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/lanterns/lantern_long_white" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/lime_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/lime_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/macha_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/macha_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_button.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_button_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_fence_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_leaves_red.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_leaves_red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/maple_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/maple_wood" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/meal_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/meal_table" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/mochi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/mochi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/mortar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/mortar" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/multi_red_thick_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/column/column_thick_red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/oil_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/liquids/oil_bucket" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/oil_plate_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/oil_plate_stick" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/oni_tile_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/oni_tile_1" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/onigiri.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/onigiri" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/paddy.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/paddy" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/paddy_pile.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/paddy_pile" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/pot_lid.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/pot_lid" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rammed_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/rammed_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rammed_soil_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/rammed_soil_wall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_beam.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_beam" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_clamp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_clamp" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_clamp_joint.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_clamp_joint" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/red_fence_inventory" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/red_fence_gate" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_frog_legs_liked_sticker.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_frog_legs_liked_sticker" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_kawaki.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/kumimono/red/kawaki" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_latticed_window.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_latticed_window" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_latticed_window_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_latticed_window_quarter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_maple_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/red_maple_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/red_planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_planks_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_planks_wall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_planks_wall_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_planks_wall_quarter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_rafter_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_rafter_connector" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_rafter_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_rafter_end" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_roof_edge_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_roof_edge_planks" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_slab.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/red_slab" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_smooth_rafter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_smooth_rafter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/red_stairs" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_steep_rafter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_steep_rafter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_thick_column.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/column/column_thick_red" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_thin_beam.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/red_beam" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_thin_rafter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_thin_rafter" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/red_thin_rafter_connector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/red_thin_rafter_connector" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/reed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/reed_top" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rice_crop_item.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/rice_crop_item" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rice_drying_sticks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/rice_drying_sticks_single" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rice_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/rice_powder" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/rice_seedling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/rice_seedling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/roasted_sweet_potato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/roasted_sweet_potato" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/roof_top_tiles_pile_start.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/roof_top_tiles_pile_start" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/round_terracotta_tile_end.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/round_terracotta_tile_end" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sakura" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sakura_petal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sakura_petal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sakuramochi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sakuramochi" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/salt" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/shorter_reed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/shorter_reed_top" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/soy_bean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/soy_bean" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/soy_milk_bucket.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/liquids/soy_milk_bucket" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/spruce_rafter_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/rafter_planks", 3 | "textures": { 4 | "planks": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/spruce_rafter_planks_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor_quarter", 3 | "textures": { 4 | "plank": "minecraft:block/spruce_planks" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/stone_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/stone_lantern" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/stone_shatter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/stone_shatter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/straw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/straw" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/stripped_cherry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/cherry_woodcrafts/stripped_cherry_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/stripped_maple_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/maple_woodcrafts/stripped_maple_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/stripped_red_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/red_woodcrafts/stripped_red_log" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sujikabuto.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sujikabuto" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sushi_basic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sushi_basic" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sushi_raw_fish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sushi_raw_fish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sushi_sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sushi_sakura" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sushi_tamago.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sushi_tamago" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/sweet_potato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/sweet_potato" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tamago.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tamago" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tatami.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/tatami/tatami" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tea_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tea_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tea_leaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tea_leaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tea_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tea_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/terracotta_tile_roof_edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/terracotta_tile_roof_edge" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/terracotta_tile_roof_edge_corner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/terracotta_tile_roof_edge_corner" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/terracotta_tile_roof_top.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/terracotta_tile_roof_top" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tetsusenchi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/tetsusenchi" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/thin_white_soil_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/building_blocks/wall/wall_thin_soil_white" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tofu.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tofu" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/tomato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:item/tomato" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/water_field.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/water_field_dry" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/white_rafter_planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/rafter_planks", 3 | "textures": { 4 | "planks": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/white_rafter_planks_quarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/templates/full_floor_quarter", 3 | "textures": { 4 | "plank": "ashihara:block/components/white_soil" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/white_soil_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:block/components/white_soil_wall" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/wild_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "ashihara:block/wild_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/wood_otsuchi.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "ashihara:item/otsuchi", 3 | "textures": { 4 | "tier": "ashihara:item/otsuchi_tiers/wood" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/models/item/wooden_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "ashihara:item/wooden_hammer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/particles/maple_leaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "ashihara:maple_leaf_1", 4 | "ashihara:maple_leaf_2" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/particles/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "ashihara:rice1", 4 | "ashihara:rice2" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/particles/sakura.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "ashihara:sakura_1", 4 | "ashihara:sakura_2" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/sounds/unthresh.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/sounds/unthresh.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/armors/sujikabuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/armors/sujikabuto.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/armors/sujikabuto_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/armors/sujikabuto_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/assistants/cereals_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/assistants/cereals_level.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/assistants/processed_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/assistants/processed_level.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/bonburi_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/bonburi_lamp.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/candle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/candle.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/candle_java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/candle_java.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/candlestick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/candlestick.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/charlotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/charlotte.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_alternatives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_alternatives.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_blossom.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cherry_vines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cherry_vines.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/chrysanthemum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/chrysanthemum.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/bamboo_wall_bones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/bamboo_wall_bones.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/base_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/base_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/bottom_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/bottom_mark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/column_thick_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/column_thick_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/corner_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/corner_mark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/cypress_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/cypress_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/cypress_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/cypress_skin.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/cypress_skin_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/cypress_skin_corner.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/gold_pin_fin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/gold_pin_fin.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/oni_tile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/oni_tile_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/rammed_soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/rammed_soil.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/red_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/red_beam.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/red_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/red_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/red_tou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/red_tou.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/slope_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/slope_mark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/spruce_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/spruce_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/top_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/top_mark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/components/white_soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/components/white_soil.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_2_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_2_full.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_3_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_3_full.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/cucumbers_age3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/millet_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/millet_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/millet_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/millet_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/millet_age2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/millet_age2_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_crop_age3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_ears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_ears.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_seedlings_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_seedlings_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/rice_seedlings_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/rice_seedlings_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/scallion_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/scallion_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/scallion_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/scallion_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/scallion_age2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/scallion_age2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/scallion_age3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/scallion_age3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/soy_beans_age2_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age1_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/sweet_potatoes_age3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/tare_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/tare_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/tare_age1_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/tare_age1_2_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/wasabi_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/wasabi_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/wasabi_ageall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/wasabi_ageall.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/white_radish_age0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/white_radish_age0_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/crops/white_radish_age2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/crops/white_radish_age2_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cutting_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cutting_board.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cypress_bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cypress_bark.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cypress_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cypress_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/cypress_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/cypress_skin.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/dirt_cookstove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/dirt_cookstove.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/dirt_depression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/dirt_depression.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/drying_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/drying_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/gold_expansion_decoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/gold_expansion_decoration.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/gold_fence_decoration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/gold_fence_decoration.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/gold_fence_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/gold_fence_orb.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/gold_pin_fin_deco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/gold_pin_fin_deco.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/gold_pin_fin_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/gold_pin_fin_n.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hanging_house_like_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hanging_house_like_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hexagonal_hanging_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hexagonal_hanging_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hydrangea_altleaves_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hydrangea_altleaves_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hydrangea_altleaves_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hydrangea_altleaves_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_pink.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_vioblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_vioblue.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_violet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/hydrangea_blossom_violet.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/jinja_lantern/stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/jinja_lantern/stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/lamp_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/lamp_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/lanterns/bodies/long_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/lanterns/bodies/long_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/lanterns/bodies/long_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/lanterns/bodies/long_white.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/lanterns/icons/tomoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/lanterns/icons/tomoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/lanterns/icons/yamasakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/lanterns/icons/yamasakura.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/maple_leaves_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/maple_leaves_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/maple_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/maple_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/maple_log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/maple_log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/meal_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/meal_table.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/mill_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/mill_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/millstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/millstone.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/mossy_stone_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/mossy_stone_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/pail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/pail.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/pail_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/pail_multiple.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/pot.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/red_maple_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/red_maple_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/reed_buttom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/reed_buttom.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/reed_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/reed_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/rice_drying_sticks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/rice_drying_sticks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/shorter_reed_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/shorter_reed_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/shorter_reed_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/shorter_reed_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/stone_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/stone_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/stone_lantern_glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/stone_lantern_glass.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/straight_bar_window_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/straight_bar_window_green.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tatami/tatami.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tatami/tatami.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tatami/tatami_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tatami/tatami_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tatami/tatami_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tatami/tatami_edge.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tatami/tatami_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tatami/tatami_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tea_tree/tea_blooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tea_tree/tea_blooms.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree_age0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree_age0.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree_age1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tea_tree/tea_tree_age1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/tetsusenchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/tetsusenchi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/water_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/water_field.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/wild_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/wild_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/cherry_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/cherry_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/column_thick_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/column_thick_red.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/maple_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/maple_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/oak_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/oak_expansion.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/oak_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/oak_fence.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/red_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/red_beam.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/red_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/red_expansion.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/red_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/red_fence.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/red_kumimono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/red_kumimono.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/red_planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/red_planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_expansion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_expansion.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_fence.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_kumimono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/spruce_kumimono.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/block/woodcrafts/stripped_red_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/block/woodcrafts/stripped_red_log.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/milky_liquid_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/fluid/milky_liquid_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/milky_liquid_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/milky_liquid_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/fluid/milky_liquid_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/milky_liquid_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/water_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/fluid/water_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/water_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/water_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/fluid/water_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/fluid/water_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/golden_hemming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/golden_hemming.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/guidebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/guidebook.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/guidebook_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/guidebook_debug.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/highlight_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/highlight_outline.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/indicator.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/mortar_progress_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/mortar_progress_bar.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/mortar_progress_bar_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/mortar_progress_bar_outline.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/geo/wooden_edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/geo/wooden_edge.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/charlotte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/charlotte.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/jei/mill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/jei/mill.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/jei/mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/jei/mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/meal_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/meal_table.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/mill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/mill.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/nihil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/nihil.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/gui/toast/check_in_world_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/gui/toast/check_in_world_tooltip.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/icons/hanataki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/icons/hanataki.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/icons/otakobe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/icons/otakobe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/icons/reinakakobo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/icons/reinakakobo.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/icons/tomoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/icons/tomoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/icons/yamasakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/icons/yamasakura.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/ITEM_shorter_reed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/ITEM_shorter_reed.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/aqua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/aqua.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/ashihara_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/ashihara_icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bamboo_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bamboo_cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bamboo_material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bamboo_material.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bamboo_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bamboo_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bamboo_strips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bamboo_strips.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bean_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bean_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/bonburi_lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/bonburi_lamp.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/brown_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/brown_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/candlestick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/candlestick.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/cherry_vines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/cherry_vines.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/chisel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/chisel.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/chrysanthemum_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/chrysanthemum_flower.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/coal_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/coal_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/cooked_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/cooked_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/cotton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/cotton.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/cucumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/cucumber.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/daifuku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/daifuku.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/daifuku_kusa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/daifuku_kusa.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/daifuku_sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/daifuku_sakura.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dango.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dango_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dango_bean.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dango_hanamie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dango_hanamie.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dango_mitarashi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dango_mitarashi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dirt_ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dirt_ball.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dirt_ball_don.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dirt_ball_don.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dried_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dried_bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dried_rice_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dried_rice_crop.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/dried_tea_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/dried_tea_leaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/gold_ore_shatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/gold_ore_shatter.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/guidebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/guidebook.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/iron_ore_shatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/iron_ore_shatter.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/koishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/koishi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/lacquered_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/lacquered_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/lime_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/lime_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/liquids/bucket.container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/liquids/bucket.container.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/liquids/bucket.contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/liquids/bucket.contents.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/liquids/oil_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/liquids/oil_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/liquids/soy_milk_bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/liquids/soy_milk_bucket.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/macha_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/macha_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/mochi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/mochi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/oil_plate_stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/oil_plate_stick.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/onigiri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/onigiri.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/otsuchi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/otsuchi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/diamond.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/otsuchi_tiers/wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/paddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/paddy.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/paddy_pile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/paddy_pile.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/pestle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/pestle.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/rammed_soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/rammed_soil.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/red_beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/red_beam.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/rice_crop_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/rice_crop_item.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/rice_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/rice_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/rice_seedling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/rice_seedling.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/roasted_sweet_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/roasted_sweet_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sakura.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sakura_petal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sakura_petal.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sakuramochi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sakuramochi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/salt.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/scallion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/scallion.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/soy_bean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/soy_bean.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/stone_shatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/stone_shatter.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/straw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/straw.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sujikabuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sujikabuto.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sushi_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sushi_basic.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sushi_raw_fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sushi_raw_fish.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sushi_sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sushi_sakura.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sushi_tamago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sushi_tamago.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/sweet_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/sweet_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tachi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tachi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tamago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tamago.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tare_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tare_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tea_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tea_flower.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tea_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tea_leaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tea_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tea_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tofu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tofu.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/wasabi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/wasabi.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/item/wooden_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/item/wooden_hammer.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/maple_leaf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/maple_leaf_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/maple_leaf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/maple_leaf_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/rice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/rice1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/rice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/rice2.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/sakura_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/sakura_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/ashihara/textures/particle/sakura_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/assets/ashihara/textures/particle/sakura_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources": 3 | [ 4 | { 5 | "type": "directory", 6 | "source": "icons", 7 | "prefix": "icons/" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/neoforge/biome_modifier/wild_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "neoforge:add_features", 3 | "biomes": "minecraft:plains", 4 | "features": "ashihara:wild_rice", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/block/advanced_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:advanced_red_fence", 5 | "ashihara:advanced_spruce_fence" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/block/cherry_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_log", 5 | "ashihara:cherry_wood", 6 | "ashihara:stripped_cherry_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/block/maple_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:maple_log", 5 | "ashihara:maple_wood", 6 | "ashihara:stripped_maple_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/cereal_processed.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:rice" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/cereals.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:paddy", 5 | "ashihara:rice_powder" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/cherry_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_log", 5 | "ashihara:cherry_wood", 6 | "ashihara:stripped_cherry_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/maple_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:maple_log", 5 | "ashihara:maple_wood", 6 | "ashihara:stripped_maple_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/mashable.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#ashihara:cereals", 5 | "#ashihara:cereal_processed", 6 | "#ashihara:sauce_materials" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/ashihara/tags/item/sauce_materials.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:carrot" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_fence_gate", 5 | "ashihara:maple_fence_gate", 6 | "ashihara:red_fence_gate" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/flower_pots.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:potted_cherry_sapling", 5 | "ashihara:potted_red_maple_sapling" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_blossom", 5 | "ashihara:maple_leaves_red" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/logs_that_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#ashihara:cherry_logs", 5 | "#ashihara:maple_logs", 6 | "ashihara:stripped_red_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_planks", 5 | "ashihara:maple_planks", 6 | "ashihara:red_planks" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_button", 5 | "ashihara:maple_button" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_fence", 5 | "ashihara:maple_fence", 6 | "ashihara:red_fence" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_slab", 5 | "ashihara:maple_slab", 6 | "ashihara:red_slab" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/block/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_stairs", 5 | "ashihara:maple_stairs", 6 | "ashihara:red_stairs" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/fluid/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:soy_milk", 5 | "ashihara:soy_milk_flowing", 6 | "ashihara:oil", 7 | "ashihara:oil_flowing" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/fence_gates.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_fence_gate", 5 | "ashihara:maple_fence_gate", 6 | "ashihara:red_fence_gate" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/logs_that_burn.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#ashihara:cherry_logs", 5 | "#ashihara:maple_logs", 6 | "ashihara:stripped_red_log" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_planks", 5 | "ashihara:maple_planks", 6 | "ashihara:red_planks" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/wooden_buttons.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_button", 5 | "ashihara:maple_button" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/wooden_fences.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_fence", 5 | "ashihara:maple_fence", 6 | "ashihara:red_fence" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/wooden_slabs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_slab", 5 | "ashihara:maple_slab", 6 | "ashihara:red_slab" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/item/wooden_stairs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cherry_stairs", 5 | "ashihara:maple_stairs", 6 | "ashihara:red_stairs" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/cooked_fishes.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:cooked_cod", 5 | "minecraft:cooked_salmon" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/cotton.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cotton" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/cucumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:cucumber" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:rice" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/sweet_potato.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:sweet_potato" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/tea.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:tea_leaf" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/crops/tomato.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:tomato" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/grain/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "ashihara:paddy" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/tags/item/knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:iron_sword", 5 | "ashihara:tachi" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/koishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/koishi.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": 3 | { 4 | "description": {"text": "神な祝い"}, 5 | "pack_format": 15 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kogasa-Studio/Ashihara/64c585cd56222ab9268e50f29ac3d3d2a8362d7c/src/main/resources/pack.png --------------------------------------------------------------------------------