├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── build.gradle ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── darkhax │ │ └── botanypots │ │ ├── BotanyPotHelper.java │ │ ├── BotanyPotsCommon.java │ │ ├── Constants.java │ │ ├── Content.java │ │ ├── addons │ │ └── rei │ │ │ ├── CropDisplayCategory.java │ │ │ ├── REIPlugin.java │ │ │ └── ui │ │ │ ├── BasicCropDisplay.java │ │ │ └── CropDisplay.java │ │ ├── block │ │ ├── BlockBotanyPot.java │ │ ├── BlockEntityBotanyPot.java │ │ ├── BotanyPotRenderer.java │ │ ├── BotanyPotVariantGenerator.java │ │ └── inv │ │ │ ├── BotanyPotContainer.java │ │ │ ├── BotanyPotMenu.java │ │ │ ├── BotanyPotScreen.java │ │ │ ├── SlotCropSeed.java │ │ │ ├── SlotPotOutput.java │ │ │ └── SlotSoil.java │ │ ├── commands │ │ ├── BotanyPotsCommands.java │ │ └── CommandDump.java │ │ ├── data │ │ ├── displaystate │ │ │ ├── DisplayTypes.java │ │ │ ├── math │ │ │ │ └── AxisAlignedRotation.java │ │ │ ├── render │ │ │ │ ├── DisplayStateRenderer.java │ │ │ │ ├── EntityDisplayStateRenderer.java │ │ │ │ ├── PhasedDisplayStateRenderer.java │ │ │ │ └── SimpleDisplayStateRenderer.java │ │ │ └── types │ │ │ │ ├── AbstractSimpleDisplayState.java │ │ │ │ ├── AgingDisplayState.java │ │ │ │ ├── DisplayState.java │ │ │ │ ├── EntityDisplayState.java │ │ │ │ ├── PhasedDisplayState.java │ │ │ │ ├── SimpleDisplayState.java │ │ │ │ └── TransitionalDisplayState.java │ │ └── recipes │ │ │ ├── crop │ │ │ ├── BasicCrop.java │ │ │ ├── BasicCropSerializer.java │ │ │ ├── Crop.java │ │ │ └── HarvestEntry.java │ │ │ ├── fertilizer │ │ │ ├── BasicFertilizer.java │ │ │ ├── BasicFertilizerSerializer.java │ │ │ └── Fertilizer.java │ │ │ ├── potinteraction │ │ │ ├── BasicPotInteraction.java │ │ │ ├── BasicPotInteractionSerializer.java │ │ │ └── PotInteraction.java │ │ │ └── soil │ │ │ ├── BasicSoil.java │ │ │ ├── BasicSoilSerializer.java │ │ │ └── Soil.java │ │ └── events │ │ ├── BotanyPotEventDispatcher.java │ │ ├── ICropDropListener.java │ │ ├── ILookupCropListener.java │ │ ├── ILookupFertilizerListener.java │ │ ├── ILookupInteractionListener.java │ │ └── ILookupSoilListener.java │ └── resources │ ├── assets │ └── botanypots │ │ ├── blockstates │ │ ├── black_concrete_botany_pot.json │ │ ├── black_concrete_hopper_botany_pot.json │ │ ├── black_glazed_terracotta_botany_pot.json │ │ ├── black_glazed_terracotta_hopper_botany_pot.json │ │ ├── black_terracotta_botany_pot.json │ │ ├── black_terracotta_hopper_botany_pot.json │ │ ├── blue_concrete_botany_pot.json │ │ ├── blue_concrete_hopper_botany_pot.json │ │ ├── blue_glazed_terracotta_botany_pot.json │ │ ├── blue_glazed_terracotta_hopper_botany_pot.json │ │ ├── blue_terracotta_botany_pot.json │ │ ├── blue_terracotta_hopper_botany_pot.json │ │ ├── brown_concrete_botany_pot.json │ │ ├── brown_concrete_hopper_botany_pot.json │ │ ├── brown_glazed_terracotta_botany_pot.json │ │ ├── brown_glazed_terracotta_hopper_botany_pot.json │ │ ├── brown_terracotta_botany_pot.json │ │ ├── brown_terracotta_hopper_botany_pot.json │ │ ├── cyan_concrete_botany_pot.json │ │ ├── cyan_concrete_hopper_botany_pot.json │ │ ├── cyan_glazed_terracotta_botany_pot.json │ │ ├── cyan_glazed_terracotta_hopper_botany_pot.json │ │ ├── cyan_terracotta_botany_pot.json │ │ ├── cyan_terracotta_hopper_botany_pot.json │ │ ├── gray_concrete_botany_pot.json │ │ ├── gray_concrete_hopper_botany_pot.json │ │ ├── gray_glazed_terracotta_botany_pot.json │ │ ├── gray_glazed_terracotta_hopper_botany_pot.json │ │ ├── gray_terracotta_botany_pot.json │ │ ├── gray_terracotta_hopper_botany_pot.json │ │ ├── green_concrete_botany_pot.json │ │ ├── green_concrete_hopper_botany_pot.json │ │ ├── green_glazed_terracotta_botany_pot.json │ │ ├── green_glazed_terracotta_hopper_botany_pot.json │ │ ├── green_terracotta_botany_pot.json │ │ ├── green_terracotta_hopper_botany_pot.json │ │ ├── light_blue_concrete_botany_pot.json │ │ ├── light_blue_concrete_hopper_botany_pot.json │ │ ├── light_blue_glazed_terracotta_botany_pot.json │ │ ├── light_blue_glazed_terracotta_hopper_botany_pot.json │ │ ├── light_blue_terracotta_botany_pot.json │ │ ├── light_blue_terracotta_hopper_botany_pot.json │ │ ├── light_gray_concrete_botany_pot.json │ │ ├── light_gray_concrete_hopper_botany_pot.json │ │ ├── light_gray_glazed_terracotta_botany_pot.json │ │ ├── light_gray_glazed_terracotta_hopper_botany_pot.json │ │ ├── light_gray_terracotta_botany_pot.json │ │ ├── light_gray_terracotta_hopper_botany_pot.json │ │ ├── lime_concrete_botany_pot.json │ │ ├── lime_concrete_hopper_botany_pot.json │ │ ├── lime_glazed_terracotta_botany_pot.json │ │ ├── lime_glazed_terracotta_hopper_botany_pot.json │ │ ├── lime_terracotta_botany_pot.json │ │ ├── lime_terracotta_hopper_botany_pot.json │ │ ├── magenta_concrete_botany_pot.json │ │ ├── magenta_concrete_hopper_botany_pot.json │ │ ├── magenta_glazed_terracotta_botany_pot.json │ │ ├── magenta_glazed_terracotta_hopper_botany_pot.json │ │ ├── magenta_terracotta_botany_pot.json │ │ ├── magenta_terracotta_hopper_botany_pot.json │ │ ├── orange_concrete_botany_pot.json │ │ ├── orange_concrete_hopper_botany_pot.json │ │ ├── orange_glazed_terracotta_botany_pot.json │ │ ├── orange_glazed_terracotta_hopper_botany_pot.json │ │ ├── orange_terracotta_botany_pot.json │ │ ├── orange_terracotta_hopper_botany_pot.json │ │ ├── pink_concrete_botany_pot.json │ │ ├── pink_concrete_hopper_botany_pot.json │ │ ├── pink_glazed_terracotta_botany_pot.json │ │ ├── pink_glazed_terracotta_hopper_botany_pot.json │ │ ├── pink_terracotta_botany_pot.json │ │ ├── pink_terracotta_hopper_botany_pot.json │ │ ├── purple_concrete_botany_pot.json │ │ ├── purple_concrete_hopper_botany_pot.json │ │ ├── purple_glazed_terracotta_botany_pot.json │ │ ├── purple_glazed_terracotta_hopper_botany_pot.json │ │ ├── purple_terracotta_botany_pot.json │ │ ├── purple_terracotta_hopper_botany_pot.json │ │ ├── red_concrete_botany_pot.json │ │ ├── red_concrete_hopper_botany_pot.json │ │ ├── red_glazed_terracotta_botany_pot.json │ │ ├── red_glazed_terracotta_hopper_botany_pot.json │ │ ├── red_terracotta_botany_pot.json │ │ ├── red_terracotta_hopper_botany_pot.json │ │ ├── terracotta_botany_pot.json │ │ ├── terracotta_hopper_botany_pot.json │ │ ├── white_concrete_botany_pot.json │ │ ├── white_concrete_hopper_botany_pot.json │ │ ├── white_glazed_terracotta_botany_pot.json │ │ ├── white_glazed_terracotta_hopper_botany_pot.json │ │ ├── white_terracotta_botany_pot.json │ │ ├── white_terracotta_hopper_botany_pot.json │ │ ├── yellow_concrete_botany_pot.json │ │ ├── yellow_concrete_hopper_botany_pot.json │ │ ├── yellow_glazed_terracotta_botany_pot.json │ │ ├── yellow_glazed_terracotta_hopper_botany_pot.json │ │ ├── yellow_terracotta_botany_pot.json │ │ └── yellow_terracotta_hopper_botany_pot.json │ │ ├── lang │ │ ├── de_de.json │ │ ├── en_us.json │ │ ├── ja_jp.json │ │ ├── nl_be.json │ │ ├── nl_nl.json │ │ ├── ru_ru.json │ │ ├── uk_ua.json │ │ └── zh_cn.json │ │ ├── load_screens │ │ └── pga.json │ │ ├── models │ │ ├── block │ │ │ ├── black_concrete_botany_pot.json │ │ │ ├── black_concrete_hopper_botany_pot.json │ │ │ ├── black_glazed_terracotta_botany_pot.json │ │ │ ├── black_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── black_terracotta_botany_pot.json │ │ │ ├── black_terracotta_hopper_botany_pot.json │ │ │ ├── blue_concrete_botany_pot.json │ │ │ ├── blue_concrete_hopper_botany_pot.json │ │ │ ├── blue_glazed_terracotta_botany_pot.json │ │ │ ├── blue_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── blue_terracotta_botany_pot.json │ │ │ ├── blue_terracotta_hopper_botany_pot.json │ │ │ ├── botany_pot_base.json │ │ │ ├── brown_concrete_botany_pot.json │ │ │ ├── brown_concrete_hopper_botany_pot.json │ │ │ ├── brown_glazed_terracotta_botany_pot.json │ │ │ ├── brown_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── brown_terracotta_botany_pot.json │ │ │ ├── brown_terracotta_hopper_botany_pot.json │ │ │ ├── cyan_concrete_botany_pot.json │ │ │ ├── cyan_concrete_hopper_botany_pot.json │ │ │ ├── cyan_glazed_terracotta_botany_pot.json │ │ │ ├── cyan_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── cyan_terracotta_botany_pot.json │ │ │ ├── cyan_terracotta_hopper_botany_pot.json │ │ │ ├── gray_concrete_botany_pot.json │ │ │ ├── gray_concrete_hopper_botany_pot.json │ │ │ ├── gray_glazed_terracotta_botany_pot.json │ │ │ ├── gray_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── gray_terracotta_botany_pot.json │ │ │ ├── gray_terracotta_hopper_botany_pot.json │ │ │ ├── green_concrete_botany_pot.json │ │ │ ├── green_concrete_hopper_botany_pot.json │ │ │ ├── green_glazed_terracotta_botany_pot.json │ │ │ ├── green_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── green_terracotta_botany_pot.json │ │ │ ├── green_terracotta_hopper_botany_pot.json │ │ │ ├── hopper_botany_pot_base.json │ │ │ ├── light_blue_concrete_botany_pot.json │ │ │ ├── light_blue_concrete_hopper_botany_pot.json │ │ │ ├── light_blue_glazed_terracotta_botany_pot.json │ │ │ ├── light_blue_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── light_blue_terracotta_botany_pot.json │ │ │ ├── light_blue_terracotta_hopper_botany_pot.json │ │ │ ├── light_gray_concrete_botany_pot.json │ │ │ ├── light_gray_concrete_hopper_botany_pot.json │ │ │ ├── light_gray_glazed_terracotta_botany_pot.json │ │ │ ├── light_gray_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── light_gray_terracotta_botany_pot.json │ │ │ ├── light_gray_terracotta_hopper_botany_pot.json │ │ │ ├── lime_concrete_botany_pot.json │ │ │ ├── lime_concrete_hopper_botany_pot.json │ │ │ ├── lime_glazed_terracotta_botany_pot.json │ │ │ ├── lime_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── lime_terracotta_botany_pot.json │ │ │ ├── lime_terracotta_hopper_botany_pot.json │ │ │ ├── magenta_concrete_botany_pot.json │ │ │ ├── magenta_concrete_hopper_botany_pot.json │ │ │ ├── magenta_glazed_terracotta_botany_pot.json │ │ │ ├── magenta_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── magenta_terracotta_botany_pot.json │ │ │ ├── magenta_terracotta_hopper_botany_pot.json │ │ │ ├── orange_concrete_botany_pot.json │ │ │ ├── orange_concrete_hopper_botany_pot.json │ │ │ ├── orange_glazed_terracotta_botany_pot.json │ │ │ ├── orange_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── orange_terracotta_botany_pot.json │ │ │ ├── orange_terracotta_hopper_botany_pot.json │ │ │ ├── pink_concrete_botany_pot.json │ │ │ ├── pink_concrete_hopper_botany_pot.json │ │ │ ├── pink_glazed_terracotta_botany_pot.json │ │ │ ├── pink_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── pink_terracotta_botany_pot.json │ │ │ ├── pink_terracotta_hopper_botany_pot.json │ │ │ ├── purple_concrete_botany_pot.json │ │ │ ├── purple_concrete_hopper_botany_pot.json │ │ │ ├── purple_glazed_terracotta_botany_pot.json │ │ │ ├── purple_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── purple_terracotta_botany_pot.json │ │ │ ├── purple_terracotta_hopper_botany_pot.json │ │ │ ├── red_concrete_botany_pot.json │ │ │ ├── red_concrete_hopper_botany_pot.json │ │ │ ├── red_glazed_terracotta_botany_pot.json │ │ │ ├── red_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── red_terracotta_botany_pot.json │ │ │ ├── red_terracotta_hopper_botany_pot.json │ │ │ ├── terracotta_botany_pot.json │ │ │ ├── terracotta_hopper_botany_pot.json │ │ │ ├── white_concrete_botany_pot.json │ │ │ ├── white_concrete_hopper_botany_pot.json │ │ │ ├── white_glazed_terracotta_botany_pot.json │ │ │ ├── white_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── white_terracotta_botany_pot.json │ │ │ ├── white_terracotta_hopper_botany_pot.json │ │ │ ├── yellow_concrete_botany_pot.json │ │ │ ├── yellow_concrete_hopper_botany_pot.json │ │ │ ├── yellow_glazed_terracotta_botany_pot.json │ │ │ ├── yellow_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── yellow_terracotta_botany_pot.json │ │ │ └── yellow_terracotta_hopper_botany_pot.json │ │ └── item │ │ │ ├── black_concrete_botany_pot.json │ │ │ ├── black_concrete_hopper_botany_pot.json │ │ │ ├── black_glazed_terracotta_botany_pot.json │ │ │ ├── black_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── black_terracotta_botany_pot.json │ │ │ ├── black_terracotta_hopper_botany_pot.json │ │ │ ├── blue_concrete_botany_pot.json │ │ │ ├── blue_concrete_hopper_botany_pot.json │ │ │ ├── blue_glazed_terracotta_botany_pot.json │ │ │ ├── blue_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── blue_terracotta_botany_pot.json │ │ │ ├── blue_terracotta_hopper_botany_pot.json │ │ │ ├── brown_concrete_botany_pot.json │ │ │ ├── brown_concrete_hopper_botany_pot.json │ │ │ ├── brown_glazed_terracotta_botany_pot.json │ │ │ ├── brown_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── brown_terracotta_botany_pot.json │ │ │ ├── brown_terracotta_hopper_botany_pot.json │ │ │ ├── cyan_concrete_botany_pot.json │ │ │ ├── cyan_concrete_hopper_botany_pot.json │ │ │ ├── cyan_glazed_terracotta_botany_pot.json │ │ │ ├── cyan_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── cyan_terracotta_botany_pot.json │ │ │ ├── cyan_terracotta_hopper_botany_pot.json │ │ │ ├── gray_concrete_botany_pot.json │ │ │ ├── gray_concrete_hopper_botany_pot.json │ │ │ ├── gray_glazed_terracotta_botany_pot.json │ │ │ ├── gray_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── gray_terracotta_botany_pot.json │ │ │ ├── gray_terracotta_hopper_botany_pot.json │ │ │ ├── green_concrete_botany_pot.json │ │ │ ├── green_concrete_hopper_botany_pot.json │ │ │ ├── green_glazed_terracotta_botany_pot.json │ │ │ ├── green_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── green_terracotta_botany_pot.json │ │ │ ├── green_terracotta_hopper_botany_pot.json │ │ │ ├── light_blue_concrete_botany_pot.json │ │ │ ├── light_blue_concrete_hopper_botany_pot.json │ │ │ ├── light_blue_glazed_terracotta_botany_pot.json │ │ │ ├── light_blue_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── light_blue_terracotta_botany_pot.json │ │ │ ├── light_blue_terracotta_hopper_botany_pot.json │ │ │ ├── light_gray_concrete_botany_pot.json │ │ │ ├── light_gray_concrete_hopper_botany_pot.json │ │ │ ├── light_gray_glazed_terracotta_botany_pot.json │ │ │ ├── light_gray_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── light_gray_terracotta_botany_pot.json │ │ │ ├── light_gray_terracotta_hopper_botany_pot.json │ │ │ ├── lime_concrete_botany_pot.json │ │ │ ├── lime_concrete_hopper_botany_pot.json │ │ │ ├── lime_glazed_terracotta_botany_pot.json │ │ │ ├── lime_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── lime_terracotta_botany_pot.json │ │ │ ├── lime_terracotta_hopper_botany_pot.json │ │ │ ├── magenta_concrete_botany_pot.json │ │ │ ├── magenta_concrete_hopper_botany_pot.json │ │ │ ├── magenta_glazed_terracotta_botany_pot.json │ │ │ ├── magenta_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── magenta_terracotta_botany_pot.json │ │ │ ├── magenta_terracotta_hopper_botany_pot.json │ │ │ ├── orange_concrete_botany_pot.json │ │ │ ├── orange_concrete_hopper_botany_pot.json │ │ │ ├── orange_glazed_terracotta_botany_pot.json │ │ │ ├── orange_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── orange_terracotta_botany_pot.json │ │ │ ├── orange_terracotta_hopper_botany_pot.json │ │ │ ├── pink_concrete_botany_pot.json │ │ │ ├── pink_concrete_hopper_botany_pot.json │ │ │ ├── pink_glazed_terracotta_botany_pot.json │ │ │ ├── pink_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── pink_terracotta_botany_pot.json │ │ │ ├── pink_terracotta_hopper_botany_pot.json │ │ │ ├── purple_concrete_botany_pot.json │ │ │ ├── purple_concrete_hopper_botany_pot.json │ │ │ ├── purple_glazed_terracotta_botany_pot.json │ │ │ ├── purple_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── purple_terracotta_botany_pot.json │ │ │ ├── purple_terracotta_hopper_botany_pot.json │ │ │ ├── red_concrete_botany_pot.json │ │ │ ├── red_concrete_hopper_botany_pot.json │ │ │ ├── red_glazed_terracotta_botany_pot.json │ │ │ ├── red_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── red_terracotta_botany_pot.json │ │ │ ├── red_terracotta_hopper_botany_pot.json │ │ │ ├── terracotta_botany_pot.json │ │ │ ├── terracotta_hopper_botany_pot.json │ │ │ ├── white_concrete_botany_pot.json │ │ │ ├── white_concrete_hopper_botany_pot.json │ │ │ ├── white_glazed_terracotta_botany_pot.json │ │ │ ├── white_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── white_terracotta_botany_pot.json │ │ │ ├── white_terracotta_hopper_botany_pot.json │ │ │ ├── yellow_concrete_botany_pot.json │ │ │ ├── yellow_concrete_hopper_botany_pot.json │ │ │ ├── yellow_glazed_terracotta_botany_pot.json │ │ │ ├── yellow_glazed_terracotta_hopper_botany_pot.json │ │ │ ├── yellow_terracotta_botany_pot.json │ │ │ └── yellow_terracotta_hopper_botany_pot.json │ │ └── textures │ │ ├── block │ │ └── hopper_overlay.png │ │ └── gui │ │ └── container │ │ ├── botany_pot_gui.png │ │ └── hopper_botany_pot_gui.png │ ├── data │ ├── botanypots │ │ ├── advancements │ │ │ └── husbandry │ │ │ │ ├── get_basic_pot.json │ │ │ │ └── get_hopper_pot.json │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ ├── black_concrete_botany_pot.json │ │ │ │ ├── black_concrete_hopper_botany_pot.json │ │ │ │ ├── black_glazed_terracotta_botany_pot.json │ │ │ │ ├── black_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── black_terracotta_botany_pot.json │ │ │ │ ├── black_terracotta_hopper_botany_pot.json │ │ │ │ ├── blue_concrete_botany_pot.json │ │ │ │ ├── blue_concrete_hopper_botany_pot.json │ │ │ │ ├── blue_glazed_terracotta_botany_pot.json │ │ │ │ ├── blue_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── blue_terracotta_botany_pot.json │ │ │ │ ├── blue_terracotta_hopper_botany_pot.json │ │ │ │ ├── brown_concrete_botany_pot.json │ │ │ │ ├── brown_concrete_hopper_botany_pot.json │ │ │ │ ├── brown_glazed_terracotta_botany_pot.json │ │ │ │ ├── brown_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── brown_terracotta_botany_pot.json │ │ │ │ ├── brown_terracotta_hopper_botany_pot.json │ │ │ │ ├── cyan_concrete_botany_pot.json │ │ │ │ ├── cyan_concrete_hopper_botany_pot.json │ │ │ │ ├── cyan_glazed_terracotta_botany_pot.json │ │ │ │ ├── cyan_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── cyan_terracotta_botany_pot.json │ │ │ │ ├── cyan_terracotta_hopper_botany_pot.json │ │ │ │ ├── gray_concrete_botany_pot.json │ │ │ │ ├── gray_concrete_hopper_botany_pot.json │ │ │ │ ├── gray_glazed_terracotta_botany_pot.json │ │ │ │ ├── gray_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── gray_terracotta_botany_pot.json │ │ │ │ ├── gray_terracotta_hopper_botany_pot.json │ │ │ │ ├── green_concrete_botany_pot.json │ │ │ │ ├── green_concrete_hopper_botany_pot.json │ │ │ │ ├── green_glazed_terracotta_botany_pot.json │ │ │ │ ├── green_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── green_terracotta_botany_pot.json │ │ │ │ ├── green_terracotta_hopper_botany_pot.json │ │ │ │ ├── light_blue_concrete_botany_pot.json │ │ │ │ ├── light_blue_concrete_hopper_botany_pot.json │ │ │ │ ├── light_blue_glazed_terracotta_botany_pot.json │ │ │ │ ├── light_blue_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── light_blue_terracotta_botany_pot.json │ │ │ │ ├── light_blue_terracotta_hopper_botany_pot.json │ │ │ │ ├── light_gray_concrete_botany_pot.json │ │ │ │ ├── light_gray_concrete_hopper_botany_pot.json │ │ │ │ ├── light_gray_glazed_terracotta_botany_pot.json │ │ │ │ ├── light_gray_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── light_gray_terracotta_botany_pot.json │ │ │ │ ├── light_gray_terracotta_hopper_botany_pot.json │ │ │ │ ├── lime_concrete_botany_pot.json │ │ │ │ ├── lime_concrete_hopper_botany_pot.json │ │ │ │ ├── lime_glazed_terracotta_botany_pot.json │ │ │ │ ├── lime_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── lime_terracotta_botany_pot.json │ │ │ │ ├── lime_terracotta_hopper_botany_pot.json │ │ │ │ ├── magenta_concrete_botany_pot.json │ │ │ │ ├── magenta_concrete_hopper_botany_pot.json │ │ │ │ ├── magenta_glazed_terracotta_botany_pot.json │ │ │ │ ├── magenta_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── magenta_terracotta_botany_pot.json │ │ │ │ ├── magenta_terracotta_hopper_botany_pot.json │ │ │ │ ├── orange_concrete_botany_pot.json │ │ │ │ ├── orange_concrete_hopper_botany_pot.json │ │ │ │ ├── orange_glazed_terracotta_botany_pot.json │ │ │ │ ├── orange_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── orange_terracotta_botany_pot.json │ │ │ │ ├── orange_terracotta_hopper_botany_pot.json │ │ │ │ ├── pink_concrete_botany_pot.json │ │ │ │ ├── pink_concrete_hopper_botany_pot.json │ │ │ │ ├── pink_glazed_terracotta_botany_pot.json │ │ │ │ ├── pink_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── pink_terracotta_botany_pot.json │ │ │ │ ├── pink_terracotta_hopper_botany_pot.json │ │ │ │ ├── purple_concrete_botany_pot.json │ │ │ │ ├── purple_concrete_hopper_botany_pot.json │ │ │ │ ├── purple_glazed_terracotta_botany_pot.json │ │ │ │ ├── purple_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── purple_terracotta_botany_pot.json │ │ │ │ ├── purple_terracotta_hopper_botany_pot.json │ │ │ │ ├── red_concrete_botany_pot.json │ │ │ │ ├── red_concrete_hopper_botany_pot.json │ │ │ │ ├── red_glazed_terracotta_botany_pot.json │ │ │ │ ├── red_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── red_terracotta_botany_pot.json │ │ │ │ ├── red_terracotta_hopper_botany_pot.json │ │ │ │ ├── terracotta_botany_pot.json │ │ │ │ ├── terracotta_hopper_botany_pot.json │ │ │ │ ├── white_concrete_botany_pot.json │ │ │ │ ├── white_concrete_hopper_botany_pot.json │ │ │ │ ├── white_glazed_terracotta_botany_pot.json │ │ │ │ ├── white_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── white_terracotta_botany_pot.json │ │ │ │ ├── white_terracotta_hopper_botany_pot.json │ │ │ │ ├── yellow_concrete_botany_pot.json │ │ │ │ ├── yellow_concrete_hopper_botany_pot.json │ │ │ │ ├── yellow_glazed_terracotta_botany_pot.json │ │ │ │ ├── yellow_glazed_terracotta_hopper_botany_pot.json │ │ │ │ ├── yellow_terracotta_botany_pot.json │ │ │ │ └── yellow_terracotta_hopper_botany_pot.json │ │ ├── recipes │ │ │ ├── allyoucaneat │ │ │ │ └── crop │ │ │ │ │ ├── black_grape.json │ │ │ │ │ ├── brown_wheat.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── tomato.json │ │ │ │ │ └── white_grape.json │ │ │ ├── ars_elemental │ │ │ │ ├── crop │ │ │ │ │ └── flashpine_pod.json │ │ │ │ └── soil │ │ │ │ │ └── flashing_archwood.json │ │ │ ├── ars_nouveau │ │ │ │ ├── crop │ │ │ │ │ ├── bastion_pod.json │ │ │ │ │ ├── bombegranate_pod.json │ │ │ │ │ ├── frostaya_pod.json │ │ │ │ │ ├── magebloom.json │ │ │ │ │ ├── mendosteen_pod.json │ │ │ │ │ └── source_berry.json │ │ │ │ └── soil │ │ │ │ │ ├── blazing_archwood.json │ │ │ │ │ ├── cascading_archwood.json │ │ │ │ │ ├── flourishing_archwood.json │ │ │ │ │ └── vexing_archwood.json │ │ │ ├── aurorasdeco │ │ │ │ └── crop │ │ │ │ │ ├── daffodil.json │ │ │ │ │ └── lavender.json │ │ │ ├── betterend │ │ │ │ ├── crop │ │ │ │ │ ├── aeridium.json │ │ │ │ │ ├── amber_grass.json │ │ │ │ │ ├── amber_root.json │ │ │ │ │ ├── aurant_polypore.json │ │ │ │ │ ├── blooming_cooksonia.json │ │ │ │ │ ├── blossom_berry.json │ │ │ │ │ ├── blue_vine.json │ │ │ │ │ ├── bolux_mushroom.json │ │ │ │ │ ├── bubble_coral.json │ │ │ │ │ ├── bulb_moss.json │ │ │ │ │ ├── bulb_vine.json │ │ │ │ │ ├── bushy_grass.json │ │ │ │ │ ├── cave_grass.json │ │ │ │ │ ├── cave_pumpkin.json │ │ │ │ │ ├── charnia_cyan.json │ │ │ │ │ ├── charnia_green.json │ │ │ │ │ ├── charnia_light_blue.json │ │ │ │ │ ├── charnia_orange.json │ │ │ │ │ ├── charnia_purple.json │ │ │ │ │ ├── charnia_red.json │ │ │ │ │ ├── chorus_grass.json │ │ │ │ │ ├── chorus_mushroom.json │ │ │ │ │ ├── clawfern.json │ │ │ │ │ ├── creeping_moss.json │ │ │ │ │ ├── crystal_grass.json │ │ │ │ │ ├── crystal_moss_cover.json │ │ │ │ │ ├── cyan_moss.json │ │ │ │ │ ├── dense_vine.json │ │ │ │ │ ├── end_lily.json │ │ │ │ │ ├── end_lotus.json │ │ │ │ │ ├── filalux.json │ │ │ │ │ ├── flamaea.json │ │ │ │ │ ├── flammalix.json │ │ │ │ │ ├── fracturn.json │ │ │ │ │ ├── globulagus.json │ │ │ │ │ ├── glowing_pillar.json │ │ │ │ │ ├── hydralux.json │ │ │ │ │ ├── inflexia.json │ │ │ │ │ ├── jungle_fern.json │ │ │ │ │ ├── jungle_grass.json │ │ │ │ │ ├── jungle_vine.json │ │ │ │ │ ├── lamellarium.json │ │ │ │ │ ├── lanceleaf_seed.json │ │ │ │ │ ├── lumecorn_seed.json │ │ │ │ │ ├── lutebus.json │ │ │ │ │ ├── magnula.json │ │ │ │ │ ├── murkweed.json │ │ │ │ │ ├── needlegrass.json │ │ │ │ │ ├── orango.json │ │ │ │ │ ├── pond_anemone.json │ │ │ │ │ ├── purple_polypore.json │ │ │ │ │ ├── rubinea.json │ │ │ │ │ ├── ruscus.json │ │ │ │ │ ├── salteago.json │ │ │ │ │ ├── shadow_berry.json │ │ │ │ │ ├── shadow_plant.json │ │ │ │ │ ├── small_amaranita_mushroom.json │ │ │ │ │ ├── small_jellyshroom.json │ │ │ │ │ ├── tail_moss.json │ │ │ │ │ ├── tenanea_flowers.json │ │ │ │ │ ├── tube_worm.json │ │ │ │ │ ├── twisted_moss.json │ │ │ │ │ ├── twisted_umbrella_moss.json │ │ │ │ │ ├── twisted_umbrella_moss_tall.json │ │ │ │ │ ├── twisted_vine.json │ │ │ │ │ ├── umbrella_moss.json │ │ │ │ │ ├── umbrella_moss_tall.json │ │ │ │ │ └── vaiolush_fern.json │ │ │ │ ├── pot_interaction │ │ │ │ │ ├── flatten_amber_moss_path.json │ │ │ │ │ ├── flatten_cave_moss_path.json │ │ │ │ │ ├── flatten_chorus_nylium_path.json │ │ │ │ │ ├── flatten_crystal_moss_path.json │ │ │ │ │ ├── flatten_end_moss_path.json │ │ │ │ │ ├── flatten_jungle_moss_path.json │ │ │ │ │ ├── flatten_pink_moss_path.json │ │ │ │ │ ├── flatten_rutiscus_path.json │ │ │ │ │ ├── flatten_sangnum_path.json │ │ │ │ │ └── flatten_shadow_grass_path.json │ │ │ │ └── soil │ │ │ │ │ ├── amber_moss.json │ │ │ │ │ ├── amber_moss_path.json │ │ │ │ │ ├── cave_moss.json │ │ │ │ │ ├── cave_moss_path.json │ │ │ │ │ ├── chorus_nylium.json │ │ │ │ │ ├── chorus_nylium_path.json │ │ │ │ │ ├── crystal_moss.json │ │ │ │ │ ├── crystal_moss_path.json │ │ │ │ │ ├── end_moss.json │ │ │ │ │ ├── end_moss_path.json │ │ │ │ │ ├── jungle_moss.json │ │ │ │ │ ├── jungle_moss_path.json │ │ │ │ │ ├── mossy_dragon_bone.json │ │ │ │ │ ├── mossy_obsidian.json │ │ │ │ │ ├── pallidium_full.json │ │ │ │ │ ├── pallidium_heavy.json │ │ │ │ │ ├── pallidium_thin.json │ │ │ │ │ ├── pallidium_tiny.json │ │ │ │ │ ├── pink_moss.json │ │ │ │ │ ├── pink_moss_path.json │ │ │ │ │ ├── rutiscus.json │ │ │ │ │ ├── rutiscus_path.json │ │ │ │ │ ├── sangnum.json │ │ │ │ │ ├── sangnum_path.json │ │ │ │ │ ├── shadow_grass.json │ │ │ │ │ ├── shadow_grass_path.json │ │ │ │ │ └── sulphuric_rock.json │ │ │ ├── betternether │ │ │ │ ├── crop │ │ │ │ │ ├── agave.json │ │ │ │ │ ├── barrel_cactus.json │ │ │ │ │ ├── black_apple.json │ │ │ │ │ ├── black_bush.json │ │ │ │ │ ├── black_vine.json │ │ │ │ │ ├── blooming_vine.json │ │ │ │ │ ├── bone_grass.json │ │ │ │ │ ├── bone_mushroom.json │ │ │ │ │ ├── egg_plant.json │ │ │ │ │ ├── eye_seed.json │ │ │ │ │ ├── feather_fern.json │ │ │ │ │ ├── giant_mold.json │ │ │ │ │ ├── golden_lumabus.json │ │ │ │ │ ├── golden_vine.json │ │ │ │ │ ├── ink_bush.json │ │ │ │ │ ├── jellyfish_mushroom.json │ │ │ │ │ ├── jungle_plant.json │ │ │ │ │ ├── lucis_spore.json │ │ │ │ │ ├── lumabus.json │ │ │ │ │ ├── magma_flower.json │ │ │ │ │ ├── mushroom_fir.json │ │ │ │ │ ├── neon_equisetum.json │ │ │ │ │ ├── nether_grass.json │ │ │ │ │ ├── orange_mushroom.json │ │ │ │ │ ├── sepian_bone_grass.json │ │ │ │ │ ├── soul_grass.json │ │ │ │ │ ├── soul_lily.json │ │ │ │ │ ├── soul_vein.json │ │ │ │ │ ├── stalagnate.json │ │ │ │ │ ├── swamp_grass.json │ │ │ │ │ ├── wart_seed.json │ │ │ │ │ └── whispering_gourd.json │ │ │ │ ├── pot_interaction │ │ │ │ │ └── flatten_amber_moss_path.json │ │ │ │ └── soil │ │ │ │ │ ├── bone_tile.json │ │ │ │ │ ├── full_bone.json │ │ │ │ │ ├── jungle_grass.json │ │ │ │ │ ├── mushroom_grass.json │ │ │ │ │ ├── nether_moss.json │ │ │ │ │ ├── nether_mycelium.json │ │ │ │ │ ├── sepian_mushroom_grass.json │ │ │ │ │ └── swampland_grass.json │ │ │ ├── biomesoplenty │ │ │ │ ├── crop │ │ │ │ │ ├── barley.json │ │ │ │ │ ├── blackstone_bulb.json │ │ │ │ │ ├── blue_hydrangea.json │ │ │ │ │ ├── bramble.json │ │ │ │ │ ├── burning_blossom.json │ │ │ │ │ ├── cattail.json │ │ │ │ │ ├── clover.json │ │ │ │ │ ├── flesh_tendons.json │ │ │ │ │ ├── glowflower.json │ │ │ │ │ ├── glowshroom.json │ │ │ │ │ ├── goldenrod.json │ │ │ │ │ ├── hair.json │ │ │ │ │ ├── huge_clover_petal.json │ │ │ │ │ ├── lavender.json │ │ │ │ │ ├── orange_cosmos.json │ │ │ │ │ ├── pink_daffodil.json │ │ │ │ │ ├── pink_hibiscus.json │ │ │ │ │ ├── rose.json │ │ │ │ │ ├── sea_oats.json │ │ │ │ │ ├── spanish_moss.json │ │ │ │ │ ├── toadstool.json │ │ │ │ │ ├── violet.json │ │ │ │ │ ├── wildflower.json │ │ │ │ │ ├── willow_vine.json │ │ │ │ │ └── wilted_lily.json │ │ │ │ └── soil │ │ │ │ │ ├── black_sand.json │ │ │ │ │ ├── flesh.json │ │ │ │ │ ├── mud.json │ │ │ │ │ ├── orange_sand.json │ │ │ │ │ ├── origin_grass_block.json │ │ │ │ │ ├── porous_flesh.json │ │ │ │ │ ├── rooted_sand.json │ │ │ │ │ └── white_sand.json │ │ │ ├── blockus │ │ │ │ └── crop │ │ │ │ │ └── rainbow_rose.json │ │ │ ├── blueskies │ │ │ │ └── crop │ │ │ │ │ ├── fiery_beans.json │ │ │ │ │ ├── pine_fruit.json │ │ │ │ │ ├── scalefruit.json │ │ │ │ │ └── winter_leaves.json │ │ │ ├── botania │ │ │ │ └── crop │ │ │ │ │ ├── black_double_flower.json │ │ │ │ │ ├── black_mushroom.json │ │ │ │ │ ├── black_mystical_flower.json │ │ │ │ │ ├── blue_double_flower.json │ │ │ │ │ ├── blue_mushroom.json │ │ │ │ │ ├── blue_mystical_flower.json │ │ │ │ │ ├── brown_double_flower.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── brown_mystical_flower.json │ │ │ │ │ ├── cyan_double_flower.json │ │ │ │ │ ├── cyan_mushroom.json │ │ │ │ │ ├── cyan_mystical_flower.json │ │ │ │ │ ├── gray_double_flower.json │ │ │ │ │ ├── gray_mushroom.json │ │ │ │ │ ├── gray_mystical_flower.json │ │ │ │ │ ├── green_double_flower.json │ │ │ │ │ ├── green_mushroom.json │ │ │ │ │ ├── green_mystical_flower.json │ │ │ │ │ ├── light_blue_double_flower.json │ │ │ │ │ ├── light_blue_mushroom.json │ │ │ │ │ ├── light_blue_mystical_flower.json │ │ │ │ │ ├── light_gray_double_flower.json │ │ │ │ │ ├── light_gray_mushroom.json │ │ │ │ │ ├── light_gray_mystical_flower.json │ │ │ │ │ ├── lime_double_flower.json │ │ │ │ │ ├── lime_mushroom.json │ │ │ │ │ ├── lime_mystical_flower.json │ │ │ │ │ ├── magenta_double_flower.json │ │ │ │ │ ├── magenta_mushroom.json │ │ │ │ │ ├── magenta_mystical_flower.json │ │ │ │ │ ├── orange_double_flower.json │ │ │ │ │ ├── orange_mushroom.json │ │ │ │ │ ├── orange_mystical_flower.json │ │ │ │ │ ├── pink_double_flower.json │ │ │ │ │ ├── pink_mushroom.json │ │ │ │ │ ├── pink_mystical_flower.json │ │ │ │ │ ├── purple_double_flower.json │ │ │ │ │ ├── purple_mushroom.json │ │ │ │ │ ├── purple_mystical_flower.json │ │ │ │ │ ├── red_double_flower.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── red_mystical_flower.json │ │ │ │ │ ├── white_double_flower.json │ │ │ │ │ ├── white_mushroom.json │ │ │ │ │ ├── white_mystical_flower.json │ │ │ │ │ ├── yellow_double_flower.json │ │ │ │ │ ├── yellow_mushroom.json │ │ │ │ │ └── yellow_mystical_flower.json │ │ │ ├── botanypots │ │ │ │ └── crafting │ │ │ │ │ ├── black_concrete_botany_pot.json │ │ │ │ │ ├── black_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── black_concrete_hopper_botany_pot.json │ │ │ │ │ ├── black_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── black_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── black_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── black_terracotta_botany_pot.json │ │ │ │ │ ├── black_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── black_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── blue_concrete_botany_pot.json │ │ │ │ │ ├── blue_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── blue_concrete_hopper_botany_pot.json │ │ │ │ │ ├── blue_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── blue_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── blue_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── blue_terracotta_botany_pot.json │ │ │ │ │ ├── blue_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── blue_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── brown_concrete_botany_pot.json │ │ │ │ │ ├── brown_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── brown_concrete_hopper_botany_pot.json │ │ │ │ │ ├── brown_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── brown_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── brown_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── brown_terracotta_botany_pot.json │ │ │ │ │ ├── brown_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── brown_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── cyan_concrete_botany_pot.json │ │ │ │ │ ├── cyan_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── cyan_concrete_hopper_botany_pot.json │ │ │ │ │ ├── cyan_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── cyan_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── cyan_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── cyan_terracotta_botany_pot.json │ │ │ │ │ ├── cyan_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── cyan_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── gray_concrete_botany_pot.json │ │ │ │ │ ├── gray_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── gray_concrete_hopper_botany_pot.json │ │ │ │ │ ├── gray_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── gray_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── gray_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── gray_terracotta_botany_pot.json │ │ │ │ │ ├── gray_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── gray_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── green_concrete_botany_pot.json │ │ │ │ │ ├── green_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── green_concrete_hopper_botany_pot.json │ │ │ │ │ ├── green_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── green_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── green_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── green_terracotta_botany_pot.json │ │ │ │ │ ├── green_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── green_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_concrete_botany_pot.json │ │ │ │ │ ├── light_blue_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_concrete_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── light_blue_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_terracotta_botany_pot.json │ │ │ │ │ ├── light_blue_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_blue_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_concrete_botany_pot.json │ │ │ │ │ ├── light_gray_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_concrete_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── light_gray_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_terracotta_botany_pot.json │ │ │ │ │ ├── light_gray_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── light_gray_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── lime_concrete_botany_pot.json │ │ │ │ │ ├── lime_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── lime_concrete_hopper_botany_pot.json │ │ │ │ │ ├── lime_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── lime_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── lime_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── lime_terracotta_botany_pot.json │ │ │ │ │ ├── lime_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── lime_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── magenta_concrete_botany_pot.json │ │ │ │ │ ├── magenta_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── magenta_concrete_hopper_botany_pot.json │ │ │ │ │ ├── magenta_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── magenta_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── magenta_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── magenta_terracotta_botany_pot.json │ │ │ │ │ ├── magenta_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── magenta_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── orange_concrete_botany_pot.json │ │ │ │ │ ├── orange_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── orange_concrete_hopper_botany_pot.json │ │ │ │ │ ├── orange_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── orange_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── orange_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── orange_terracotta_botany_pot.json │ │ │ │ │ ├── orange_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── orange_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── pink_concrete_botany_pot.json │ │ │ │ │ ├── pink_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── pink_concrete_hopper_botany_pot.json │ │ │ │ │ ├── pink_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── pink_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── pink_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── pink_terracotta_botany_pot.json │ │ │ │ │ ├── pink_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── pink_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── purple_concrete_botany_pot.json │ │ │ │ │ ├── purple_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── purple_concrete_hopper_botany_pot.json │ │ │ │ │ ├── purple_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── purple_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── purple_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── purple_terracotta_botany_pot.json │ │ │ │ │ ├── purple_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── purple_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── red_concrete_botany_pot.json │ │ │ │ │ ├── red_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── red_concrete_hopper_botany_pot.json │ │ │ │ │ ├── red_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── red_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── red_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── red_terracotta_botany_pot.json │ │ │ │ │ ├── red_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── red_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── terracotta_botany_pot.json │ │ │ │ │ ├── terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── terracotta_hopper_botany_pot.json │ │ │ │ │ ├── white_concrete_botany_pot.json │ │ │ │ │ ├── white_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── white_concrete_hopper_botany_pot.json │ │ │ │ │ ├── white_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── white_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── white_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── white_terracotta_botany_pot.json │ │ │ │ │ ├── white_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── white_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── yellow_concrete_botany_pot.json │ │ │ │ │ ├── yellow_concrete_compact_hopper_botany_pot.json │ │ │ │ │ ├── yellow_concrete_hopper_botany_pot.json │ │ │ │ │ ├── yellow_glazed_terracotta_botany_pot.json │ │ │ │ │ ├── yellow_glazed_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ ├── yellow_glazed_terracotta_hopper_botany_pot.json │ │ │ │ │ ├── yellow_terracotta_botany_pot.json │ │ │ │ │ ├── yellow_terracotta_compact_hopper_botany_pot.json │ │ │ │ │ └── yellow_terracotta_hopper_botany_pot.json │ │ │ ├── byg │ │ │ │ ├── crop │ │ │ │ │ ├── allium_flower_bush.json │ │ │ │ │ ├── alpine_bellflower.json │ │ │ │ │ ├── amaranth.json │ │ │ │ │ ├── angelica.json │ │ │ │ │ ├── barrel_cactus.json │ │ │ │ │ ├── beach_grass.json │ │ │ │ │ ├── begonia.json │ │ │ │ │ ├── bistort.json │ │ │ │ │ ├── black_rose.json │ │ │ │ │ ├── blue_sage.json │ │ │ │ │ ├── blueberries.json │ │ │ │ │ ├── bulbis_oddity.json │ │ │ │ │ ├── california_poppy.json │ │ │ │ │ ├── cattail.json │ │ │ │ │ ├── clover_patch.json │ │ │ │ │ ├── crimson_berries.json │ │ │ │ │ ├── crocus.json │ │ │ │ │ ├── cyan_amaranth.json │ │ │ │ │ ├── cyan_rose.json │ │ │ │ │ ├── daffodil.json │ │ │ │ │ ├── death_cap.json │ │ │ │ │ ├── delphinium.json │ │ │ │ │ ├── embur_gel_vines.json │ │ │ │ │ ├── embur_roots.json │ │ │ │ │ ├── embur_wart.json │ │ │ │ │ ├── ether_bush.json │ │ │ │ │ ├── fairy_slipper.json │ │ │ │ │ ├── firecracker_flower_bush.json │ │ │ │ │ ├── flower_patch.json │ │ │ │ │ ├── flowering_barrel_cactus.json │ │ │ │ │ ├── foxglove.json │ │ │ │ │ ├── fungal_imparius.json │ │ │ │ │ ├── golden_spined_cactus.json │ │ │ │ │ ├── green_mushroom.json │ │ │ │ │ ├── green_tulip.json │ │ │ │ │ ├── guzmania.json │ │ │ │ │ ├── hanging_sythian_roots.json │ │ │ │ │ ├── horseweed.json │ │ │ │ │ ├── hydrangea_bush.json │ │ │ │ │ ├── imparius_bush.json │ │ │ │ │ ├── imparius_mushroom.json │ │ │ │ │ ├── imparius_vine.json │ │ │ │ │ ├── incan_lily.json │ │ │ │ │ ├── iris.json │ │ │ │ │ ├── ivis_roots.json │ │ │ │ │ ├── japanese_orchid.json │ │ │ │ │ ├── kovan_flower.json │ │ │ │ │ ├── lament_vine.json │ │ │ │ │ ├── lazarus_bellflower.json │ │ │ │ │ ├── lollipop_flower.json │ │ │ │ │ ├── magenta_amaranth.json │ │ │ │ │ ├── magenta_tulip.json │ │ │ │ │ ├── mini_cactus.json │ │ │ │ │ ├── nightshade_berries.json │ │ │ │ │ ├── nightshade_roots.json │ │ │ │ │ ├── oddity_bush.json │ │ │ │ │ ├── orange_amaranth.json │ │ │ │ │ ├── orange_daisy.json │ │ │ │ │ ├── osiria_rose.json │ │ │ │ │ ├── peach_leather_flower.json │ │ │ │ │ ├── pink_allium.json │ │ │ │ │ ├── pink_allium_flower_bush.json │ │ │ │ │ ├── pink_anemone.json │ │ │ │ │ ├── pink_daffodil.json │ │ │ │ │ ├── poison_ivy.json │ │ │ │ │ ├── prairie_grass.json │ │ │ │ │ ├── prickly_pear_cactus.json │ │ │ │ │ ├── protea_flower.json │ │ │ │ │ ├── purple_amaranth.json │ │ │ │ │ ├── purple_bulbis_oddity.json │ │ │ │ │ ├── purple_sage.json │ │ │ │ │ ├── purple_tulip.json │ │ │ │ │ ├── richea.json │ │ │ │ │ ├── rose.json │ │ │ │ │ ├── shrub.json │ │ │ │ │ ├── shulkren_fungus.json │ │ │ │ │ ├── shulkren_moss_blanket.json │ │ │ │ │ ├── shulkren_vine.json │ │ │ │ │ ├── silver_vase_flower.json │ │ │ │ │ ├── skyris_vine.json │ │ │ │ │ ├── snowdrops.json │ │ │ │ │ ├── soul_shroom.json │ │ │ │ │ ├── sythian_fungus.json │ │ │ │ │ ├── sythian_roots.json │ │ │ │ │ ├── tall_allium.json │ │ │ │ │ ├── tall_crimson_roots.json │ │ │ │ │ ├── tall_embur_roots.json │ │ │ │ │ ├── tall_pink_allium.json │ │ │ │ │ ├── tall_prairie_grass.json │ │ │ │ │ ├── tiny_lilypads.json │ │ │ │ │ ├── torch_ginger.json │ │ │ │ │ ├── violet_leather_flower.json │ │ │ │ │ ├── wailing_vine.json │ │ │ │ │ ├── water_silk.json │ │ │ │ │ ├── weeping_milkcap.json │ │ │ │ │ ├── weeping_roots.json │ │ │ │ │ ├── white_anemone.json │ │ │ │ │ ├── white_sage.json │ │ │ │ │ ├── winter_cyclamen.json │ │ │ │ │ ├── winter_rose.json │ │ │ │ │ ├── winter_scilla.json │ │ │ │ │ ├── winter_succulent.json │ │ │ │ │ ├── witch_hazel_blossom.json │ │ │ │ │ ├── wood_blewit.json │ │ │ │ │ ├── yellow_daffodil.json │ │ │ │ │ └── yellow_tulip.json │ │ │ │ └── soil │ │ │ │ │ ├── black_sand.json │ │ │ │ │ ├── blue_sand.json │ │ │ │ │ ├── brimstone.json │ │ │ │ │ ├── cryptic_stone.json │ │ │ │ │ ├── dacite.json │ │ │ │ │ ├── embur_nylium.json │ │ │ │ │ ├── end_sand.json │ │ │ │ │ ├── ether_stone.json │ │ │ │ │ ├── lush_dirt.json │ │ │ │ │ ├── lush_farmland.json │ │ │ │ │ ├── lush_grass_block.json │ │ │ │ │ ├── lush_grass_path.json │ │ │ │ │ ├── magmatic_stone.json │ │ │ │ │ ├── mossy_stone.json │ │ │ │ │ ├── mud_block.json │ │ │ │ │ ├── overgrown_crimson_blackstone.json │ │ │ │ │ ├── overgrown_dacite.json │ │ │ │ │ ├── overgrown_netherrack.json │ │ │ │ │ ├── overgrown_stone.json │ │ │ │ │ ├── peat.json │ │ │ │ │ ├── pink_sand.json │ │ │ │ │ ├── podzol_dacite.json │ │ │ │ │ ├── purple_sand.json │ │ │ │ │ ├── purpur_stone.json │ │ │ │ │ ├── quartzite_sand.json │ │ │ │ │ ├── red_rock.json │ │ │ │ │ ├── rocky_stone.json │ │ │ │ │ ├── scoria_stone.json │ │ │ │ │ ├── soapstone.json │ │ │ │ │ ├── sythian_nylium.json │ │ │ │ │ ├── travertine.json │ │ │ │ │ ├── wailing_nylium.json │ │ │ │ │ ├── warped_soul_sand.json │ │ │ │ │ ├── warped_soul_soil.json │ │ │ │ │ ├── white_sand.json │ │ │ │ │ └── windswept_sand.json │ │ │ ├── chococraft │ │ │ │ └── crop │ │ │ │ │ └── gysal.json │ │ │ ├── clutter │ │ │ │ └── crop │ │ │ │ │ ├── cotton.json │ │ │ │ │ └── hops.json │ │ │ ├── corn_delight │ │ │ │ └── crop │ │ │ │ │ └── corn.json │ │ │ ├── cottonly │ │ │ │ └── crop │ │ │ │ │ └── cotton.json │ │ │ ├── createcafe │ │ │ │ └── crop │ │ │ │ │ ├── cassava.json │ │ │ │ │ └── coffee.json │ │ │ ├── creeperoverhaul │ │ │ │ └── crop │ │ │ │ │ └── tiny_cactus.json │ │ │ ├── croparia │ │ │ │ └── seed │ │ │ │ │ ├── acacia.json │ │ │ │ │ ├── aluminium.json │ │ │ │ │ ├── amethyst.json │ │ │ │ │ ├── apple.json │ │ │ │ │ ├── apricot.json │ │ │ │ │ ├── aquamarine.json │ │ │ │ │ ├── banana.json │ │ │ │ │ ├── birch.json │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blaze.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── bone.json │ │ │ │ │ ├── bottle.json │ │ │ │ │ ├── bread.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── bush.json │ │ │ │ │ ├── charcoal.json │ │ │ │ │ ├── cherry.json │ │ │ │ │ ├── chorus.json │ │ │ │ │ ├── clay.json │ │ │ │ │ ├── clownfish.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── cobalt.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── cookie.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── crystal.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── darkoak.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── dragon.json │ │ │ │ │ ├── dragonstone.json │ │ │ │ │ ├── egg.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── elemental.json │ │ │ │ │ ├── elementium.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── ender.json │ │ │ │ │ ├── enderball.json │ │ │ │ │ ├── enderium.json │ │ │ │ │ ├── eye.json │ │ │ │ │ ├── feather.json │ │ │ │ │ ├── fern.json │ │ │ │ │ ├── fiery.json │ │ │ │ │ ├── firework.json │ │ │ │ │ ├── fish.json │ │ │ │ │ ├── flint.json │ │ │ │ │ ├── foot.json │ │ │ │ │ ├── ghast.json │ │ │ │ │ ├── glowink.json │ │ │ │ │ ├── glowstone.json │ │ │ │ │ ├── goat.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── goldenapple.json │ │ │ │ │ ├── grass.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── hepatizon.json │ │ │ │ │ ├── hide.json │ │ │ │ │ ├── honeycomb.json │ │ │ │ │ ├── hop_graphite.json │ │ │ │ │ ├── ichorball.json │ │ │ │ │ ├── ink.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── ironwood.json │ │ │ │ │ ├── jungle.json │ │ │ │ │ ├── kiwi.json │ │ │ │ │ ├── knightmetal.json │ │ │ │ │ ├── knightslime.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── largefern.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── lead2.json │ │ │ │ │ ├── leather.json │ │ │ │ │ ├── lemon.json │ │ │ │ │ ├── lightblue.json │ │ │ │ │ ├── lilypad.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── lumium.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── magma.json │ │ │ │ │ ├── manasteel.json │ │ │ │ │ ├── manyullyn.json │ │ │ │ │ ├── nametag.json │ │ │ │ │ ├── nautilus.json │ │ │ │ │ ├── nether.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── oak.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── orange1.json │ │ │ │ │ ├── osmium.json │ │ │ │ │ ├── paper.json │ │ │ │ │ ├── pear.json │ │ │ │ │ ├── phantom.json │ │ │ │ │ ├── pigiron.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── powder.json │ │ │ │ │ ├── pufferfish.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── quartz.json │ │ │ │ │ ├── queens_slime.json │ │ │ │ │ ├── rawbeef.json │ │ │ │ │ ├── rawchicken.json │ │ │ │ │ ├── rawmutton.json │ │ │ │ │ ├── rawporc.json │ │ │ │ │ ├── rawrabbit.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ ├── refined_glowstone.json │ │ │ │ │ ├── refined_obsidian.json │ │ │ │ │ ├── rose_gold.json │ │ │ │ │ ├── salmon.json │ │ │ │ │ ├── scute.json │ │ │ │ │ ├── sea.json │ │ │ │ │ ├── shard.json │ │ │ │ │ ├── shell.json │ │ │ │ │ ├── signalum.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── silver1.json │ │ │ │ │ ├── skyball.json │ │ │ │ │ ├── slime.json │ │ │ │ │ ├── slimesteel.json │ │ │ │ │ ├── snowball.json │ │ │ │ │ ├── soulsteel.json │ │ │ │ │ ├── spruce.json │ │ │ │ │ ├── star.json │ │ │ │ │ ├── starmetal.json │ │ │ │ │ ├── steel.json │ │ │ │ │ ├── steeleaf.json │ │ │ │ │ ├── string.json │ │ │ │ │ ├── sugar.json │ │ │ │ │ ├── tallgrass.json │ │ │ │ │ ├── terrasteel.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── tinkers_bronze.json │ │ │ │ │ ├── totem.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ ├── vine.json │ │ │ │ │ ├── white.json │ │ │ │ │ ├── wither.json │ │ │ │ │ ├── xp.json │ │ │ │ │ ├── yellow.json │ │ │ │ │ └── zombie.json │ │ │ ├── croptopia │ │ │ │ └── crop │ │ │ │ │ ├── artichoke.json │ │ │ │ │ ├── asparagus.json │ │ │ │ │ ├── barley.json │ │ │ │ │ ├── basil.json │ │ │ │ │ ├── bellpepper.json │ │ │ │ │ ├── blackbean.json │ │ │ │ │ ├── blackberry.json │ │ │ │ │ ├── blueberry.json │ │ │ │ │ ├── broccoli.json │ │ │ │ │ ├── cabbage.json │ │ │ │ │ ├── cantaloupe.json │ │ │ │ │ ├── cauliflower.json │ │ │ │ │ ├── celery.json │ │ │ │ │ ├── chile_pepper.json │ │ │ │ │ ├── coffee.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cranberry.json │ │ │ │ │ ├── cucumber.json │ │ │ │ │ ├── currant.json │ │ │ │ │ ├── eggplant.json │ │ │ │ │ ├── elderberry.json │ │ │ │ │ ├── garlic.json │ │ │ │ │ ├── ginger.json │ │ │ │ │ ├── grape.json │ │ │ │ │ ├── greenbean.json │ │ │ │ │ ├── greenonion.json │ │ │ │ │ ├── honeydew.json │ │ │ │ │ ├── hops.json │ │ │ │ │ ├── kale.json │ │ │ │ │ ├── kiwi.json │ │ │ │ │ ├── leek.json │ │ │ │ │ ├── lettuce.json │ │ │ │ │ ├── mustard.json │ │ │ │ │ ├── oat.json │ │ │ │ │ ├── olive.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── peanut.json │ │ │ │ │ ├── pepper.json │ │ │ │ │ ├── pineapple.json │ │ │ │ │ ├── radish.json │ │ │ │ │ ├── raspberry.json │ │ │ │ │ ├── rhubarb.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── rutabaga.json │ │ │ │ │ ├── saguaro.json │ │ │ │ │ ├── soybean.json │ │ │ │ │ ├── spinach.json │ │ │ │ │ ├── squash.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── sweetpotato.json │ │ │ │ │ ├── tea_leaves.json │ │ │ │ │ ├── tomatillo.json │ │ │ │ │ ├── tomato.json │ │ │ │ │ ├── turmeric.json │ │ │ │ │ ├── turnip.json │ │ │ │ │ ├── vanilla.json │ │ │ │ │ ├── yam.json │ │ │ │ │ └── zucchini.json │ │ │ ├── druidcraftrg │ │ │ │ └── crop │ │ │ │ │ └── hemp.json │ │ │ ├── endercrop │ │ │ │ ├── crop │ │ │ │ │ └── ender.json │ │ │ │ └── soil │ │ │ │ │ └── tilled_end_stone.json │ │ │ ├── enhancedfarming │ │ │ │ └── crop │ │ │ │ │ ├── aubergine.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cucumber.json │ │ │ │ │ ├── garlic.json │ │ │ │ │ ├── grapes.json │ │ │ │ │ ├── lettuce.json │ │ │ │ │ ├── mint.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── pineapple.json │ │ │ │ │ └── tomato.json │ │ │ ├── farmersdelight │ │ │ │ ├── crop │ │ │ │ │ ├── brown_mushroom_colony.json │ │ │ │ │ ├── cabbage.json │ │ │ │ │ ├── onions.json │ │ │ │ │ ├── red_mushroom_colony.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── sandy_shrub.json │ │ │ │ │ ├── tomatoes.json │ │ │ │ │ ├── wild_beetroots.json │ │ │ │ │ ├── wild_cabbage.json │ │ │ │ │ ├── wild_carrot.json │ │ │ │ │ ├── wild_onion.json │ │ │ │ │ ├── wild_potato.json │ │ │ │ │ ├── wild_rice.json │ │ │ │ │ └── wild_tomatoes.json │ │ │ │ ├── pot_interaction │ │ │ │ │ └── till_rich_soil.json │ │ │ │ └── soil │ │ │ │ │ ├── rich_soil.json │ │ │ │ │ └── rich_soil_farmland.json │ │ │ ├── ffdyes │ │ │ │ └── crop │ │ │ │ │ ├── allium.json │ │ │ │ │ ├── azure_bluet.json │ │ │ │ │ ├── blue_orchid.json │ │ │ │ │ ├── cornflower.json │ │ │ │ │ ├── dandelion.json │ │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ │ ├── orange_tulip.json │ │ │ │ │ ├── oxeye_daisy.json │ │ │ │ │ ├── pink_tulip.json │ │ │ │ │ ├── poppy.json │ │ │ │ │ ├── red_tulip.json │ │ │ │ │ ├── white_tulip.json │ │ │ │ │ └── wither_rose.json │ │ │ ├── hexerei │ │ │ │ └── crop │ │ │ │ │ ├── belladonna.json │ │ │ │ │ ├── mandrake.json │ │ │ │ │ ├── mugwort.json │ │ │ │ │ ├── sage.json │ │ │ │ │ └── yellow_dock.json │ │ │ ├── immersiveengineering │ │ │ │ └── crop │ │ │ │ │ └── hemp.json │ │ │ ├── industrialagriculture │ │ │ │ ├── addons │ │ │ │ │ ├── end_glob.json │ │ │ │ │ ├── gemstone.json │ │ │ │ │ ├── glob.json │ │ │ │ │ └── nether_glob.json │ │ │ │ └── crop │ │ │ │ │ ├── bat.json │ │ │ │ │ ├── cat.json │ │ │ │ │ ├── dolphin.json │ │ │ │ │ ├── drowned.json │ │ │ │ │ ├── endermite.json │ │ │ │ │ ├── evoker.json │ │ │ │ │ ├── fox.json │ │ │ │ │ ├── guardian.json │ │ │ │ │ ├── horse.json │ │ │ │ │ ├── husk.json │ │ │ │ │ ├── llama.json │ │ │ │ │ ├── magma_cube.json │ │ │ │ │ ├── mooshroom.json │ │ │ │ │ ├── panda.json │ │ │ │ │ ├── parrot.json │ │ │ │ │ ├── phantom.json │ │ │ │ │ ├── piglin.json │ │ │ │ │ ├── piglin_brute.json │ │ │ │ │ ├── pillager.json │ │ │ │ │ ├── polar_bear.json │ │ │ │ │ ├── ravager.json │ │ │ │ │ ├── shulker.json │ │ │ │ │ ├── silverfish.json │ │ │ │ │ ├── stray.json │ │ │ │ │ ├── vex.json │ │ │ │ │ ├── villager.json │ │ │ │ │ ├── vindicator.json │ │ │ │ │ ├── witch.json │ │ │ │ │ ├── wolf.json │ │ │ │ │ └── zombified_piglin.json │ │ │ ├── kawaiidishes │ │ │ │ └── crops │ │ │ │ │ └── coffee_fruit.json │ │ │ ├── minecraft │ │ │ │ ├── crop │ │ │ │ │ ├── allium.json │ │ │ │ │ ├── azure_bluet.json │ │ │ │ │ ├── bamboo.json │ │ │ │ │ ├── beetroot.json │ │ │ │ │ ├── big_dripleaf.json │ │ │ │ │ ├── blue_orchid.json │ │ │ │ │ ├── brain_coral.json │ │ │ │ │ ├── brain_coral_block.json │ │ │ │ │ ├── brain_coral_fan.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── bubble_coral.json │ │ │ │ │ ├── bubble_coral_block.json │ │ │ │ │ ├── bubble_coral_fan.json │ │ │ │ │ ├── cactus.json │ │ │ │ │ ├── carrot.json │ │ │ │ │ ├── chorus.json │ │ │ │ │ ├── cocoa_beans.json │ │ │ │ │ ├── cornflower.json │ │ │ │ │ ├── crimson_fungus.json │ │ │ │ │ ├── crimson_roots.json │ │ │ │ │ ├── dandelion.json │ │ │ │ │ ├── fern.json │ │ │ │ │ ├── fire_coral.json │ │ │ │ │ ├── fire_coral_block.json │ │ │ │ │ ├── fire_coral_fan.json │ │ │ │ │ ├── glow_berry_bush.json │ │ │ │ │ ├── glow_lichen.json │ │ │ │ │ ├── grass.json │ │ │ │ │ ├── hanging_roots.json │ │ │ │ │ ├── horn_coral.json │ │ │ │ │ ├── horn_coral_block.json │ │ │ │ │ ├── horn_coral_fan.json │ │ │ │ │ ├── kelp.json │ │ │ │ │ ├── large_fern.json │ │ │ │ │ ├── lilac.json │ │ │ │ │ ├── lily_of_the_valley.json │ │ │ │ │ ├── lily_pad.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── moss.json │ │ │ │ │ ├── nether_sprouts.json │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ ├── orange_tulip.json │ │ │ │ │ ├── oxeye_daisy.json │ │ │ │ │ ├── peony.json │ │ │ │ │ ├── pink_petals.json │ │ │ │ │ ├── pink_tulip.json │ │ │ │ │ ├── pitcher_plant.json │ │ │ │ │ ├── poppy.json │ │ │ │ │ ├── potato.json │ │ │ │ │ ├── pumpkin.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── red_tulip.json │ │ │ │ │ ├── rose_bush.json │ │ │ │ │ ├── sea_pickle.json │ │ │ │ │ ├── seagrass.json │ │ │ │ │ ├── small_dripleaf.json │ │ │ │ │ ├── spore_blossom.json │ │ │ │ │ ├── sugar_cane.json │ │ │ │ │ ├── sunflower.json │ │ │ │ │ ├── sweet_berry_bush.json │ │ │ │ │ ├── tall_grass.json │ │ │ │ │ ├── torchflower.json │ │ │ │ │ ├── tube_coral.json │ │ │ │ │ ├── tube_coral_block.json │ │ │ │ │ ├── tube_coral_fan.json │ │ │ │ │ ├── twisting_vines.json │ │ │ │ │ ├── vines.json │ │ │ │ │ ├── warped_fungus.json │ │ │ │ │ ├── warped_roots.json │ │ │ │ │ ├── weeping_vines.json │ │ │ │ │ ├── wheat.json │ │ │ │ │ ├── white_tulip.json │ │ │ │ │ └── wither_rose.json │ │ │ │ ├── fertilizer │ │ │ │ │ └── bonemeal.json │ │ │ │ ├── pot_interaction │ │ │ │ │ ├── flatten_dirt_path.json │ │ │ │ │ ├── lava_to_obsidian.json │ │ │ │ │ ├── till_coarse_dirt_to_dirt.json │ │ │ │ │ ├── till_farmland.json │ │ │ │ │ ├── till_rooted_dirt_to_dirt.json │ │ │ │ │ └── water_to_stone.json │ │ │ │ └── soil │ │ │ │ │ ├── acacia_wood.json │ │ │ │ │ ├── andesite.json │ │ │ │ │ ├── birch_wood.json │ │ │ │ │ ├── blackstone.json │ │ │ │ │ ├── bone.json │ │ │ │ │ ├── brown_mushroom.json │ │ │ │ │ ├── clay.json │ │ │ │ │ ├── coal_ore.json │ │ │ │ │ ├── coarse_dirt.json │ │ │ │ │ ├── cobblestone.json │ │ │ │ │ ├── copper_ore.json │ │ │ │ │ ├── crimson_nylium.json │ │ │ │ │ ├── dark_oak_wood.json │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── deepslate_coal_ore.json │ │ │ │ │ ├── deepslate_copper_ore.json │ │ │ │ │ ├── deepslate_diamond_ore.json │ │ │ │ │ ├── deepslate_emerald_ore.json │ │ │ │ │ ├── deepslate_gold_ore.json │ │ │ │ │ ├── deepslate_iron_ore.json │ │ │ │ │ ├── deepslate_lapis_ore.json │ │ │ │ │ ├── deepslate_redstone_ore.json │ │ │ │ │ ├── diamond_ore.json │ │ │ │ │ ├── diorite.json │ │ │ │ │ ├── dirt.json │ │ │ │ │ ├── dirt_path.json │ │ │ │ │ ├── dried_kelp.json │ │ │ │ │ ├── dripstone.json │ │ │ │ │ ├── emerald_ore.json │ │ │ │ │ ├── end_stone.json │ │ │ │ │ ├── farmland.json │ │ │ │ │ ├── gold_ore.json │ │ │ │ │ ├── granite.json │ │ │ │ │ ├── grass.json │ │ │ │ │ ├── gravel.json │ │ │ │ │ ├── hay_bale.json │ │ │ │ │ ├── iron_ore.json │ │ │ │ │ ├── jungle_wood.json │ │ │ │ │ ├── lapis_ore.json │ │ │ │ │ ├── lava.json │ │ │ │ │ ├── magma_block.json │ │ │ │ │ ├── moss.json │ │ │ │ │ ├── mossy_cobblestone.json │ │ │ │ │ ├── mushroom_stem.json │ │ │ │ │ ├── mycelium.json │ │ │ │ │ ├── nether_gold_ore.json │ │ │ │ │ ├── nether_quartz_ore.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ ├── oak_wood.json │ │ │ │ │ ├── obsidian.json │ │ │ │ │ ├── podzol.json │ │ │ │ │ ├── red_mushroom.json │ │ │ │ │ ├── red_sand.json │ │ │ │ │ ├── redstone_ore.json │ │ │ │ │ ├── rooted_dirt.json │ │ │ │ │ ├── sand.json │ │ │ │ │ ├── soul_sand.json │ │ │ │ │ ├── soul_soil.json │ │ │ │ │ ├── spruce_wood.json │ │ │ │ │ ├── stone.json │ │ │ │ │ ├── warped_nylium.json │ │ │ │ │ └── water.json │ │ │ ├── moshizmod │ │ │ │ ├── crop │ │ │ │ │ ├── bell_pepper.json │ │ │ │ │ ├── black_tulip.json │ │ │ │ │ ├── blackberry.json │ │ │ │ │ ├── blue_tulip.json │ │ │ │ │ ├── blueberry.json │ │ │ │ │ ├── brown_tulip.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── crimson_berries.json │ │ │ │ │ ├── cyan_tulip.json │ │ │ │ │ ├── gooseberry.json │ │ │ │ │ ├── green_tulip.json │ │ │ │ │ ├── grey_tulip.json │ │ │ │ │ ├── lettuce.json │ │ │ │ │ ├── light_blue_tulip.json │ │ │ │ │ ├── light_grey_tulip.json │ │ │ │ │ ├── lime_tulip.json │ │ │ │ │ ├── lotune.json │ │ │ │ │ ├── magenta_tulip.json │ │ │ │ │ ├── murky_gourd.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── orange_tulip.json │ │ │ │ │ ├── pink_tulip.json │ │ │ │ │ ├── polyp.json │ │ │ │ │ ├── purple_tulip.json │ │ │ │ │ ├── raspberry.json │ │ │ │ │ ├── red_tulip.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── rye.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── tomato.json │ │ │ │ │ ├── vanilla.json │ │ │ │ │ ├── white_tulip.json │ │ │ │ │ └── yellow_tulip.json │ │ │ │ └── soil │ │ │ │ │ └── soul_soil_farmland.json │ │ │ ├── mysticalagradditions │ │ │ │ ├── crop │ │ │ │ │ ├── awakened_draconium.json │ │ │ │ │ ├── dragon_egg.json │ │ │ │ │ ├── gaia_spirit.json │ │ │ │ │ ├── nether_star.json │ │ │ │ │ ├── neutronium.json │ │ │ │ │ └── nitro_crystal.json │ │ │ │ └── soil │ │ │ │ │ └── insanium_farmland.json │ │ │ ├── mysticalagriculture │ │ │ │ ├── crop │ │ │ │ │ ├── air.json │ │ │ │ │ ├── aluminum.json │ │ │ │ │ ├── amethyst.json │ │ │ │ │ ├── amethyst_bronze.json │ │ │ │ │ ├── apatite.json │ │ │ │ │ ├── aquamarine.json │ │ │ │ │ ├── basalt.json │ │ │ │ │ ├── basalz.json │ │ │ │ │ ├── blaze.json │ │ │ │ │ ├── blazing_crystal.json │ │ │ │ │ ├── blitz.json │ │ │ │ │ ├── blizz.json │ │ │ │ │ ├── brass.json │ │ │ │ │ ├── bronze.json │ │ │ │ │ ├── certus_quartz.json │ │ │ │ │ ├── chicken.json │ │ │ │ │ ├── chrome.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── cobalt.json │ │ │ │ │ ├── compressed_iron.json │ │ │ │ │ ├── conductive_alloy.json │ │ │ │ │ ├── constantan.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── copper_alloy.json │ │ │ │ │ ├── coral.json │ │ │ │ │ ├── cow.json │ │ │ │ │ ├── creeper.json │ │ │ │ │ ├── cyanite.json │ │ │ │ │ ├── dark_steel.json │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── dirt.json │ │ │ │ │ ├── draconium.json │ │ │ │ │ ├── dye.json │ │ │ │ │ ├── earth.json │ │ │ │ │ ├── electrum.json │ │ │ │ │ ├── elementium.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── end.json │ │ │ │ │ ├── end_steel.json │ │ │ │ │ ├── enderium.json │ │ │ │ │ ├── enderman.json │ │ │ │ │ ├── energetic_alloy.json │ │ │ │ │ ├── energized_steel.json │ │ │ │ │ ├── experience.json │ │ │ │ │ ├── fiery_ingot.json │ │ │ │ │ ├── fire.json │ │ │ │ │ ├── fish.json │ │ │ │ │ ├── fluix.json │ │ │ │ │ ├── fluorite.json │ │ │ │ │ ├── ghast.json │ │ │ │ │ ├── glowstone.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── grains_of_infinity.json │ │ │ │ │ ├── graphite.json │ │ │ │ │ ├── hepatizon.json │ │ │ │ │ ├── honey.json │ │ │ │ │ ├── hop_graphite.json │ │ │ │ │ ├── ice.json │ │ │ │ │ ├── inferium.json │ │ │ │ │ ├── invar.json │ │ │ │ │ ├── iridium.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── ironwood.json │ │ │ │ │ ├── knightmetal.json │ │ │ │ │ ├── lapis_lazuli.json │ │ │ │ │ ├── lead.json │ │ │ │ │ ├── limestone.json │ │ │ │ │ ├── lumium.json │ │ │ │ │ ├── manasteel.json │ │ │ │ │ ├── manyullyn.json │ │ │ │ │ ├── marble.json │ │ │ │ │ ├── menril.json │ │ │ │ │ ├── mithril.json │ │ │ │ │ ├── mystical_flower.json │ │ │ │ │ ├── nature.json │ │ │ │ │ ├── nether.json │ │ │ │ │ ├── nether_quartz.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── nickel.json │ │ │ │ │ ├── niotic_crystal.json │ │ │ │ │ ├── obsidian.json │ │ │ │ │ ├── osmium.json │ │ │ │ │ ├── peridot.json │ │ │ │ │ ├── pig.json │ │ │ │ │ ├── pig_iron.json │ │ │ │ │ ├── platinum.json │ │ │ │ │ ├── prismarine.json │ │ │ │ │ ├── pulsating_alloy.json │ │ │ │ │ ├── quartz_enriched_iron.json │ │ │ │ │ ├── queens_slime.json │ │ │ │ │ ├── rabbit.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ ├── redstone_alloy.json │ │ │ │ │ ├── refined_glowstone.json │ │ │ │ │ ├── refined_obsidian.json │ │ │ │ │ ├── rock_crystal.json │ │ │ │ │ ├── rose_gold.json │ │ │ │ │ ├── rubber.json │ │ │ │ │ ├── ruby.json │ │ │ │ │ ├── saltpeter.json │ │ │ │ │ ├── sapphire.json │ │ │ │ │ ├── sheep.json │ │ │ │ │ ├── signalum.json │ │ │ │ │ ├── silicon.json │ │ │ │ │ ├── silver.json │ │ │ │ │ ├── skeleton.json │ │ │ │ │ ├── sky_stone.json │ │ │ │ │ ├── slime.json │ │ │ │ │ ├── slimesteel.json │ │ │ │ │ ├── soularium.json │ │ │ │ │ ├── spider.json │ │ │ │ │ ├── spirited_crystal.json │ │ │ │ │ ├── squid.json │ │ │ │ │ ├── starmetal.json │ │ │ │ │ ├── steel.json │ │ │ │ │ ├── steeleaf.json │ │ │ │ │ ├── stone.json │ │ │ │ │ ├── sulfur.json │ │ │ │ │ ├── terrasteel.json │ │ │ │ │ ├── tin.json │ │ │ │ │ ├── tinkers_bronze.json │ │ │ │ │ ├── titanium.json │ │ │ │ │ ├── tungsten.json │ │ │ │ │ ├── turtle.json │ │ │ │ │ ├── uraninite.json │ │ │ │ │ ├── uranium.json │ │ │ │ │ ├── vibrant_alloy.json │ │ │ │ │ ├── water.json │ │ │ │ │ ├── wither_skeleton.json │ │ │ │ │ ├── wood.json │ │ │ │ │ ├── yellorium.json │ │ │ │ │ ├── zinc.json │ │ │ │ │ └── zombie.json │ │ │ │ └── soil │ │ │ │ │ ├── imperium_farmland.json │ │ │ │ │ ├── inferium_farmland.json │ │ │ │ │ ├── prudentium_farmland.json │ │ │ │ │ ├── supremium_farmland.json │ │ │ │ │ └── tertium_farmland.json │ │ │ ├── mysticalworld │ │ │ │ └── crop │ │ │ │ │ └── aubergine.json │ │ │ ├── occultism │ │ │ │ └── crop │ │ │ │ │ └── datura.json │ │ │ ├── oreberriesreplanted │ │ │ │ ├── aluminum.json │ │ │ │ ├── copper.json │ │ │ │ ├── essence.json │ │ │ │ ├── gold.json │ │ │ │ ├── iron.json │ │ │ │ ├── lead.json │ │ │ │ ├── nickel.json │ │ │ │ ├── osmium.json │ │ │ │ ├── silver.json │ │ │ │ ├── tin.json │ │ │ │ ├── uranium.json │ │ │ │ └── zinc.json │ │ │ ├── pamhc2crops │ │ │ │ └── crop │ │ │ │ │ ├── agave.json │ │ │ │ │ ├── alfalfa.json │ │ │ │ │ ├── aloe.json │ │ │ │ │ ├── amaranth.json │ │ │ │ │ ├── arrowroot.json │ │ │ │ │ ├── artichoke.json │ │ │ │ │ ├── asparagus.json │ │ │ │ │ ├── barley.json │ │ │ │ │ ├── barrelcactus.json │ │ │ │ │ ├── bean.json │ │ │ │ │ ├── bellpepper.json │ │ │ │ │ ├── blackberry.json │ │ │ │ │ ├── blueberry.json │ │ │ │ │ ├── bokchoy.json │ │ │ │ │ ├── broccoli.json │ │ │ │ │ ├── brusselsprout.json │ │ │ │ │ ├── cabbage.json │ │ │ │ │ ├── cactusfruit.json │ │ │ │ │ ├── calabash.json │ │ │ │ │ ├── candleberry.json │ │ │ │ │ ├── canola.json │ │ │ │ │ ├── cantaloupe.json │ │ │ │ │ ├── cassava.json │ │ │ │ │ ├── cattail.json │ │ │ │ │ ├── cauliflower.json │ │ │ │ │ ├── celery.json │ │ │ │ │ ├── chia.json │ │ │ │ │ ├── chickpea.json │ │ │ │ │ ├── chilipepper.json │ │ │ │ │ ├── cloudberry.json │ │ │ │ │ ├── coffeebean.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cotton.json │ │ │ │ │ ├── cranberry.json │ │ │ │ │ ├── cucumber.json │ │ │ │ │ ├── eggplant.json │ │ │ │ │ ├── elderberry.json │ │ │ │ │ ├── flax.json │ │ │ │ │ ├── garlic.json │ │ │ │ │ ├── ginger.json │ │ │ │ │ ├── grape.json │ │ │ │ │ ├── greengrape.json │ │ │ │ │ ├── guarana.json │ │ │ │ │ ├── huckleberry.json │ │ │ │ │ ├── jicama.json │ │ │ │ │ ├── juniperberry.json │ │ │ │ │ ├── jute.json │ │ │ │ │ ├── kale.json │ │ │ │ │ ├── kenaf.json │ │ │ │ │ ├── kiwi.json │ │ │ │ │ ├── kohlrabi.json │ │ │ │ │ ├── leek.json │ │ │ │ │ ├── lentil.json │ │ │ │ │ ├── lettuce.json │ │ │ │ │ ├── lotus.json │ │ │ │ │ ├── millet.json │ │ │ │ │ ├── mulberry.json │ │ │ │ │ ├── mustardseeds.json │ │ │ │ │ ├── nettles.json │ │ │ │ │ ├── nopales.json │ │ │ │ │ ├── oats.json │ │ │ │ │ ├── okra.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── papyrus.json │ │ │ │ │ ├── parsnip.json │ │ │ │ │ ├── peanut.json │ │ │ │ │ ├── peas.json │ │ │ │ │ ├── pineapple.json │ │ │ │ │ ├── quinoa.json │ │ │ │ │ ├── radish.json │ │ │ │ │ ├── raspberry.json │ │ │ │ │ ├── rhubarb.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── rutabaga.json │ │ │ │ │ ├── rye.json │ │ │ │ │ ├── scallion.json │ │ │ │ │ ├── sesameseeds.json │ │ │ │ │ ├── sisal.json │ │ │ │ │ ├── sorghum.json │ │ │ │ │ ├── soybean.json │ │ │ │ │ ├── spiceleaf.json │ │ │ │ │ ├── spinach.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── sunchoke.json │ │ │ │ │ ├── sweetpotato.json │ │ │ │ │ ├── taro.json │ │ │ │ │ ├── tealeaf.json │ │ │ │ │ ├── tomatillo.json │ │ │ │ │ ├── tomato.json │ │ │ │ │ ├── truffle.json │ │ │ │ │ ├── turnip.json │ │ │ │ │ ├── waterchestnut.json │ │ │ │ │ ├── whitemushroom.json │ │ │ │ │ ├── witersquash.json │ │ │ │ │ ├── wolfberry.json │ │ │ │ │ ├── yucca.json │ │ │ │ │ └── zucchini.json │ │ │ ├── pizzacraft │ │ │ │ └── crop │ │ │ │ │ ├── broccoli.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cucumber.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── pepper.json │ │ │ │ │ ├── pineapple.json │ │ │ │ │ └── tomato.json │ │ │ ├── ravageandcabbage │ │ │ │ └── crop │ │ │ │ │ └── cabbage.json │ │ │ ├── silentgear │ │ │ │ └── crop │ │ │ │ │ ├── flax.json │ │ │ │ │ └── fluffy.json │ │ │ ├── simplefarming │ │ │ │ └── crop │ │ │ │ │ ├── barley.json │ │ │ │ │ ├── blackberry.json │ │ │ │ │ ├── blueberry.json │ │ │ │ │ ├── broccoli.json │ │ │ │ │ ├── cantaloupe.json │ │ │ │ │ ├── cassava.json │ │ │ │ │ ├── chicory_root.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cotton.json │ │ │ │ │ ├── cucumber.json │ │ │ │ │ ├── cumin.json │ │ │ │ │ ├── eggplant.json │ │ │ │ │ ├── ginger.json │ │ │ │ │ ├── grape.json │ │ │ │ │ ├── honeydew.json │ │ │ │ │ ├── kenaf.json │ │ │ │ │ ├── lettuce.json │ │ │ │ │ ├── marshmallow.json │ │ │ │ │ ├── oat.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── opuntia.json │ │ │ │ │ ├── peanut.json │ │ │ │ │ ├── peas.json │ │ │ │ │ ├── pepper.json │ │ │ │ │ ├── quinoa.json │ │ │ │ │ ├── radish.json │ │ │ │ │ ├── raspberry.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── rye.json │ │ │ │ │ ├── sorghum.json │ │ │ │ │ ├── soybean.json │ │ │ │ │ ├── spinach.json │ │ │ │ │ ├── squash.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── sweet_potato.json │ │ │ │ │ ├── tomato.json │ │ │ │ │ ├── turnip.json │ │ │ │ │ ├── yam.json │ │ │ │ │ └── zucchini.json │ │ │ ├── snad │ │ │ │ └── soil │ │ │ │ │ ├── red_snad.json │ │ │ │ │ ├── snad.json │ │ │ │ │ └── soul_snad.json │ │ │ ├── sprout │ │ │ │ └── crop │ │ │ │ │ └── peanut.json │ │ │ ├── supplementaries │ │ │ │ └── crop │ │ │ │ │ ├── flax.json │ │ │ │ │ └── wild_flax.json │ │ │ ├── tconstruct │ │ │ │ ├── crops │ │ │ │ │ ├── blood_slime_fern.json │ │ │ │ │ ├── blood_slime_tall_grass.json │ │ │ │ │ ├── earth_slime_fern.json │ │ │ │ │ ├── earth_slime_tall_grass.json │ │ │ │ │ ├── ender_slime_fern.json │ │ │ │ │ ├── ender_slime_tall_grass.json │ │ │ │ │ ├── sky_slime_fern.json │ │ │ │ │ └── sky_slime_tall_grass.json │ │ │ │ └── soil │ │ │ │ │ ├── blood_earth_slime_grass.json │ │ │ │ │ ├── blood_ender_slime_grass.json │ │ │ │ │ ├── blood_ichor_slime_grass.json │ │ │ │ │ ├── blood_sky_slime_grass.json │ │ │ │ │ ├── blood_vanilla_slime_grass.json │ │ │ │ │ ├── earth_earth_slime_grass.json │ │ │ │ │ ├── earth_ender_slime_grass.json │ │ │ │ │ ├── earth_ichor_slime_grass.json │ │ │ │ │ ├── earth_sky_slime_grass.json │ │ │ │ │ ├── earth_slime_dirt.json │ │ │ │ │ ├── earth_vanilla_slime_block.json │ │ │ │ │ ├── ender_earth_slime_grass.json │ │ │ │ │ ├── ender_ender_slime_grass.json │ │ │ │ │ ├── ender_ichor_slime_grass.json │ │ │ │ │ ├── ender_sky_slime_grass.json │ │ │ │ │ ├── ender_slime_dirt.json │ │ │ │ │ ├── ender_vanilla_slime_grass.json │ │ │ │ │ ├── ichor_slime_dirt.json │ │ │ │ │ ├── sky_earth_slime_grass.json │ │ │ │ │ ├── sky_ender_slime_grass.json │ │ │ │ │ ├── sky_ichor_slime_grass.json │ │ │ │ │ ├── sky_sky_slime_grass.json │ │ │ │ │ ├── sky_slime_dirt.json │ │ │ │ │ └── sky_vanilla_slime_grass.json │ │ │ ├── thermal │ │ │ │ ├── crop │ │ │ │ │ ├── amaranth.json │ │ │ │ │ ├── barley.json │ │ │ │ │ ├── bell_pepper.json │ │ │ │ │ ├── coffee.json │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── eggplant.json │ │ │ │ │ ├── flax.json │ │ │ │ │ ├── frost_melon.json │ │ │ │ │ ├── green_bean.json │ │ │ │ │ ├── hops.json │ │ │ │ │ ├── onion.json │ │ │ │ │ ├── peanut.json │ │ │ │ │ ├── radish.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── sadiroot.json │ │ │ │ │ ├── spinach.json │ │ │ │ │ ├── strawberry.json │ │ │ │ │ ├── tea.json │ │ │ │ │ └── tomato.json │ │ │ │ ├── pot_interaction │ │ │ │ │ └── till_phytosoil.json │ │ │ │ └── soil │ │ │ │ │ ├── phytosoil.json │ │ │ │ │ └── phytosoil_tilled.json │ │ │ ├── theveggieway │ │ │ │ └── crop │ │ │ │ │ ├── corn.json │ │ │ │ │ ├── cotton.json │ │ │ │ │ ├── lentil.json │ │ │ │ │ ├── quinoa.json │ │ │ │ │ └── soybean.json │ │ │ └── twilightforest │ │ │ │ ├── crop │ │ │ │ ├── clover_patch.json │ │ │ │ ├── fiddlehead.json │ │ │ │ ├── huge_lily_pad.json │ │ │ │ ├── huge_water_lily.json │ │ │ │ ├── mayapple.json │ │ │ │ ├── moss_patch.json │ │ │ │ ├── mushgloom.json │ │ │ │ ├── root_strand.json │ │ │ │ ├── thorn_rose.json │ │ │ │ └── torchberry_plant.json │ │ │ │ └── soil │ │ │ │ └── uberous_soil.json │ │ └── tags │ │ │ ├── blocks │ │ │ ├── all_botany_pots.json │ │ │ ├── basic_botany_pots.json │ │ │ └── hopper_botany_pots.json │ │ │ └── items │ │ │ ├── all_botany_pots.json │ │ │ ├── basic_botany_pots.json │ │ │ └── hopper_botany_pots.json │ └── minecraft │ │ └── tags │ │ └── blocks │ │ └── mineable │ │ └── pickaxe.json │ ├── logo.png │ └── pack.mcmeta ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── darkhax │ │ └── botanypots │ │ ├── BotanyPotsFabric.java │ │ ├── BotanyPotsFabricClient.java │ │ └── events │ │ └── BotanyPotEventDispatcherFabric.java │ └── resources │ ├── META-INF │ └── services │ │ └── net.darkhax.botanypots.events.BotanyPotEventDispatcher │ └── fabric.mod.json ├── forge ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── darkhax │ │ └── botanypots │ │ ├── BotanyPotsForge.java │ │ ├── BotanyPotsForgeClient.java │ │ ├── addons │ │ └── top │ │ │ └── TOPPlugin.java │ │ └── events │ │ ├── BotanyPotEvent.java │ │ ├── BotanyPotEventDispatcherForge.java │ │ ├── CropDropEvent.java │ │ ├── LookupCropEvent.java │ │ ├── LookupFertilizerEvent.java │ │ ├── LookupInteractionEvent.java │ │ └── LookupSoilEvent.java │ └── resources │ └── META-INF │ ├── mods.toml │ └── services │ └── net.darkhax.botanypots.events.BotanyPotEventDispatcher ├── gradle.properties ├── gradle ├── build_number.gradle ├── git_changelog.gradle ├── java.gradle ├── minify_jsons.gradle ├── patreon.gradle ├── property_helper.gradle ├── property_loader.gradle ├── signing.gradle ├── version_checker.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── darkhax │ │ └── botanypots │ │ ├── BotanyPotsNeoForge.java │ │ ├── BotanyPotsNeoForgeClient.java │ │ └── events │ │ ├── BotanyPotEvent.java │ │ ├── BotanyPotEventDispatcherNeoForge.java │ │ ├── CropDropEvent.java │ │ ├── LookupCropEvent.java │ │ ├── LookupFertilizerEvent.java │ │ ├── LookupInteractionEvent.java │ │ └── LookupSoilEvent.java │ └── resources │ └── META-INF │ ├── mods.toml │ └── services │ └── net.darkhax.botanypots.events.BotanyPotEventDispatcher └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | bin 3 | *.launch 4 | .settings 5 | .metadata 6 | .classpath 7 | .project 8 | 9 | # idea 10 | out 11 | *.ipr 12 | *.iws 13 | *.iml 14 | .idea 15 | 16 | # gradle 17 | build 18 | .gradle 19 | 20 | # other 21 | eclipse 22 | run 23 | runs -------------------------------------------------------------------------------- /common/src/main/java/net/darkhax/botanypots/BotanyPotsCommon.java: -------------------------------------------------------------------------------- 1 | package net.darkhax.botanypots; 2 | 3 | import net.darkhax.bookshelf.api.Services; 4 | 5 | public class BotanyPotsCommon { 6 | 7 | public static Content content; 8 | 9 | public BotanyPotsCommon() { 10 | 11 | content = new Content(); 12 | Services.REGISTRIES.loadContent(content); 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/main/java/net/darkhax/botanypots/addons/rei/ui/CropDisplay.java: -------------------------------------------------------------------------------- 1 | package net.darkhax.botanypots.addons.rei.ui; 2 | 3 | import me.shedaniel.math.Rectangle; 4 | import me.shedaniel.rei.api.client.gui.widgets.Widget; 5 | import me.shedaniel.rei.api.common.display.Display; 6 | 7 | import java.util.List; 8 | 9 | public interface CropDisplay extends Display { 10 | 11 | List setupDisplay(Rectangle bounds); 12 | } 13 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/black_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/black_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/blue_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/brown_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/brown_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/cyan_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/cyan_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/gray_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/green_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/green_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_blue_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/light_gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/light_gray_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/lime_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/lime_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/magenta_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/magenta_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/orange_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/orange_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/pink_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/pink_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/purple_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/purple_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/red_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/red_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/white_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/white_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_concrete_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_concrete_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_glazed_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_glazed_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_terracotta_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/blockstates/yellow_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "botanypots:block/yellow_terracotta_hopper_botany_pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/load_screens/pga.json: -------------------------------------------------------------------------------- 1 | { 2 | "screens": [ 3 | { 4 | "class": "net.darkhax.botanypots.block.inv.BotanyPotScreen", 5 | "texture": "botanypots:textures/gui/container/hopper_botany_pot_gui.png" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_concrete", 5 | "particle": "minecraft:block/black_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_concrete", 5 | "particle": "minecraft:block/black_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_glazed_terracotta", 5 | "particle": "minecraft:block/black_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_glazed_terracotta", 5 | "particle": "minecraft:block/black_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_terracotta", 5 | "particle": "minecraft:block/black_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/black_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/black_terracotta", 5 | "particle": "minecraft:block/black_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_concrete", 5 | "particle": "minecraft:block/blue_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_concrete", 5 | "particle": "minecraft:block/blue_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_glazed_terracotta", 5 | "particle": "minecraft:block/blue_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_glazed_terracotta", 5 | "particle": "minecraft:block/blue_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_terracotta", 5 | "particle": "minecraft:block/blue_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/blue_terracotta", 5 | "particle": "minecraft:block/blue_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_concrete", 5 | "particle": "minecraft:block/brown_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_concrete", 5 | "particle": "minecraft:block/brown_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_glazed_terracotta", 5 | "particle": "minecraft:block/brown_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_glazed_terracotta", 5 | "particle": "minecraft:block/brown_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_terracotta", 5 | "particle": "minecraft:block/brown_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/brown_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/brown_terracotta", 5 | "particle": "minecraft:block/brown_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_concrete", 5 | "particle": "minecraft:block/cyan_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_concrete", 5 | "particle": "minecraft:block/cyan_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_glazed_terracotta", 5 | "particle": "minecraft:block/cyan_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_glazed_terracotta", 5 | "particle": "minecraft:block/cyan_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_terracotta", 5 | "particle": "minecraft:block/cyan_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/cyan_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/cyan_terracotta", 5 | "particle": "minecraft:block/cyan_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_concrete", 5 | "particle": "minecraft:block/gray_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_concrete", 5 | "particle": "minecraft:block/gray_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_glazed_terracotta", 5 | "particle": "minecraft:block/gray_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_glazed_terracotta", 5 | "particle": "minecraft:block/gray_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_terracotta", 5 | "particle": "minecraft:block/gray_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/gray_terracotta", 5 | "particle": "minecraft:block/gray_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_concrete", 5 | "particle": "minecraft:block/green_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_concrete", 5 | "particle": "minecraft:block/green_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_glazed_terracotta", 5 | "particle": "minecraft:block/green_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_glazed_terracotta", 5 | "particle": "minecraft:block/green_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_terracotta", 5 | "particle": "minecraft:block/green_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/green_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/green_terracotta", 5 | "particle": "minecraft:block/green_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_concrete", 5 | "particle": "minecraft:block/light_blue_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_concrete", 5 | "particle": "minecraft:block/light_blue_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_glazed_terracotta", 5 | "particle": "minecraft:block/light_blue_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_glazed_terracotta", 5 | "particle": "minecraft:block/light_blue_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_terracotta", 5 | "particle": "minecraft:block/light_blue_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_blue_terracotta", 5 | "particle": "minecraft:block/light_blue_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_concrete", 5 | "particle": "minecraft:block/light_gray_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_concrete", 5 | "particle": "minecraft:block/light_gray_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_glazed_terracotta", 5 | "particle": "minecraft:block/light_gray_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_glazed_terracotta", 5 | "particle": "minecraft:block/light_gray_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_terracotta", 5 | "particle": "minecraft:block/light_gray_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/light_gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/light_gray_terracotta", 5 | "particle": "minecraft:block/light_gray_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_concrete", 5 | "particle": "minecraft:block/lime_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_concrete", 5 | "particle": "minecraft:block/lime_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_glazed_terracotta", 5 | "particle": "minecraft:block/lime_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_glazed_terracotta", 5 | "particle": "minecraft:block/lime_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_terracotta", 5 | "particle": "minecraft:block/lime_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/lime_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/lime_terracotta", 5 | "particle": "minecraft:block/lime_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_concrete", 5 | "particle": "minecraft:block/magenta_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_concrete", 5 | "particle": "minecraft:block/magenta_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_glazed_terracotta", 5 | "particle": "minecraft:block/magenta_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_glazed_terracotta", 5 | "particle": "minecraft:block/magenta_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_terracotta", 5 | "particle": "minecraft:block/magenta_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/magenta_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/magenta_terracotta", 5 | "particle": "minecraft:block/magenta_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_concrete", 5 | "particle": "minecraft:block/orange_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_concrete", 5 | "particle": "minecraft:block/orange_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_glazed_terracotta", 5 | "particle": "minecraft:block/orange_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_glazed_terracotta", 5 | "particle": "minecraft:block/orange_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_terracotta", 5 | "particle": "minecraft:block/orange_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/orange_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/orange_terracotta", 5 | "particle": "minecraft:block/orange_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_concrete", 5 | "particle": "minecraft:block/pink_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_concrete", 5 | "particle": "minecraft:block/pink_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_glazed_terracotta", 5 | "particle": "minecraft:block/pink_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_glazed_terracotta", 5 | "particle": "minecraft:block/pink_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_terracotta", 5 | "particle": "minecraft:block/pink_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/pink_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/pink_terracotta", 5 | "particle": "minecraft:block/pink_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_concrete", 5 | "particle": "minecraft:block/purple_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_concrete", 5 | "particle": "minecraft:block/purple_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_glazed_terracotta", 5 | "particle": "minecraft:block/purple_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_glazed_terracotta", 5 | "particle": "minecraft:block/purple_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_terracotta", 5 | "particle": "minecraft:block/purple_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/purple_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/purple_terracotta", 5 | "particle": "minecraft:block/purple_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_concrete", 5 | "particle": "minecraft:block/red_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_concrete", 5 | "particle": "minecraft:block/red_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_glazed_terracotta", 5 | "particle": "minecraft:block/red_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_glazed_terracotta", 5 | "particle": "minecraft:block/red_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_terracotta", 5 | "particle": "minecraft:block/red_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/red_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/red_terracotta", 5 | "particle": "minecraft:block/red_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/terracotta", 5 | "particle": "minecraft:block/terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/terracotta", 5 | "particle": "minecraft:block/terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_concrete", 5 | "particle": "minecraft:block/white_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_concrete", 5 | "particle": "minecraft:block/white_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_glazed_terracotta", 5 | "particle": "minecraft:block/white_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_glazed_terracotta", 5 | "particle": "minecraft:block/white_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_terracotta", 5 | "particle": "minecraft:block/white_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/white_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/white_terracotta", 5 | "particle": "minecraft:block/white_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_concrete", 5 | "particle": "minecraft:block/yellow_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_concrete", 5 | "particle": "minecraft:block/yellow_concrete" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_glazed_terracotta", 5 | "particle": "minecraft:block/yellow_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_glazed_terracotta", 5 | "particle": "minecraft:block/yellow_glazed_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_terracotta", 5 | "particle": "minecraft:block/yellow_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/block/yellow_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/hopper_botany_pot_base", 3 | "textures": { 4 | "terracotta": "minecraft:block/yellow_terracotta", 5 | "particle": "minecraft:block/yellow_terracotta" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/black_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/black_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/blue_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/brown_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/brown_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/cyan_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/cyan_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/gray_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/green_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/green_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_blue_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/light_gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/light_gray_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/lime_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/lime_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/magenta_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/magenta_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/orange_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/orange_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/pink_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/pink_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/purple_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/purple_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/red_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/red_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/white_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/white_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_concrete_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_concrete_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_glazed_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_glazed_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_terracotta_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/models/item/yellow_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "botanypots:block/yellow_terracotta_hopper_botany_pot" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/textures/block/hopper_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkhax-Minecraft/BotanyPots/85902a64caeec4f71bbe762442d6947bcda38023/common/src/main/resources/assets/botanypots/textures/block/hopper_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/textures/gui/container/botany_pot_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkhax-Minecraft/BotanyPots/85902a64caeec4f71bbe762442d6947bcda38023/common/src/main/resources/assets/botanypots/textures/gui/container/botany_pot_gui.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/botanypots/textures/gui/container/hopper_botany_pot_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkhax-Minecraft/BotanyPots/85902a64caeec4f71bbe762442d6947bcda38023/common/src/main/resources/assets/botanypots/textures/gui/container/hopper_botany_pot_gui.png -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/biomesoplenty/soil/flesh.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "biomesoplenty:flesh" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "biomesoplenty:flesh" 11 | }, 12 | "display": { 13 | "block": "biomesoplenty:flesh" 14 | }, 15 | "categories": [ 16 | "flesh" 17 | ], 18 | "growthModifier": 1.00 19 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/biomesoplenty/soil/mud.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "biomesoplenty:mud" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "biomesoplenty:mud" 11 | }, 12 | "display": { 13 | "block": "biomesoplenty:mud" 14 | }, 15 | "categories": [ 16 | "dirt", 17 | "mud" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/black_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:black_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:black_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/black_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:black_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:black_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/black_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:black_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:black_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/black_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:black_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:black_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/black_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:black_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:black_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:blue_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:blue_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:blue_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:blue_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:blue_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:blue_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:blue_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:blue_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:blue_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:blue_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:blue_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:blue_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/brown_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:brown_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:brown_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/brown_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:brown_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:brown_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/brown_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:brown_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:brown_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/brown_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:brown_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:brown_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/brown_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:brown_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:brown_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:cyan_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:cyan_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:cyan_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:cyan_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:cyan_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:cyan_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:cyan_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:cyan_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:cyan_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:cyan_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/cyan_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:cyan_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:cyan_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:gray_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:gray_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:gray_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:gray_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:gray_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:gray_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:gray_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:gray_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:gray_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:gray_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:gray_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:gray_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/green_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:green_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:green_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/green_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:green_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:green_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/green_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:green_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:green_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/green_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:green_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:green_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/green_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:green_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:green_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_blue_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:light_blue_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:light_blue_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_blue_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_blue_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_blue_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_blue_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_blue_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_blue_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_blue_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:light_blue_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:light_blue_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_blue_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_blue_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_blue_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_gray_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:light_gray_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:light_gray_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_gray_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_gray_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_gray_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_gray_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_gray_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_gray_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_gray_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:light_gray_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:light_gray_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/light_gray_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:light_gray_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:light_gray_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:lime_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:lime_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:lime_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:lime_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:lime_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:lime_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:lime_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:lime_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:lime_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:lime_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/lime_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:lime_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:lime_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/magenta_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:magenta_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:magenta_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/magenta_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:magenta_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:magenta_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/magenta_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:magenta_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:magenta_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/magenta_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:magenta_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:magenta_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/magenta_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:magenta_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:magenta_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/orange_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:orange_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:orange_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/orange_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:orange_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:orange_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/orange_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:orange_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:orange_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/orange_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:orange_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:orange_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/orange_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:orange_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:orange_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:pink_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:pink_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:pink_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:pink_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:pink_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:pink_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:pink_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:pink_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:pink_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:pink_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/pink_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:pink_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:pink_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/purple_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:purple_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:purple_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/purple_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:purple_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:purple_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/purple_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:purple_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:purple_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/purple_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:purple_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:purple_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/purple_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:purple_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:purple_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:red_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:red_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:red_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:red_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_glazed_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:red_glazed_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:red_glazed_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:red_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:red_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:red_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:red_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/red_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:red_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:red_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/white_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:white_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:white_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/white_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:white_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:white_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/white_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:white_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:white_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/white_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:white_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:white_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/white_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:white_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:white_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/yellow_concrete_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:yellow_concrete" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:yellow_concrete_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/yellow_concrete_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:yellow_concrete_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:yellow_concrete_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/yellow_glazed_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:yellow_glazed_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:yellow_glazed_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/yellow_terracotta_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "crafting_shaped", 3 | "pattern": [ 4 | "S S", 5 | "SPS", 6 | " S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:yellow_terracotta" 11 | }, 12 | "P": { 13 | "item": "minecraft:flower_pot" 14 | } 15 | }, 16 | "result": { 17 | "item": "botanypots:yellow_terracotta_botany_pot", 18 | "count": 1 19 | } 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/botanypots/crafting/yellow_terracotta_hopper_botany_pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "ingredients": [ 4 | { 5 | "item": "botanypots:yellow_terracotta_botany_pot" 6 | }, 7 | { 8 | "item": "minecraft:hopper" 9 | } 10 | ], 11 | "result": { 12 | "item": "botanypots:yellow_terracotta_hopper_botany_pot", 13 | "count": 1 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/black_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:black_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:black_sand" 11 | }, 12 | "display": { 13 | "block": "byg:black_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "black_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/blue_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:blue_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:blue_sand" 11 | }, 12 | "display": { 13 | "block": "byg:blue_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "blue_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/brimstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:brimstone" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:brimstone" 11 | }, 12 | "display": { 13 | "block": "byg:brimstone" 14 | }, 15 | "categories": [ 16 | "stone", 17 | "mushroom", 18 | "brimstone" 19 | ], 20 | "growthModifier": 1.00 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/dacite.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:dacite" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:dacite" 11 | }, 12 | "display": { 13 | "block": "byg:dacite" 14 | }, 15 | "categories": [ 16 | "stone", 17 | "mushroom", 18 | "dacite" 19 | ], 20 | "growthModifier": 1.00 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/end_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:end_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:end_sand" 11 | }, 12 | "display": { 13 | "block": "byg:end_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "end_sand", 18 | "end" 19 | ], 20 | "growthModifier": 1.00 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/lush_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:lush_dirt" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:lush_dirt" 11 | }, 12 | "display": { 13 | "block": "byg:lush_dirt" 14 | }, 15 | "categories": [ 16 | "dirt", 17 | "lush_dirt" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/mud_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:mud_block" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:mud_block" 11 | }, 12 | "display": { 13 | "block": "byg:mud_block" 14 | }, 15 | "categories": [ 16 | "dirt", 17 | "mud" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/peat.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:peat" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:peat" 11 | }, 12 | "display": { 13 | "block": "byg:peat" 14 | }, 15 | "categories": [ 16 | "dirt", 17 | "peat" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/pink_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:pink_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:pink_sand" 11 | }, 12 | "display": { 13 | "block": "byg:pink_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "pink_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/purple_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:purple_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:purple_sand" 11 | }, 12 | "display": { 13 | "block": "byg:purple_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "purple_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/quartzite_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:quartzite_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:quartzite_sand" 11 | }, 12 | "display": { 13 | "block": "byg:quartzite_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "quartzite_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/red_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:red_rock" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:red_rock" 11 | }, 12 | "display": { 13 | "block": "byg:red_rock" 14 | }, 15 | "categories": [ 16 | "stone", 17 | "mushroom", 18 | "red_rock" 19 | ], 20 | "growthModifier": 1.00 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/soapstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:soapstone" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:soapstone" 11 | }, 12 | "display": { 13 | "block": "byg:soapstone" 14 | }, 15 | "categories": [ 16 | "stone", 17 | "mushroom", 18 | "soapstone" 19 | ], 20 | "growthModifier": 1.00 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/white_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:white_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:white_sand" 11 | }, 12 | "display": { 13 | "block": "byg:white_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "white_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/byg/soil/windswept_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "byg:windswept_sand" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "byg:windswept_sand" 11 | }, 12 | "display": { 13 | "block": "byg:windswept_sand" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "windswept_sand" 18 | ], 19 | "growthModifier": 1.00 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/allium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:allium" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:allium" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:allium" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/azure_bluet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:azure_bluet" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:azure_bluet" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:azure_bluet" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/blue_orchid.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:blue_orchid" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:blue_orchid" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:blue_orchid" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/cactus.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:cactus" 5 | }, 6 | "categories": [ 7 | "sand" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:cactus" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:cactus" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/cornflower.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:cornflower" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:cornflower" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:cornflower" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/crimson_roots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:crimson_roots" 5 | }, 6 | "categories": [ 7 | "crimson_nylium" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:crimson_roots" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:crimson_roots" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/dandelion.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:dandelion" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:dandelion" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:dandelion" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/fern.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:fern" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:fern" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:fern" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:short_grass" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:short_grass" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:short_grass" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/lily_pad.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:lily_pad" 5 | }, 6 | "categories": [ 7 | "water" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:lily_pad" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:lily_pad" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/moss.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:moss_block" 5 | }, 6 | "categories": [ 7 | "dirt", 8 | "stone" 9 | ], 10 | "growthTicks": 1200, 11 | "display": { 12 | "block": "minecraft:moss_block" 13 | }, 14 | "drops": [ 15 | { 16 | "chance": 1.00, 17 | "output": { 18 | "item": "minecraft:moss_block" 19 | } 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/orange_tulip.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:orange_tulip" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:orange_tulip" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:orange_tulip" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/oxeye_daisy.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:oxeye_daisy" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:oxeye_daisy" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:oxeye_daisy" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/pink_tulip.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:pink_tulip" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:pink_tulip" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:pink_tulip" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/poppy.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:poppy" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:poppy" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:poppy" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/red_tulip.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:red_tulip" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:red_tulip" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:red_tulip" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/seagrass.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:seagrass" 5 | }, 6 | "categories": [ 7 | "water" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:seagrass" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:seagrass" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:vine" 5 | }, 6 | "categories": [ 7 | "dirt", 8 | "stone" 9 | ], 10 | "growthTicks": 1200, 11 | "display": { 12 | "block": "minecraft:vine" 13 | }, 14 | "drops": [ 15 | { 16 | "chance": 1.00, 17 | "output": { 18 | "item": "minecraft:vine" 19 | } 20 | } 21 | ] 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/warped_roots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:warped_roots" 5 | }, 6 | "categories": [ 7 | "warped_nylium" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:warped_roots" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:warped_roots" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/white_tulip.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:white_tulip" 5 | }, 6 | "categories": [ 7 | "dirt" 8 | ], 9 | "growthTicks": 1200, 10 | "display": { 11 | "block": "minecraft:white_tulip" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1.00, 16 | "output": { 17 | "item": "minecraft:white_tulip" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/crop/wither_rose.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:crop", 3 | "seed": { 4 | "item": "minecraft:wither_rose" 5 | }, 6 | "categories": [ 7 | "soul_sand" 8 | ], 9 | "growthTicks": 2400, 10 | "display": { 11 | "block": "minecraft:wither_rose" 12 | }, 13 | "drops": [ 14 | { 15 | "chance": 1, 16 | "output": { 17 | "item": "minecraft:wither_rose" 18 | } 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/fertilizer/bonemeal.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:fertilizer", 3 | "ingredient": { 4 | "item": "minecraft:bone_meal" 5 | }, 6 | "min_growth": 400, 7 | "max_growth": 550 8 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/pot_interaction/lava_to_obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:pot_interaction", 3 | "held_ingredient": { 4 | "item": "minecraft:water_bucket" 5 | }, 6 | "soil_ingredient": { 7 | "item": "minecraft:lava_bucket" 8 | }, 9 | "soil_output": { 10 | "item": "minecraft:obsidian", 11 | "count": 1 12 | }, 13 | "sound": { 14 | "sound": "minecraft:block.fire.extinguish", 15 | "category": "blocks" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/pot_interaction/till_coarse_dirt_to_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:pot_interaction", 3 | "held_ingredient": { 4 | "tag": "minecraft:hoes" 5 | }, 6 | "soil_ingredient": { 7 | "item": "minecraft:coarse_dirt" 8 | }, 9 | "soil_output": { 10 | "item": "minecraft:dirt", 11 | "count": 1 12 | }, 13 | "sound": { 14 | "sound": "minecraft:item.hoe.till", 15 | "category": "blocks" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/pot_interaction/water_to_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:pot_interaction", 3 | "held_ingredient": { 4 | "item": "minecraft:lava_bucket" 5 | }, 6 | "soil_ingredient": { 7 | "item": "minecraft:water_bucket" 8 | }, 9 | "soil_output": { 10 | "item": "minecraft:stone", 11 | "count": 1 12 | }, 13 | "sound": { 14 | "sound": "minecraft:block.fire.extinguish", 15 | "category": "blocks" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/acacia_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": [ 4 | { 5 | "item": "minecraft:acacia_log" 6 | }, 7 | { 8 | "item": "minecraft:acacia_wood" 9 | } 10 | ], 11 | "display": { 12 | "block": "minecraft:acacia_wood" 13 | }, 14 | "categories": [ 15 | "wood", 16 | "log", 17 | "mushroom", 18 | "acacia", 19 | "acacia_wood" 20 | ], 21 | "growthModifier": 1 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/andesite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:andesite" 5 | }, 6 | "display": { 7 | "block": "minecraft:andesite" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom", 12 | "andesite" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/birch_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": [ 4 | { 5 | "item": "minecraft:birch_log" 6 | }, 7 | { 8 | "item": "minecraft:birch_wood" 9 | } 10 | ], 11 | "display": { 12 | "block": "minecraft:birch_wood" 13 | }, 14 | "categories": [ 15 | "wood", 16 | "log", 17 | "mushroom", 18 | "birch", 19 | "birch_wood" 20 | ], 21 | "growthModifier": 1 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/bone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:bone_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:bone_block" 8 | }, 9 | "categories": [ 10 | "bone" 11 | ], 12 | "growthModifier": 1 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/brown_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:brown_mushroom_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:brown_mushroom_block" 8 | }, 9 | "categories": [ 10 | "mushroom" 11 | ], 12 | "growthModifier": 0.95 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/clay.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:clay" 5 | }, 6 | "display": { 7 | "block": "minecraft:clay" 8 | }, 9 | "categories": [ 10 | "clay" 11 | ], 12 | "growthModifier": 1 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:coal_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:coal_ore" 8 | }, 9 | "categories": [ 10 | "coal_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/coarse_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:coarse_dirt" 5 | }, 6 | "display": { 7 | "block": "minecraft:coarse_dirt" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "coarse_dirt" 12 | ], 13 | "growthModifier": 0.95 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:cobblestone" 5 | }, 6 | "display": { 7 | "block": "minecraft:cobblestone" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "cobblestone", 12 | "mushroom" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:copper_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:copper_ore" 8 | }, 9 | "categories": [ 10 | "copper_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/crimson_nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:crimson_nylium" 5 | }, 6 | "display": { 7 | "block": "minecraft:crimson_nylium" 8 | }, 9 | "categories": [ 10 | "crimson", 11 | "nylium", 12 | "crimson_nylium", 13 | "mushroom", 14 | "netherrack", 15 | "nether" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate" 8 | }, 9 | "categories": [ 10 | "mushroom", 11 | "stone", 12 | "deepslate" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_coal_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_coal_ore" 8 | }, 9 | "categories": [ 10 | "coal_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_coal_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_copper_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_copper_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_copper_ore" 8 | }, 9 | "categories": [ 10 | "copper_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_copper_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_diamond_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_diamond_ore" 8 | }, 9 | "categories": [ 10 | "diamond_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_diamond_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_emerald_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_emerald_ore" 8 | }, 9 | "categories": [ 10 | "emerald_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_emerald_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_gold_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_gold_ore" 8 | }, 9 | "categories": [ 10 | "gold_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_gold_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_iron_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_iron_ore" 8 | }, 9 | "categories": [ 10 | "iron_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_iron_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_lapis_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_lapis_ore" 8 | }, 9 | "categories": [ 10 | "lapis_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_lapis_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/deepslate_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:deepslate_redstone_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:deepslate_redstone_ore" 8 | }, 9 | "categories": [ 10 | "redstone_ore", 11 | "mushroom", 12 | "stone", 13 | "deepslate", 14 | "deepslate_redstone_ore", 15 | "ore" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:diamond_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:diamond_ore" 8 | }, 9 | "categories": [ 10 | "diamond_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/diorite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:diorite" 5 | }, 6 | "display": { 7 | "block": "minecraft:diorite" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom", 12 | "diorite" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:dirt" 5 | }, 6 | "display": { 7 | "block": "minecraft:dirt" 8 | }, 9 | "categories": [ 10 | "dirt" 11 | ], 12 | "growthModifier": 1 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/dirt_path.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:dirt_path" 5 | }, 6 | "display": { 7 | "block": "minecraft:dirt_path" 8 | }, 9 | "categories": [ 10 | "dirt" 11 | ], 12 | "growthModifier": 0.5 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/dried_kelp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:dried_kelp_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:dried_kelp_block" 8 | }, 9 | "categories": [ 10 | "mulch" 11 | ], 12 | "growthModifier": 1 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/dripstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:dripstone_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:dripstone_block" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom", 12 | "dripstone" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:emerald_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:emerald_ore" 8 | }, 9 | "categories": [ 10 | "emerald_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/end_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:end_stone" 5 | }, 6 | "display": { 7 | "block": "minecraft:end_stone" 8 | }, 9 | "categories": [ 10 | "end", 11 | "end_stone" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:farmland" 5 | }, 6 | "display": { 7 | "block": "minecraft:farmland" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "farmland" 12 | ], 13 | "growthModifier": 1.05 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:gold_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:gold_ore" 8 | }, 9 | "categories": [ 10 | "gold_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/granite.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:granite" 5 | }, 6 | "display": { 7 | "block": "minecraft:granite" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom", 12 | "granite" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:grass_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:grass_block" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "grass" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/gravel.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:gravel" 5 | }, 6 | "display": { 7 | "block": "minecraft:gravel" 8 | }, 9 | "categories": [ 10 | "gravel", 11 | "loose_soil" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/hay_bale.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:hay_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:hay_block" 8 | }, 9 | "categories": [ 10 | "mulch" 11 | ], 12 | "growthModifier": 1.05 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:iron_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:iron_ore" 8 | }, 9 | "categories": [ 10 | "iron_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/jungle_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": [ 4 | { 5 | "item": "minecraft:jungle_log" 6 | }, 7 | { 8 | "item": "minecraft:jungle_wood" 9 | } 10 | ], 11 | "display": { 12 | "block": "minecraft:jungle_wood" 13 | }, 14 | "categories": [ 15 | "wood", 16 | "log", 17 | "mushroom", 18 | "jungle", 19 | "jungle_wood" 20 | ], 21 | "growthModifier": 1 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:lapis_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:lapis_ore" 8 | }, 9 | "categories": [ 10 | "lapis_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/lava.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:lava_bucket" 5 | }, 6 | "display": { 7 | "block": "minecraft:lava", 8 | "renderFluid": true 9 | }, 10 | "categories": [ 11 | "lava" 12 | ], 13 | "growthModifier": 1, 14 | "lightLevel": 15 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/magma_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:magma_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:magma_block" 8 | }, 9 | "categories": [ 10 | "lava", 11 | "magma_block" 12 | ], 13 | "growthModifier": 0.95, 14 | "lightLevel": 3 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/moss.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:moss_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:moss_block" 8 | }, 9 | "categories": [ 10 | "moss" 11 | ], 12 | "growthModifier": 0.95 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/mossy_cobblestone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:mossy_cobblestone" 5 | }, 6 | "display": { 7 | "block": "minecraft:mossy_cobblestone" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom", 12 | "moss", 13 | "mossy_cobblestone" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/mushroom_stem.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:mushroom_stem" 5 | }, 6 | "display": { 7 | "block": "minecraft:mushroom_stem" 8 | }, 9 | "categories": [ 10 | "mushroom" 11 | ], 12 | "growthModifier": 0.95 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/mycelium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:mycelium" 5 | }, 6 | "display": { 7 | "block": "minecraft:mycelium" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "mycelium", 12 | "mushroom" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:nether_gold_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:nether_gold_ore" 8 | }, 9 | "categories": [ 10 | "gold_ore", 11 | "netherrack", 12 | "mushroom", 13 | "stone", 14 | "ore" 15 | ], 16 | "growthModifier": 1 17 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/nether_quartz_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:nether_quartz_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:nether_quartz_ore" 8 | }, 9 | "categories": [ 10 | "nether_quartz_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:netherrack" 5 | }, 6 | "display": { 7 | "block": "minecraft:netherrack" 8 | }, 9 | "categories": [ 10 | "nether", 11 | "netherrack", 12 | "mushroom" 13 | ], 14 | "growthModifier": 1 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/oak_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": [ 4 | { 5 | "item": "minecraft:oak_log" 6 | }, 7 | { 8 | "item": "minecraft:oak_wood" 9 | } 10 | ], 11 | "display": { 12 | "block": "minecraft:oak_wood" 13 | }, 14 | "categories": [ 15 | "wood", 16 | "log", 17 | "mushroom", 18 | "oak", 19 | "oak_wood" 20 | ], 21 | "growthModifier": 1 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/obsidian.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:obsidian" 5 | }, 6 | "display": { 7 | "block": "minecraft:obsidian" 8 | }, 9 | "categories": [ 10 | "obsidian", 11 | "glass" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/podzol.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:podzol" 5 | }, 6 | "display": { 7 | "block": "minecraft:podzol" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "podzol", 12 | "mulch", 13 | "mushroom" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/red_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:red_mushroom_block" 5 | }, 6 | "display": { 7 | "block": "minecraft:red_mushroom_block" 8 | }, 9 | "categories": [ 10 | "mushroom" 11 | ], 12 | "growthModifier": 0.95 13 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/red_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:red_sand" 5 | }, 6 | "display": { 7 | "block": "minecraft:red_sand" 8 | }, 9 | "categories": [ 10 | "sand", 11 | "red_sand" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:redstone_ore" 5 | }, 6 | "display": { 7 | "block": "minecraft:redstone_ore" 8 | }, 9 | "categories": [ 10 | "redstone_ore", 11 | "mushroom", 12 | "stone", 13 | "ore" 14 | ], 15 | "growthModifier": 1 16 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/rooted_dirt.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:rooted_dirt" 5 | }, 6 | "display": { 7 | "block": "minecraft:rooted_dirt" 8 | }, 9 | "categories": [ 10 | "dirt", 11 | "rooted_dirt" 12 | ], 13 | "growthModifier": 0.95 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:sand" 5 | }, 6 | "display": { 7 | "block": "minecraft:sand" 8 | }, 9 | "categories": [ 10 | "sand", 11 | "yellow_sand" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/soul_sand.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:soul_sand" 5 | }, 6 | "display": { 7 | "block": "minecraft:soul_sand" 8 | }, 9 | "categories": [ 10 | "soul_sand", 11 | "nether" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/soul_soil.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:soul_soil" 5 | }, 6 | "display": { 7 | "block": "minecraft:soul_soil" 8 | }, 9 | "categories": [ 10 | "nether", 11 | "soul_sand", 12 | "soul_soil" 13 | ], 14 | "growthModifier": 1.10 15 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/spruce_wood.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": [ 4 | { 5 | "item": "minecraft:spruce_log" 6 | }, 7 | { 8 | "item": "minecraft:spruce_wood" 9 | } 10 | ], 11 | "display": { 12 | "block": "minecraft:spruce_wood" 13 | }, 14 | "categories": [ 15 | "wood", 16 | "log", 17 | "mushroom", 18 | "spruce", 19 | "spruce_wood" 20 | ], 21 | "growthModifier": 1 22 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:stone" 5 | }, 6 | "display": { 7 | "block": "minecraft:stone" 8 | }, 9 | "categories": [ 10 | "stone", 11 | "mushroom" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/warped_nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:warped_nylium" 5 | }, 6 | "display": { 7 | "block": "minecraft:warped_nylium" 8 | }, 9 | "categories": [ 10 | "warped", 11 | "nylium", 12 | "warped_nylium", 13 | "mushroom", 14 | "netherrack", 15 | "nether" 16 | ], 17 | "growthModifier": 1 18 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/minecraft/soil/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "botanypots:soil", 3 | "input": { 4 | "item": "minecraft:water_bucket" 5 | }, 6 | "display": { 7 | "block": "minecraft:water", 8 | "renderFluid": true 9 | }, 10 | "categories": [ 11 | "water" 12 | ], 13 | "growthModifier": 1 14 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/snad/soil/red_snad.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "snad:red_snad" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "snad:red_snad" 11 | }, 12 | "display": { 13 | "block": "snad:red_snad" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "red_sand" 18 | ], 19 | "growthModifier": 1.5 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/snad/soil/snad.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "snad:snad" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "snad:snad" 11 | }, 12 | "display": { 13 | "block": "snad:snad" 14 | }, 15 | "categories": [ 16 | "sand", 17 | "yellow_sand" 18 | ], 19 | "growthModifier": 1.5 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/snad/soil/soul_snad.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "snad:soul_snad" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "snad:soul_snad" 11 | }, 12 | "display": { 13 | "block": "snad:soul_snad" 14 | }, 15 | "categories": [ 16 | "soul_sand", 17 | "nether" 18 | ], 19 | "growthModifier": 1.5 20 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/thermal/soil/phytosoil.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "thermal:phytosoil" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "thermal:phytosoil" 11 | }, 12 | "display": { 13 | "block": "thermal:phytosoil" 14 | }, 15 | "categories": [ 16 | "sand" 17 | ], 18 | "growthModifier": 1.15 19 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/botanypots/recipes/thermal/soil/phytosoil_tilled.json: -------------------------------------------------------------------------------- 1 | { 2 | "bookshelf:load_conditions": [ 3 | { 4 | "type": "bookshelf:item_exists", 5 | "values": "thermal:phytosoil_tilled" 6 | } 7 | ], 8 | "type": "botanypots:soil", 9 | "input": { 10 | "item": "thermal:phytosoil_tilled" 11 | }, 12 | "display": { 13 | "block": "thermal:phytosoil_tilled" 14 | }, 15 | "categories": [ 16 | "sand" 17 | ], 18 | "growthModifier": 1.20 19 | } -------------------------------------------------------------------------------- /common/src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkhax-Minecraft/BotanyPots/85902a64caeec4f71bbe762442d6947bcda38023/common/src/main/resources/logo.png -------------------------------------------------------------------------------- /common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "${mod_description}", 4 | "pack_format": 8 5 | } 6 | } -------------------------------------------------------------------------------- /fabric/src/main/java/net/darkhax/botanypots/BotanyPotsFabric.java: -------------------------------------------------------------------------------- 1 | package net.darkhax.botanypots; 2 | 3 | import net.fabricmc.api.ModInitializer; 4 | 5 | public class BotanyPotsFabric implements ModInitializer { 6 | 7 | @Override 8 | public void onInitialize() { 9 | 10 | new BotanyPotsCommon(); 11 | } 12 | } -------------------------------------------------------------------------------- /fabric/src/main/resources/META-INF/services/net.darkhax.botanypots.events.BotanyPotEventDispatcher: -------------------------------------------------------------------------------- 1 | net.darkhax.botanypots.events.BotanyPotEventDispatcherFabric -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/services/net.darkhax.botanypots.events.BotanyPotEventDispatcher: -------------------------------------------------------------------------------- 1 | net.darkhax.botanypots.events.BotanyPotEventDispatcherForge -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkhax-Minecraft/BotanyPots/85902a64caeec4f71bbe762442d6947bcda38023/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /neoforge/src/main/java/net/darkhax/botanypots/BotanyPotsNeoForge.java: -------------------------------------------------------------------------------- 1 | package net.darkhax.botanypots; 2 | 3 | import net.neoforged.fml.common.Mod; 4 | 5 | @Mod(Constants.MOD_ID) 6 | public class BotanyPotsNeoForge { 7 | 8 | public BotanyPotsNeoForge() { 9 | 10 | new BotanyPotsCommon(); 11 | } 12 | } -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/services/net.darkhax.botanypots.events.BotanyPotEventDispatcher: -------------------------------------------------------------------------------- 1 | net.darkhax.botanypots.events.BotanyPotEventDispatcherNeoForge --------------------------------------------------------------------------------