├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── issue.md ├── .gitignore ├── CHANGELOG.md ├── EclipseCodeStyle.xml ├── LICENSE ├── LOGO.png ├── README.md ├── build.gradle ├── gradle.properties ├── libs ├── Baubles-1.12-1.5.2.jar ├── Carry+On+MC1.12.2+v1.10.jar ├── Kiwi-1.12.2-0.5.1-deobf.jar ├── Nutrition-1.12.2-3.5.0.jar └── ToughAsNails-1.12.2-3.1.0.129-api.jar └── src └── main ├── java └── snownee │ └── cuisine │ ├── Cuisine.java │ ├── CuisineConfig.java │ ├── CuisineItemGroup.java │ ├── CuisineRegistry.java │ ├── CuisineSidedProxy.java │ ├── api │ ├── CompositeFood.java │ ├── CookingStrategy.java │ ├── CookingStrategyProvider.java │ ├── CookingVessel.java │ ├── CuisineAPI.java │ ├── CulinaryCapabilities.java │ ├── CulinaryHub.java │ ├── CulinarySkill.java │ ├── CulinarySkillManager.java │ ├── CulinarySkillPoint.java │ ├── CulinarySkillPointContainer.java │ ├── Effect.java │ ├── EffectCollector.java │ ├── EffectType.java │ ├── FoodContainer.java │ ├── Form.java │ ├── FuelHandler.java │ ├── HeatHandler.java │ ├── Ingredient.java │ ├── IngredientTrait.java │ ├── Material.java │ ├── MaterialCategory.java │ ├── NoOperationCookingStrategy.java │ ├── Recipe.java │ ├── Seasoning.java │ ├── Spice.java │ ├── Taste.java │ ├── events │ │ ├── ConsumeCompositeFoodEvent.java │ │ ├── SkillPointUpdateEvent.java │ │ └── SpiceBottleContentConsumedEvent.java │ ├── package-info.java │ ├── prefab │ │ ├── DefaultConsumedCollector.java │ │ ├── DefaultCookedCollector.java │ │ ├── DefaultTypes.java │ │ ├── MaterialBuilder.java │ │ ├── SimpleCulinarySkillImpl.java │ │ ├── SimpleCulinarySkillPointContainerImpl.java │ │ ├── SimpleEffectImpl.java │ │ ├── SimpleFoodContainerImpl.java │ │ ├── SimpleMaterialImpl.java │ │ ├── SimpleSpiceImpl.java │ │ └── package-info.java │ ├── process │ │ ├── AbstractCuisineProcessingRecipe.java │ │ ├── BasinInteracting.java │ │ ├── Boiling.java │ │ ├── Chopping.java │ │ ├── CuisineProcessingRecipe.java │ │ ├── CuisineProcessingRecipeManager.java │ │ ├── CuisineSortableProcessingRecipeManager.java │ │ ├── Grinding.java │ │ ├── Hybridization.java │ │ ├── Milling.java │ │ ├── Processing.java │ │ ├── Vessel.java │ │ ├── package-info.java │ │ └── prefab │ │ │ ├── DistillationBoiling.java │ │ │ ├── MaterialSqueezing.java │ │ │ ├── ProcessingManagerImpl.java │ │ │ ├── SimpleSqueezing.java │ │ │ ├── SimpleThrowing.java │ │ │ ├── SortableProcessingManagerImpl.java │ │ │ └── package-info.java │ └── util │ │ └── SkillUtil.java │ ├── blocks │ ├── BlockBamboo.java │ ├── BlockBambooPlant.java │ ├── BlockBasin.java │ ├── BlockBasinColored.java │ ├── BlockChoppingBoard.java │ ├── BlockCorn.java │ ├── BlockCuisineCrops.java │ ├── BlockDoubleCrops.java │ ├── BlockDrinkro.java │ ├── BlockFirePit.java │ ├── BlockJar.java │ ├── BlockMill.java │ ├── BlockModDoor.java │ ├── BlockModLeaves.java │ ├── BlockModLog.java │ ├── BlockModSapling.java │ ├── BlockModSlab.java │ ├── BlockModTrapdoor.java │ ├── BlockMortar.java │ ├── BlockPlacedDish.java │ ├── BlockShearedLeaves.java │ ├── BlockSqueezer.java │ ├── BlockTofu.java │ └── package-info.java │ ├── client │ ├── ClientSkillHelper.java │ ├── CuisineBlockRendering.java │ ├── CuisineClientProxy.java │ ├── CuisineEntityRendering.java │ ├── CuisineItemRendering.java │ ├── CulinaryRenderHelper.java │ ├── gui │ │ ├── CuisineGUI.java │ │ ├── GuiManual.java │ │ ├── GuiNameFood.java │ │ └── SkillToast.java │ ├── model │ │ ├── ChoppingBoardColorProxy.java │ │ ├── ChoppingBoardModel.java │ │ ├── ChoppingBoardOverride.java │ │ ├── DishMeshDefinition.java │ │ ├── DrinkroMeshDefinition.java │ │ ├── IngredientMeshDefinition.java │ │ ├── TRSRBasedQuadTransformer.java │ │ └── package-info.java │ ├── particle │ │ ├── CuisineParticles.java │ │ ├── ParticleGrowth.java │ │ └── ParticleQuad.java │ └── renderer │ │ ├── HoloProfiles.java │ │ ├── RenderEntitySeed.java │ │ ├── RenderModBoat.java │ │ ├── TESRBarbecueRack.java │ │ ├── TESRBasin.java │ │ ├── TESRChoppingBoard.java │ │ ├── TESRDrinkroBase.java │ │ ├── TESRDrinkroTank.java │ │ ├── TESRFirePit.java │ │ ├── TESRFryingPan.java │ │ ├── TESRMortar.java │ │ └── TESRWok.java │ ├── command │ ├── CommandRegistry.java │ ├── CommandSkill.java │ └── package-info.java │ ├── crafting │ ├── DrinkBrewingRecipe.java │ ├── RecipeChoppingBoard.java │ ├── RecipeFoodEmpty.java │ ├── RecipeRegistry.java │ ├── RecipeSpiceBottleFilling.java │ ├── VanillaRecipeRegistry.java │ ├── WildcardIngredient.java │ └── package-info.java │ ├── debug │ └── DebuggingCookingStrategy.java │ ├── entities │ ├── EntityFallingFlower.java │ ├── EntityModBoat.java │ ├── EntityRegistry.java │ └── EntitySeed.java │ ├── events │ ├── BetterHarvest.java │ ├── DisableGenericFood.java │ ├── DropHandler.java │ ├── DrunkHandler.java │ ├── EntityBehaviorHandler.java │ ├── ForestBatHandler.java │ ├── OreDictHandler.java │ ├── PlayerHandler.java │ ├── SpawnHandler.java │ ├── SpiceBottleHandler.java │ ├── TooltipHandler.java │ └── VillagerHandler.java │ ├── fluids │ ├── BlockFluid.java │ ├── BlockFluidOil.java │ ├── BlockFluidSoyMilk.java │ ├── BlockFluidVinegar.java │ ├── CuisineFluidBlocks.java │ ├── CuisineFluids.java │ ├── FluidJuice.java │ ├── FluidOil.java │ └── VaporizableFluid.java │ ├── internal │ ├── CuisineInternalGateway.java │ ├── CuisinePersistenceCenter.java │ ├── CuisineSharedSecrets.java │ ├── IdentifierBasedRegistry.java │ ├── capabilities │ │ ├── CulinarySkillCapability.java │ │ ├── DishContainer.java │ │ ├── DrinkContainer.java │ │ ├── FoodContainerCapability.java │ │ ├── GlassBottleHandler.java │ │ └── package-info.java │ ├── effect │ │ ├── EffectCurePotions.java │ │ ├── EffectExperienced.java │ │ ├── EffectHarmony.java │ │ ├── EffectHeatResistance.java │ │ ├── EffectPotions.java │ │ ├── EffectRare.java │ │ ├── EffectSpooky.java │ │ ├── EffectSustainedRelease.java │ │ ├── EffectTeleport.java │ │ └── package-info.java │ ├── food │ │ ├── Dish.java │ │ ├── Drink.java │ │ ├── FoodValueCounter.java │ │ ├── IngredientFood.java │ │ └── package-info.java │ ├── material │ │ ├── MaterialApple.java │ │ ├── MaterialChili.java │ │ ├── MaterialChorusFruit.java │ │ ├── MaterialPufferfish.java │ │ ├── MaterialPumpkin.java │ │ ├── MaterialRice.java │ │ ├── MaterialTofu.java │ │ ├── MaterialTomato.java │ │ ├── MaterialWithEffect.java │ │ └── package-info.java │ ├── package-info.java │ └── spice │ │ └── SpiceChiliPowder.java │ ├── inventory │ └── ContainerNameFood.java │ ├── items │ ├── BehaviorArmDispense.java │ ├── BehaviorFanDispense.java │ ├── BehaviorWokInteraction.java │ ├── IRarityGetter.java │ ├── ItemAbstractComposite.java │ ├── ItemBasicFood.java │ ├── ItemBottle.java │ ├── ItemCrops.java │ ├── ItemDish.java │ ├── ItemDrink.java │ ├── ItemDrinkro.java │ ├── ItemEmptyPlate.java │ ├── ItemFan.java │ ├── ItemIngredient.java │ ├── ItemIronSpatula.java │ ├── ItemKitchenKnife.java │ ├── ItemManual.java │ ├── ItemModBoat.java │ ├── ItemModDoor.java │ ├── ItemMortar.java │ ├── ItemSpiceBottle.java │ └── package-info.java │ ├── library │ ├── CuisineFoodStats.java │ ├── DummyVanillaRecipe.java │ ├── FilterFluidHandler.java │ ├── FilterItemHandler.java │ ├── FluidHandlerIOWrapper.java │ ├── IntObjectBiPredicate.java │ ├── RarityManager.java │ ├── SingleSlotItemHandler.java │ ├── UnlistedPropertyItemStack.java │ └── package-info.java │ ├── network │ ├── CuisineGuiHandler.java │ ├── PacketCustomEvent.java │ ├── PacketNameFood.java │ ├── PacketRequestSkillLevel.java │ ├── PacketSkillLevelIncreased.java │ └── PacketSkillLevelResponse.java │ ├── plugins │ ├── BOPCompat.java │ ├── BetterWithModsCompat.java │ ├── DarkUtilsCompat.java │ ├── FarmingForBlockheadsCompat.java │ ├── ForestryCompat.java │ ├── HarvestCraftCompat.java │ ├── Helper.java │ ├── PizzaCraftCompat.java │ ├── RusticCompat.java │ ├── SaltyModCompat.java │ ├── TANCompat.java │ ├── TBLCompat.java │ ├── VFPCompat.java │ ├── crafttweaker │ │ ├── CTAxeChopping.java │ │ ├── CTBasinHeating.java │ │ ├── CTBasinSqueezing.java │ │ ├── CTBasinThrowing.java │ │ ├── CTDrink.java │ │ ├── CTHeatSources.java │ │ ├── CTIngredientInput.java │ │ ├── CTMill.java │ │ ├── CTMortar.java │ │ ├── CTSupport.java │ │ └── CTVessel.java │ ├── hwyla │ │ ├── CuisineBasinProvider.java │ │ ├── CuisineCropProvider.java │ │ ├── CuisineWokProvider.java │ │ └── HWYLACompatibility.java │ ├── immersiveengineering │ │ ├── CuisinePlantHandler.java │ │ └── ImmersiveEngineeringCompat.java │ ├── jei │ │ ├── BasinSqueezingRecipeCategory.java │ │ ├── BasinThrowingRecipeCategory.java │ │ ├── BoilingRecipeCategory.java │ │ ├── ChoppingBoardAxeRecipe.java │ │ ├── ChoppingBoardKnifeRecipe.java │ │ ├── ChoppingBoardRecipeCategory.java │ │ ├── CombinedTimer.java │ │ ├── DistillationBoilingRecipe.java │ │ ├── FirepitFuelCategory.java │ │ ├── FirepitFuelRecipe.java │ │ ├── GenericRecipeWrapper.java │ │ ├── JEICompat.java │ │ ├── MaterialSqueezingRecipe.java │ │ ├── MillRecipe.java │ │ ├── MillRecipeCategory.java │ │ ├── MortarGenericRecipe.java │ │ ├── MortarPasteRecipe.java │ │ ├── MortarRecipeCategory.java │ │ ├── RecipeChoppingBoardWrapper.java │ │ ├── RecipeSpiceBottleFillingWrapper.java │ │ ├── SimpleSqueezingRecipe.java │ │ ├── SimpleThrowingRecipe.java │ │ ├── VesselRecipe.java │ │ ├── VesselRecipeCategory.java │ │ └── package-info.java │ ├── nutrition │ │ ├── NutritionCompat.java │ │ └── NutritionCompatibilityPreLoader.java │ ├── patchouli │ │ ├── CuisineManualMillRecipeComponent.java │ │ ├── ManualSupport.java │ │ ├── PageCenteredText.java │ │ ├── PageDrinkType.java │ │ └── PatchouliClientHandler.java │ └── top │ │ ├── CuisineCropProvider.java │ │ ├── CuisineMachineProvider.java │ │ └── TOPCompat.java │ ├── potions │ ├── PotionDispersal.java │ ├── PotionDrunk.java │ └── PotionSustainedRelease.java │ ├── server │ └── CuisineServerProxy.java │ ├── tiles │ ├── FuelHeatHandler.java │ ├── IHeatable.java │ ├── PacketIncrementalWokUpdate.java │ ├── PacketWokSeasoningsUpdate.java │ ├── TileBarbecueRack.java │ ├── TileBasin.java │ ├── TileBasinHeatable.java │ ├── TileChoppingBoard.java │ ├── TileDish.java │ ├── TileDrinkroBase.java │ ├── TileDrinkroTank.java │ ├── TileFirePit.java │ ├── TileFruitTree.java │ ├── TileFryingPan.java │ ├── TileJar.java │ ├── TileMill.java │ ├── TileMortar.java │ ├── TileRegistry.java │ ├── TileSqueezer.java │ ├── TileWok.java │ └── package-info.java │ ├── util │ ├── BaublesWrapper.java │ ├── CuisineFakePlayer.java │ ├── I18nUtil.java │ └── StacksUtil.java │ └── world │ ├── feature │ ├── WorldFeatureBamboo.java │ └── WorldFeatureCitrusGenusTree.java │ └── gen │ ├── WorldGenBamboo.java │ ├── WorldGenCitrusTrees.java │ ├── WorldGenGarden.java │ └── WorldGenHelper.java └── resources ├── META-INF └── cuisine_at.cfg ├── assets └── cuisine │ ├── armatures │ └── block │ │ ├── mill_top.json │ │ └── piston_extension.json │ ├── asms │ ├── mill.json │ └── squeezer.json │ ├── blockstates │ ├── _make_crops.bat │ ├── bamboo.json │ ├── bamboo_plant.json │ ├── chili.json │ ├── chinese_cabbage.json │ ├── chopping_board.json │ ├── corn.json │ ├── cucumber.json │ ├── door.json │ ├── drinkro.json │ ├── earthen_basin.json │ ├── earthen_basin_colored.json │ ├── eggplant.json │ ├── fence.json │ ├── fence_gate.json │ ├── fire_pit.json │ ├── fluid.json │ ├── garlic.json │ ├── ginger.json │ ├── green_pepper.json │ ├── jar.json │ ├── leaves_citron.json │ ├── leaves_grapefruit.json │ ├── leaves_lemon.json │ ├── leaves_lime.json │ ├── leaves_mandarin.json │ ├── leaves_orange.json │ ├── leaves_pomelo.json │ ├── leek.json │ ├── lettuce.json │ ├── log.json │ ├── mill.json │ ├── mortar.json │ ├── onion.json │ ├── peanut.json │ ├── placed_dish.json │ ├── planks.json │ ├── red_pepper.json │ ├── rice.json │ ├── sapling.json │ ├── scallion.json │ ├── sesame.json │ ├── sheared_leaves.json │ ├── sichuan_pepper.json │ ├── soybean.json │ ├── spice_bottle.json │ ├── spinach.json │ ├── squeezer.json │ ├── tofu_block.json │ ├── tomato.json │ ├── trapdoor.json │ ├── turnip.json │ ├── wok.json │ └── wooden_basin.json │ ├── lang │ ├── en_us.lang │ ├── ru_ru.lang │ └── zh_cn.lang │ ├── list.txt │ ├── models │ ├── block │ │ ├── _make_crops.bat │ │ ├── bamboo.json │ │ ├── bamboo_branch.json │ │ ├── bamboo_plate.json │ │ ├── bamboo_shoot.json │ │ ├── bamboo_side0.json │ │ ├── bamboo_side1.json │ │ ├── basin.json │ │ ├── chili_stage0.json │ │ ├── chili_stage1.json │ │ ├── chili_stage2.json │ │ ├── chili_stage3.json │ │ ├── chinese_cabbage_stage0.json │ │ ├── chinese_cabbage_stage1.json │ │ ├── chinese_cabbage_stage2.json │ │ ├── chinese_cabbage_stage3.json │ │ ├── corn_stage0.json │ │ ├── corn_stage1.json │ │ ├── corn_stage2.json │ │ ├── corn_stage3.json │ │ ├── cross_crop.json │ │ ├── cucumber_stage0.json │ │ ├── cucumber_stage1.json │ │ ├── cucumber_stage2.json │ │ ├── cucumber_stage3.json │ │ ├── dish │ │ │ ├── fish0.mtl │ │ │ ├── fish0.obj │ │ │ ├── meat0.mtl │ │ │ ├── meat0.obj │ │ │ ├── meat1.mtl │ │ │ ├── meat1.obj │ │ │ ├── mixed0.mtl │ │ │ ├── mixed0.obj │ │ │ ├── mixed1.mtl │ │ │ ├── mixed1.obj │ │ │ ├── plate.mtl │ │ │ ├── plate.obj │ │ │ ├── rice0.mtl │ │ │ ├── rice0.obj │ │ │ ├── veges0.mtl │ │ │ ├── veges0.obj │ │ │ ├── veges1.mtl │ │ │ └── veges1.obj │ │ ├── double_crop.json │ │ ├── double_cross_crop.json │ │ ├── drinkro.json │ │ ├── drinkro_special.json │ │ ├── eggplant_stage0.json │ │ ├── eggplant_stage1.json │ │ ├── eggplant_stage2.json │ │ ├── eggplant_stage3.json │ │ ├── fire_pit.mtl │ │ ├── fire_pit.obj │ │ ├── fire_pit_with_frying_pan.mtl │ │ ├── fire_pit_with_frying_pan.obj │ │ ├── fire_pit_with_sticks.obj │ │ ├── fire_pit_with_wok.obj │ │ ├── flowers.json │ │ ├── fruit_lg.json │ │ ├── fruit_md.json │ │ ├── fruit_sm.json │ │ ├── frying_pan.mtl │ │ ├── frying_pan.obj │ │ ├── garlic_stage0.json │ │ ├── garlic_stage1.json │ │ ├── garlic_stage2.json │ │ ├── garlic_stage3.json │ │ ├── ginger_stage0.json │ │ ├── ginger_stage1.json │ │ ├── ginger_stage2.json │ │ ├── ginger_stage3.json │ │ ├── green_pepper_stage0.json │ │ ├── green_pepper_stage1.json │ │ ├── green_pepper_stage2.json │ │ ├── green_pepper_stage3.json │ │ ├── jar.json │ │ ├── leaves_citron.json │ │ ├── leaves_grapefruit.json │ │ ├── leaves_lemon.json │ │ ├── leaves_lime.json │ │ ├── leaves_mandarin.json │ │ ├── leaves_orange.json │ │ ├── leaves_pomelo.json │ │ ├── leek_stage0.json │ │ ├── leek_stage1.json │ │ ├── leek_stage2.json │ │ ├── leek_stage3.json │ │ ├── lettuce_stage0.json │ │ ├── lettuce_stage1.json │ │ ├── lettuce_stage2.json │ │ ├── lettuce_stage3.json │ │ ├── mill.json │ │ ├── mill_inventory.json │ │ ├── mill_top.json │ │ ├── mortar.json │ │ ├── onion_stage0.json │ │ ├── onion_stage1.json │ │ ├── onion_stage2.json │ │ ├── onion_stage3.json │ │ ├── peanut_stage0.json │ │ ├── peanut_stage1.json │ │ ├── peanut_stage2.json │ │ ├── peanut_stage3.json │ │ ├── pestle.json │ │ ├── piston_extension.json │ │ ├── piston_head.json │ │ ├── red_pepper_stage0.json │ │ ├── red_pepper_stage1.json │ │ ├── red_pepper_stage2.json │ │ ├── red_pepper_stage3.json │ │ ├── rice_stage0.json │ │ ├── rice_stage1.json │ │ ├── rice_stage2.json │ │ ├── rice_stage3.json │ │ ├── scallion_stage0.json │ │ ├── scallion_stage1.json │ │ ├── scallion_stage2.json │ │ ├── scallion_stage3.json │ │ ├── sesame_stage0.json │ │ ├── sesame_stage1.json │ │ ├── sesame_stage2.json │ │ ├── sesame_stage3.json │ │ ├── sichuan_pepper_stage0.json │ │ ├── sichuan_pepper_stage1.json │ │ ├── sichuan_pepper_stage2.json │ │ ├── sichuan_pepper_stage3.json │ │ ├── sichuan_pepper_stage4.json │ │ ├── soybean_stage0.json │ │ ├── soybean_stage1.json │ │ ├── soybean_stage2.json │ │ ├── soybean_stage3.json │ │ ├── spinach_stage0.json │ │ ├── spinach_stage1.json │ │ ├── spinach_stage2.json │ │ ├── spinach_stage3.json │ │ ├── tomato_stage0.json │ │ ├── tomato_stage1.json │ │ ├── tomato_stage2.json │ │ ├── tomato_stage3.json │ │ ├── turnip_stage0.json │ │ ├── turnip_stage1.json │ │ ├── turnip_stage2.json │ │ ├── turnip_stage3.json │ │ ├── void.json │ │ ├── water_crop.json │ │ ├── wok.mtl │ │ └── wok.obj │ └── item │ │ ├── _make.bat │ │ ├── bamboo.json │ │ ├── boat.json │ │ ├── cmaterial │ │ ├── cubed.json │ │ ├── diced.json │ │ ├── minced.json │ │ ├── paste.json │ │ ├── shredded.json │ │ └── sliced.json │ │ ├── dish │ │ ├── drink.json │ │ ├── fish0.json │ │ ├── fish0.json.d │ │ ├── gelo.json │ │ ├── meat0.json │ │ ├── meat0.json.d │ │ ├── meat1.json │ │ ├── meat1.json.d │ │ ├── mixed0.json │ │ ├── mixed0.json.d │ │ ├── mixed1.json │ │ ├── mixed1.json.d │ │ ├── rice0.json │ │ ├── rice0.json.d │ │ ├── smoothie.json │ │ ├── soda.json │ │ ├── veges0.json │ │ ├── veges0.json.d │ │ ├── veges1.json │ │ └── veges1.json.d │ │ ├── door.json │ │ ├── drinkro.json │ │ ├── drinkro_special.json │ │ ├── empty.json │ │ ├── fan.json │ │ ├── food_bamboo_shoot.json │ │ ├── food_chili.json │ │ ├── food_chinese_cabbage.json │ │ ├── food_citron.json │ │ ├── food_corn.json │ │ ├── food_cucumber.json │ │ ├── food_dough.json │ │ ├── food_eggplant.json │ │ ├── food_empowered_citron.json │ │ ├── food_flour.json │ │ ├── food_garlic.json │ │ ├── food_ginger.json │ │ ├── food_grapefruit.json │ │ ├── food_green_pepper.json │ │ ├── food_leek.json │ │ ├── food_lemon.json │ │ ├── food_lettuce.json │ │ ├── food_lime.json │ │ ├── food_mandarin.json │ │ ├── food_onion.json │ │ ├── food_orange.json │ │ ├── food_peanut.json │ │ ├── food_pickled_cabbage.json │ │ ├── food_pickled_cucumber.json │ │ ├── food_pickled_pepper.json │ │ ├── food_pickled_turnip.json │ │ ├── food_pomelo.json │ │ ├── food_red_pepper.json │ │ ├── food_rice.json │ │ ├── food_rice_powder.json │ │ ├── food_scallion.json │ │ ├── food_sesame.json │ │ ├── food_sichuan_pepper.json │ │ ├── food_soybean.json │ │ ├── food_spinach.json │ │ ├── food_tofu.json │ │ ├── food_tomato.json │ │ ├── food_turnip.json │ │ ├── food_white_rice.json │ │ ├── glass_bottle.json │ │ ├── iron_spatula.json │ │ ├── kitchen_knife.json │ │ ├── manual.json │ │ ├── material_bamboo_charcoal.json │ │ ├── material_chili_powder.json │ │ ├── material_crude_salt.json │ │ ├── material_salt.json │ │ ├── material_sichuan_pepper_powder.json │ │ ├── material_unrefined_sugar.json │ │ ├── material_wooden_arm.json │ │ ├── material_wooden_handle.json │ │ ├── mortar_empty.json │ │ ├── mortar_water.json │ │ ├── placed_dish.json │ │ ├── record.json.d │ │ ├── sapling_citron.json │ │ ├── sapling_grapefruit.json │ │ ├── sapling_lemon.json │ │ ├── sapling_lime.json │ │ ├── sapling_mandarin.json │ │ ├── sapling_orange.json │ │ └── sapling_pomelo.json │ ├── patchouli_books │ └── culinary_101 │ │ ├── book.json │ │ ├── en_us │ │ ├── categories │ │ │ ├── ingredients.json │ │ │ ├── misc.json │ │ │ ├── preface.json │ │ │ ├── processing.json │ │ │ ├── seasonings.json │ │ │ └── utensils.json │ │ ├── entries │ │ │ ├── ingredients │ │ │ │ └── apple.json │ │ │ ├── misc │ │ │ │ ├── effect_resistance.json │ │ │ │ ├── fruit_trees.json │ │ │ │ ├── tofu_block.json │ │ │ │ └── wooden_arm.json │ │ │ ├── preface │ │ │ │ ├── credits.json │ │ │ │ ├── ingredient.json │ │ │ │ ├── plant.json │ │ │ │ ├── rare_crop.json │ │ │ │ ├── social.json │ │ │ │ └── tooltip.json │ │ │ ├── processing │ │ │ │ ├── basin.json │ │ │ │ ├── chopping_board.json │ │ │ │ ├── jar.json │ │ │ │ ├── mill.json │ │ │ │ └── mortar.json │ │ │ ├── seasonings │ │ │ │ ├── salt.json │ │ │ │ └── sesame_oil.json │ │ │ └── utensils │ │ │ │ ├── bbq_rack.json │ │ │ │ ├── brewing.json │ │ │ │ ├── drinkro.json │ │ │ │ ├── fire_pit.json │ │ │ │ ├── plate.json │ │ │ │ └── wok.json │ │ └── templates │ │ │ └── mill_recipe.json │ │ ├── ru_ru │ │ ├── categories │ │ │ ├── ingredients.json │ │ │ ├── misc.json │ │ │ ├── preface.json │ │ │ ├── processing.json │ │ │ ├── seasonings.json │ │ │ └── utensils.json │ │ ├── entries │ │ │ ├── ingredients │ │ │ │ └── apple.json │ │ │ ├── misc │ │ │ │ ├── effect_resistance.json │ │ │ │ ├── fruit_trees.json │ │ │ │ ├── tofu_block.json │ │ │ │ └── wooden_arm.json │ │ │ ├── preface │ │ │ │ ├── credits.json │ │ │ │ ├── ingredient.json │ │ │ │ ├── plant.json │ │ │ │ ├── rare_crop.json │ │ │ │ ├── social.json │ │ │ │ └── tooltip.json │ │ │ ├── processing │ │ │ │ ├── basin.json │ │ │ │ ├── chopping_board.json │ │ │ │ ├── jar.json │ │ │ │ ├── mill.json │ │ │ │ └── mortar.json │ │ │ ├── seasonings │ │ │ │ ├── salt.json │ │ │ │ └── sesame_oil.json │ │ │ └── utensils │ │ │ │ ├── bbq_rack.json │ │ │ │ ├── brewing.json │ │ │ │ ├── drinkro.json │ │ │ │ ├── fire_pit.json │ │ │ │ ├── plate.json │ │ │ │ └── wok.json │ │ └── templates │ │ │ └── mill_recipe.json │ │ └── zh_cn │ │ ├── categories │ │ ├── ingredients.json │ │ ├── misc.json │ │ ├── preface.json │ │ ├── processing.json │ │ ├── seasonings.json │ │ └── utensils.json │ │ └── entries │ │ ├── ingredients │ │ └── apple.json │ │ ├── misc │ │ ├── effect_resistance.json │ │ ├── fruit_trees.json │ │ ├── tofu_block.json │ │ └── wooden_arm.json │ │ ├── preface │ │ ├── credits.json │ │ ├── ingredient.json │ │ ├── plant.json │ │ ├── rare_crop.json │ │ ├── social.json │ │ └── tooltip.json │ │ ├── processing │ │ ├── basin.json │ │ ├── chopping_board.json │ │ ├── jar.json │ │ ├── mill.json │ │ └── mortar.json │ │ ├── seasonings │ │ ├── salt.json │ │ └── sesame_oil.json │ │ └── utensils │ │ ├── bbq_rack.json │ │ ├── brewing.json │ │ ├── drinkro.json │ │ ├── fire_pit.json │ │ ├── plate.json │ │ └── wok.json │ ├── recipes │ ├── _factories.json │ ├── bbq_rack.json │ ├── black_earthen_basin.json │ ├── blue_earthen_basin.json │ ├── boat.json │ ├── brown_earthen_basin.json │ ├── charcoal_filter.json │ ├── chopping_board.json │ ├── compatibilities │ │ ├── ceramic_plate.json │ │ └── kitchen_knife_with_iron_plate.json │ ├── cookie.json │ ├── cyan_earthen_basin.json │ ├── door.json │ ├── dough.json │ ├── drinkro.json │ ├── earthen_basin.json │ ├── fan.json │ ├── fence.json │ ├── fence_gate.json │ ├── fire_charge.json │ ├── fire_pit.json │ ├── fire_pit_and_wok.json │ ├── food_empty.json │ ├── gray_earthen_basin.json │ ├── green_earthen_basin.json │ ├── iron_spatula.json │ ├── jar.json │ ├── kitchen_knife.json │ ├── light_blue_earthen_basin.json │ ├── light_gray_earthen_basin.json │ ├── lime_earthen_basin.json │ ├── magenta_earthen_basin.json │ ├── manual.json │ ├── mill.json │ ├── mortar.json │ ├── orange_earthen_basin.json │ ├── pink_earthen_basin.json │ ├── planks.json │ ├── plate.json │ ├── purple_earthen_basin.json │ ├── red_earthen_basin.json │ ├── salt.json │ ├── spice_bottle.json │ ├── spice_bottle_empty.json │ ├── spice_bottle_filling.json │ ├── tofu.json │ ├── tofu_block.json │ ├── torch.json │ ├── trapdoor.json │ ├── white_earthen_basin.json │ ├── wok.json │ ├── wooden_arm.json │ ├── wooden_basin.json │ ├── wooden_handle.json │ └── yellow_earthen_basin.json │ ├── shaders │ ├── block.properties │ └── natural.properties │ └── textures │ ├── block │ ├── bamboo.png │ ├── bamboo_leaves.png │ ├── bamboo_leaves_top.png │ ├── bamboo_plate.png │ ├── bamboo_shoot.png │ ├── chili_stage_0.png │ ├── chili_stage_1.png │ ├── chili_stage_2.png │ ├── chili_stage_3.png │ ├── chinese_cabbage_stage_0.png │ ├── chinese_cabbage_stage_1.png │ ├── chinese_cabbage_stage_2.png │ ├── chinese_cabbage_stage_3.png │ ├── corn_lower_0.png │ ├── corn_lower_1.png │ ├── corn_lower_2.png │ ├── corn_lower_3.png │ ├── corn_upper_1.png │ ├── corn_upper_2.png │ ├── corn_upper_3.png │ ├── cucumber_lower_0.png │ ├── cucumber_lower_1.png │ ├── cucumber_lower_2.png │ ├── cucumber_lower_3.png │ ├── cucumber_upper_0.png │ ├── cucumber_upper_1.png │ ├── cucumber_upper_2.png │ ├── cucumber_upper_3.png │ ├── cuisine_juice_flow.png │ ├── cuisine_juice_flow.png.mcmeta │ ├── cuisine_juice_still.png │ ├── cuisine_juice_still.png.mcmeta │ ├── door_lower.png │ ├── door_upper.png │ ├── drinkro_base_inner.png │ ├── drinkro_door.png │ ├── drinkro_door_side.png │ ├── drinkro_full.png │ ├── drinkro_lower.png │ ├── drinkro_side_inner.png │ ├── drinkro_special_door.png │ ├── drinkro_special_full.png │ ├── drinkro_special_upper.png │ ├── drinkro_upper.png │ ├── edible_oil_flow.png │ ├── edible_oil_flow.png.mcmeta │ ├── edible_oil_still.png │ ├── edible_oil_still.png.mcmeta │ ├── eggplant_stage_0.png │ ├── eggplant_stage_1.png │ ├── eggplant_stage_2.png │ ├── eggplant_stage_3.png │ ├── flowers_citron.png │ ├── flowers_grapefruit.png │ ├── flowers_lemon.png │ ├── flowers_lime.png │ ├── flowers_mandarin.png │ ├── flowers_orange.png │ ├── flowers_pomelo.png │ ├── fruit.png │ ├── fruit_vinegar_flow.png │ ├── fruit_vinegar_flow.png.mcmeta │ ├── fruit_vinegar_still.png │ ├── fruit_vinegar_still.png.mcmeta │ ├── garlic_stage_0.png │ ├── garlic_stage_1.png │ ├── garlic_stage_2.png │ ├── garlic_stage_3.png │ ├── ginger_stage_0.png │ ├── ginger_stage_1.png │ ├── ginger_stage_2.png │ ├── ginger_stage_3.png │ ├── green_pepper_stage_0.png │ ├── green_pepper_stage_1.png │ ├── green_pepper_stage_2.png │ ├── green_pepper_stage_3.png │ ├── iron.png │ ├── leaves_citron.png │ ├── leaves_grapefruit.png │ ├── leaves_lemon.png │ ├── leaves_lime.png │ ├── leaves_mandarin.png │ ├── leaves_orange.png │ ├── leaves_pomelo.png │ ├── leek_stage_0.png │ ├── leek_stage_1.png │ ├── leek_stage_2.png │ ├── leek_stage_3.png │ ├── lettuce_stage_0.png │ ├── lettuce_stage_1.png │ ├── lettuce_stage_2.png │ ├── lettuce_stage_3.png │ ├── log.png │ ├── log_top.png │ ├── milk_flow.png │ ├── milk_still.png │ ├── mill_bottom.png │ ├── mill_top.png │ ├── onion_stage_0.png │ ├── onion_stage_1.png │ ├── onion_stage_2.png │ ├── onion_stage_3.png │ ├── peanut_stage_0.png │ ├── peanut_stage_1.png │ ├── peanut_stage_2.png │ ├── peanut_stage_3.png │ ├── planks.png │ ├── red_pepper_stage_0.png │ ├── red_pepper_stage_1.png │ ├── red_pepper_stage_2.png │ ├── red_pepper_stage_3.png │ ├── rice_root_0.png │ ├── rice_root_1.png │ ├── rice_root_2.png │ ├── rice_root_3.png │ ├── rice_stage_0.png │ ├── rice_stage_1.png │ ├── rice_stage_2.png │ ├── rice_stage_3.png │ ├── rice_vinegar_flow.png │ ├── rice_vinegar_flow.png.mcmeta │ ├── rice_vinegar_still.png │ ├── rice_vinegar_still.png.mcmeta │ ├── sapling_citron.png │ ├── sapling_grapefruit.png │ ├── sapling_lemon.png │ ├── sapling_lime.png │ ├── sapling_mandarin.png │ ├── sapling_orange.png │ ├── sapling_pomelo.png │ ├── scallion_stage_0.png │ ├── scallion_stage_1.png │ ├── scallion_stage_2.png │ ├── scallion_stage_3.png │ ├── sesame_oil_flow.png │ ├── sesame_oil_flow.png.mcmeta │ ├── sesame_oil_still.png │ ├── sesame_oil_still.png.mcmeta │ ├── sesame_stage_0.png │ ├── sesame_stage_1.png │ ├── sesame_stage_2.png │ ├── sesame_stage_3.png │ ├── sichuan_pepper_stage_0.png │ ├── sichuan_pepper_stage_1.png │ ├── sichuan_pepper_stage_2.png │ ├── sichuan_pepper_stage_3.png │ ├── sichuan_pepper_stage_4.png │ ├── soy_milk_flow.png │ ├── soy_milk_flow.png.mcmeta │ ├── soy_milk_still.png │ ├── soy_milk_still.png.mcmeta │ ├── soy_sauce_flow.png │ ├── soy_sauce_flow.png.mcmeta │ ├── soy_sauce_still.png │ ├── soy_sauce_still.png.mcmeta │ ├── soybean_stage_0.png │ ├── soybean_stage_1.png │ ├── soybean_stage_2.png │ ├── soybean_stage_3.png │ ├── spinach_stage_0.png │ ├── spinach_stage_1.png │ ├── spinach_stage_2.png │ ├── spinach_stage_3.png │ ├── sugarcane_juice_flow.png │ ├── sugarcane_juice_flow.png.mcmeta │ ├── sugarcane_juice_still.png │ ├── sugarcane_juice_still.png.mcmeta │ ├── tofu_block.png │ ├── tomato_stage_0.png │ ├── tomato_stage_1.png │ ├── tomato_stage_2.png │ ├── tomato_stage_3.png │ ├── trapdoor.png │ ├── turnip_stage_0.png │ ├── turnip_stage_1.png │ ├── turnip_stage_2.png │ └── turnip_stage_3.png │ ├── entity │ └── boat.png │ ├── gui │ ├── icons.png │ ├── icons.psd │ ├── jei.png │ ├── jei.psd │ ├── patchouli.png │ ├── potions.png │ └── potions.psd │ ├── item │ ├── bamboo.png │ ├── bamboo_charcoal.png │ ├── bamboo_shoot.png │ ├── boat.png │ ├── bread.png │ ├── chili.png │ ├── chili_powder.png │ ├── chinese_cabbage.png │ ├── citron.png │ ├── corn.png │ ├── crude_salt.png │ ├── cucumber.png │ ├── dish │ │ ├── fish0.png │ │ ├── meat0.png │ │ ├── meat1.png │ │ ├── mixed0.png │ │ ├── mixed1.png │ │ ├── rice0.png │ │ ├── veges0.png │ │ └── veges1.png │ ├── door.png │ ├── dough.png │ ├── eggplant.png │ ├── empowered_citron.png │ ├── empty.png │ ├── fan.png │ ├── flour.png │ ├── garlic.png │ ├── gelo_base.png │ ├── gelo_overlay.png │ ├── ginger.png │ ├── grapefruit.png │ ├── green_pepper.png │ ├── kitchen_knife.png │ ├── leek.png │ ├── lemon.png │ ├── lettuce.png │ ├── lime.png │ ├── mandarin.png │ ├── manual.png │ ├── mortar.png │ ├── onion.png │ ├── orange.png │ ├── peanut.png │ ├── pickled_cabbage.png │ ├── pickled_cucumber.png │ ├── pickled_pepper.png │ ├── pickled_turnip.png │ ├── plate.png │ ├── pomelo.png │ ├── red_pepper.png │ ├── rice.png │ ├── rice_powder.png │ ├── salt.png │ ├── scallion.png │ ├── sesame.png │ ├── sichuan_pepper.png │ ├── sichuan_pepper_powder.png │ ├── smoothie_base.png │ ├── smoothie_overlay.png │ ├── soda_base.png │ ├── soda_base.png.mcmeta │ ├── soda_base.psd │ ├── soda_overlay.png │ ├── soybean.png │ ├── spice_bottle_base.png │ ├── spice_bottle_content.png │ ├── spinach.png │ ├── tofu.png │ ├── tomato.png │ ├── turnip.png │ ├── unrefined_sugar.png │ ├── water_mortar.png │ ├── white_rice.png │ ├── wooden_arm.png │ └── wooden_handle.png │ ├── material │ ├── cubed.png │ ├── diced.png │ ├── minced.png │ ├── paste.png │ ├── shredded.png │ └── sliced.png │ ├── misc │ ├── beef.png │ ├── fish.png │ ├── fish_soup.png │ ├── lime_vege.png │ ├── meat_soup.png │ ├── red_deco.png │ ├── rice.png │ ├── vege.png │ ├── veges_soup.png │ └── yellow_deco.png │ └── particle │ └── growth.png ├── mcmod.info └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Issue 3 | about: Do not write different issues in one issue, try separating them 4 | title: "[Give a relevant title here]" 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | * Minecraft Version: 11 | * Mod Version: 12 | -------------------------------------------------------------------------------- /.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 | .editorconfig 24 | build 25 | classes 26 | 27 | /gradlew.bat 28 | /gradle 29 | /gradlew 30 | /libs/ToughAsNails-1.12.2-3.1.0.129-universal.jar 31 | -------------------------------------------------------------------------------- /LOGO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/LOGO.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | minecraft_version=1.12.2 2 | forge_version=14.23.5.2847 3 | mapping_version=stable_39 4 | 5 | version_major=0 6 | version_minor=5 7 | version_patch=22 8 | 9 | jei_version=4.14.2.+ 10 | top_version=1.12-1.+ 11 | ct_version=4.1.19.548 12 | patchi_version=1.0-17.+ 13 | -------------------------------------------------------------------------------- /libs/Baubles-1.12-1.5.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/libs/Baubles-1.12-1.5.2.jar -------------------------------------------------------------------------------- /libs/Carry+On+MC1.12.2+v1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/libs/Carry+On+MC1.12.2+v1.10.jar -------------------------------------------------------------------------------- /libs/Kiwi-1.12.2-0.5.1-deobf.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/libs/Kiwi-1.12.2-0.5.1-deobf.jar -------------------------------------------------------------------------------- /libs/Nutrition-1.12.2-3.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/libs/Nutrition-1.12.2-3.5.0.jar -------------------------------------------------------------------------------- /libs/ToughAsNails-1.12.2-3.1.0.129-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/libs/ToughAsNails-1.12.2-3.1.0.129-api.jar -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/CookingVessel.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.api; 2 | 3 | import java.util.Optional; 4 | 5 | import net.minecraft.item.ItemStack; 6 | 7 | /** 8 | * A {@code CookingVessel} is something that has ability to hold a 9 | * {@link CompositeFood.Builder}. 10 | */ 11 | public interface CookingVessel 12 | { 13 | Optional serve(); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/EffectType.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.api; 2 | 3 | public interface EffectType 4 | { 5 | Class getEffectClass(); 6 | 7 | default R cast(T value) 8 | { 9 | return (R) value; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/FuelHandler.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.api; 2 | 3 | public interface FuelHandler 4 | { 5 | void update(float bonusRate); 6 | 7 | float getBurnTime(); 8 | 9 | void setBurnTime(float burnTime); 10 | 11 | float getMaxBurnTime(); 12 | 13 | void addBurnTime(float delta); 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/HeatHandler.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.api; 2 | 3 | public interface HeatHandler 4 | { 5 | void update(float bonusRate); 6 | 7 | float getHeat(); 8 | 9 | void setHeat(float heat); 10 | 11 | float getMaxHeat(); 12 | 13 | void addHeat(float delta); 14 | 15 | float getHeatPower(); 16 | 17 | float getMaxHeatPower(); 18 | } 19 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/Taste.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.api; 2 | 3 | public enum Taste 4 | { 5 | 6 | // TODO (3TUSK): Don't ask me what is it for because I myself don't know the answer either! (The whole thing reads "figure out what can this be used for") 7 | 8 | SOUR, SWEET, BITTER, SALTY, SAVOR 9 | } 10 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Provides a set of public interfaces for interacting with Cuisine. 3 | * 4 | * 提供了一套与 Cuisine 交互的公开接口。 5 | */ 6 | @ParametersAreNonnullByDefault 7 | package snownee.cuisine.api; 8 | 9 | import javax.annotation.ParametersAreNonnullByDefault; 10 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/prefab/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Provides a set of examples of implementations of certain interfaces in Cuisine API. 3 | * 4 | * 提供了一套与 Cuisine API 部分接口的示范实现。 5 | */ 6 | @ParametersAreNonnullByDefault 7 | package snownee.cuisine.api.prefab; 8 | 9 | import javax.annotation.ParametersAreNonnullByDefault; 10 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/process/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Provides a set of public interfaces for interacting with processing 3 | * devices (for example mill and mortar) used in Cuisine. 4 | * 5 | * 提供了一套与 Cuisine 使用的加工设备(例如磨和臼等)交互的公开接口。 6 | */ 7 | @ParametersAreNonnullByDefault 8 | package snownee.cuisine.api.process; 9 | 10 | import javax.annotation.ParametersAreNonnullByDefault; 11 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/api/process/prefab/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.api.process.prefab; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/blocks/package-info.java: -------------------------------------------------------------------------------- 1 | @MethodsReturnNonnullByDefault 2 | @ParametersAreNonnullByDefault 3 | package snownee.cuisine.blocks; 4 | 5 | import javax.annotation.ParametersAreNonnullByDefault; 6 | 7 | import mcp.MethodsReturnNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/client/ClientSkillHelper.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.client; 2 | 3 | public class ClientSkillHelper 4 | { 5 | //TODO buffer skills data synced from server 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/client/gui/CuisineGUI.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.client.gui; 2 | 3 | import net.minecraft.util.ResourceLocation; 4 | import snownee.cuisine.Cuisine; 5 | 6 | public class CuisineGUI 7 | { 8 | public static final ResourceLocation TEXTURE_ICONS = new ResourceLocation(Cuisine.MODID, "textures/gui/icons.png"); 9 | 10 | public static final int MANUAL = 0; 11 | public static final int NAME_FOOD = 1; 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/client/model/package-info.java: -------------------------------------------------------------------------------- 1 | @MethodsReturnNonnullByDefault 2 | @ParametersAreNonnullByDefault 3 | package snownee.cuisine.client.model; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/client/renderer/TESRFryingPan.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.client.renderer; 2 | 3 | public class TESRFryingPan extends TESRWok 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/command/CommandRegistry.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.command; 2 | 3 | import net.minecraftforge.fml.common.event.FMLServerStartingEvent; 4 | 5 | public final class CommandRegistry 6 | { 7 | public static void registryCommands(FMLServerStartingEvent e) 8 | { 9 | e.registerServerCommand(new CommandSkill()); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/command/package-info.java: -------------------------------------------------------------------------------- 1 | @MethodsReturnNonnullByDefault 2 | @ParametersAreNonnullByDefault 3 | package snownee.cuisine.command; 4 | 5 | import javax.annotation.ParametersAreNonnullByDefault; 6 | 7 | import mcp.MethodsReturnNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/crafting/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.crafting; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/capabilities/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.internal.capabilities; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/effect/EffectHarmony.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.internal.effect; 2 | 3 | import snownee.cuisine.api.prefab.SimpleEffectImpl; 4 | 5 | public class EffectHarmony extends SimpleEffectImpl 6 | { 7 | 8 | public EffectHarmony() 9 | { 10 | super("harmony", 0xFFC0CB); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/effect/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.internal.effect; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/food/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.internal.food; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/material/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.internal.material; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * The package for holding all Cuisine API implementation and all 3 | * directly related base and utility classes. 4 | * 5 | * 包含所有 Cuisine API 的实现,及相关基类、工具类等。 6 | */ 7 | @ParametersAreNonnullByDefault 8 | package snownee.cuisine.internal; 9 | 10 | import javax.annotation.ParametersAreNonnullByDefault; 11 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/items/IRarityGetter.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.items; 2 | 3 | import net.minecraft.item.EnumRarity; 4 | 5 | public interface IRarityGetter 6 | { 7 | EnumRarity getRarity(); 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/items/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.items; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/library/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Provides series of auxiliary classes that relate to Minecraft & Forge. 3 | */ 4 | @MethodsReturnNonnullByDefault 5 | @ParametersAreNonnullByDefault 6 | package snownee.cuisine.library; 7 | 8 | import javax.annotation.ParametersAreNonnullByDefault; 9 | 10 | import mcp.MethodsReturnNonnullByDefault; 11 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/plugins/jei/package-info.java: -------------------------------------------------------------------------------- 1 | @MethodsReturnNonnullByDefault 2 | @ParametersAreNonnullByDefault 3 | package snownee.cuisine.plugins.jei; 4 | 5 | import javax.annotation.ParametersAreNonnullByDefault; 6 | 7 | import mcp.MethodsReturnNonnullByDefault; 8 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/potions/PotionDrunk.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.potions; 2 | 3 | import snownee.kiwi.potion.PotionMod; 4 | 5 | public class PotionDrunk extends PotionMod 6 | { 7 | 8 | public PotionDrunk(String name, int icon) 9 | { 10 | super(name, true, icon, true, 0xf4e34d, -1, true, false); 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/tiles/IHeatable.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.tiles; 2 | 3 | import snownee.cuisine.api.HeatHandler; 4 | 5 | // TODO: Capability? 6 | public interface IHeatable 7 | { 8 | HeatHandler getHeatHandler(); 9 | } 10 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/tiles/TileFryingPan.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.tiles; 2 | 3 | public class TileFryingPan extends TileWok 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/tiles/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | package snownee.cuisine.tiles; 3 | 4 | import javax.annotation.ParametersAreNonnullByDefault; 5 | -------------------------------------------------------------------------------- /src/main/java/snownee/cuisine/util/BaublesWrapper.java: -------------------------------------------------------------------------------- 1 | package snownee.cuisine.util; 2 | 3 | import baubles.api.BaublesApi; 4 | import net.minecraft.entity.player.EntityPlayer; 5 | import net.minecraft.item.Item; 6 | 7 | public class BaublesWrapper 8 | { 9 | public static int isBaubleEquipped(EntityPlayer player, Item item) 10 | { 11 | return BaublesApi.isBaubleEquipped(player, item); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/asms/mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "parameters": { 3 | }, 4 | "clips": { 5 | "working": [ "apply", "cuisine:block/mill_top@working", "#progress" ] 6 | }, 7 | "states": [ 8 | "working" 9 | ], 10 | "transitions": { 11 | }, 12 | "start_state": "working" 13 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:basin", 5 | "textures": { 6 | "particle": "blocks/hardened_clay" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}], 11 | "inventory": [{}] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/jar.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:jar" 5 | }, 6 | "variants": { 7 | "variant=0": [{}], 8 | "variant=1": [{}], 9 | "variant=2": [{}], 10 | "variant=3": [{}], 11 | "inventory": [{}] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_citron.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_citron" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_citron" } }, 11 | "3": { "submodel": "cuisine:fruit_sm" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_grapefruit.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_grapefruit" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_grapefruit" } }, 11 | "3": { "submodel": "cuisine:fruit_lg" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_lemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_lemon" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_lemon" } }, 11 | "3": { "submodel": "cuisine:fruit_md" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_lime" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_lime" } }, 11 | "3": { "submodel": "cuisine:fruit_md" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_mandarin.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_mandarin" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_mandarin" } }, 11 | "3": { "submodel": "cuisine:fruit_sm" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_orange" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_orange" } }, 11 | "3": { "submodel": "cuisine:fruit_md" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/leaves_pomelo.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:leaves_pomelo" 5 | }, 6 | "variants": { 7 | "age": { 8 | "0": {}, 9 | "1": {}, 10 | "2": { "submodel": "cuisine:flowers", "textures": { "0": "cuisine:block/flowers_pomelo" } }, 11 | "3": { "submodel": "cuisine:fruit_lg" } 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cube_all", 5 | "textures": { 6 | "all": "cuisine:block/planks" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}], 11 | "inventory": [{}] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/squeezer.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "variants": { 4 | "triggered": { 5 | "true": {}, 6 | "false": {} 7 | }, 8 | "static": { 9 | "true": { "model": "cuisine:piston_head" }, 10 | "false": { "model": "cuisine:piston_extension" } 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/tofu_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cube_all", 5 | "textures": { 6 | "all": "cuisine:block/tofu_block" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}], 11 | "inventory": [{}] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/wok.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:wok.obj", 5 | "custom": { "flip-v": true }, 6 | "transform": "forge:default-block" 7 | }, 8 | "variants": { 9 | "inventory": [{}] 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/blockstates/wooden_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "forge_marker": 1, 3 | "defaults": { 4 | "model": "cuisine:basin", 5 | "textures": { 6 | "particle": "blocks/planks_oak" 7 | } 8 | }, 9 | "variants": { 10 | "normal": [{}], 11 | "inventory": [{}] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/list.txt: -------------------------------------------------------------------------------- 1 | peanut soybean rice sesame tomato chili garlic ginger sichuan_pepper scallion turnip chinese_cabbage lettuce corn cucumber green_pepper red_pepper leek onion eggplant spinach 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/bamboo_shoot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/cross", 3 | "textures": { 4 | "cross": "cuisine:block/bamboo_shoot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chili_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chili_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chili_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chili_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chili_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chili_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chili_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chili_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chinese_cabbage_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chinese_cabbage_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chinese_cabbage_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chinese_cabbage_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chinese_cabbage_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chinese_cabbage_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/chinese_cabbage_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/chinese_cabbage_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/corn_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/corn_lower_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/corn_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_cross_crop", 3 | "textures": { 4 | "lower": "cuisine:block/corn_lower_1", 5 | "upper": "cuisine:block/corn_upper_1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/corn_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_cross_crop", 3 | "textures": { 4 | "lower": "cuisine:block/corn_lower_2", 5 | "upper": "cuisine:block/corn_upper_2" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/corn_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_cross_crop", 3 | "textures": { 4 | "lower": "cuisine:block/corn_lower_3", 5 | "upper": "cuisine:block/corn_upper_3" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/cucumber_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_crop", 3 | "textures": { 4 | "lower": "cuisine:block/cucumber_lower_0", 5 | "upper": "cuisine:block/cucumber_upper_0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/cucumber_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_crop", 3 | "textures": { 4 | "lower": "cuisine:block/cucumber_lower_1", 5 | "upper": "cuisine:block/cucumber_upper_1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/cucumber_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_crop", 3 | "textures": { 4 | "lower": "cuisine:block/cucumber_lower_2", 5 | "upper": "cuisine:block/cucumber_upper_2" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/cucumber_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/double_crop", 3 | "textures": { 4 | "lower": "cuisine:block/cucumber_lower_3", 5 | "upper": "cuisine:block/cucumber_upper_3" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/fish0.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl Material__6 5 | map_Kd cuisine:misc/fish 6 | 7 | newmtl 07___Default 8 | map_Kd cuisine:misc/vege 9 | 10 | newmtl Material__7 11 | d 0.5 12 | map_Kd cuisine:misc/fish_soup 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/meat0.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl Material__8 5 | map_Kd cuisine:misc/beef 6 | 7 | newmtl Material__9 8 | map_Kd cuisine:misc/vege 9 | 10 | newmtl 07___Default 11 | map_Kd cuisine:misc/vege 12 | 13 | newmtl 09___Default 14 | d 0.5 15 | map_Kd cuisine:misc/meat_soup 16 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/meat1.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl Material__8 5 | map_Kd cuisine:misc/beef 6 | 7 | newmtl 07___Default 8 | map_Kd cuisine:misc/vege 9 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/mixed0.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl 07___Default 5 | map_Kd cuisine:misc/vege 6 | 7 | newmtl 09___Default 8 | map_Kd cuisine:misc/beef 9 | 10 | newmtl 13___Default 11 | map_Kd cuisine:misc/lime_vege 12 | 13 | newmtl 14___Default 14 | d 0.5 15 | map_Kd cuisine:misc/fish_soup 16 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/mixed1.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl 09___Default 5 | map_Kd cuisine:misc/beef 6 | 7 | newmtl 07___Default 8 | map_Kd cuisine:misc/vege 9 | 10 | newmtl 14___Default 11 | d 0.5 12 | map_Kd cuisine:misc/fish_soup 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/plate.mtl: -------------------------------------------------------------------------------- 1 | newmtl _______01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/rice0.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl 02___Default 5 | map_Kd cuisine:misc/rice 6 | 7 | newmtl 03___Default 8 | map_Kd cuisine:misc/red_deco 9 | 10 | newmtl 08___Default 11 | map_Kd cuisine:misc/yellow_deco 12 | 13 | newmtl 07___Default 14 | map_Kd cuisine:misc/vege 15 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/veges0.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl 07___Default 5 | map_Kd cuisine:misc/vege 6 | 7 | newmtl 13___Default 8 | map_Kd cuisine:misc/lime_vege 9 | 10 | newmtl 14___Default 11 | d 0.5 12 | map_Kd cuisine:misc/veges_soup 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/dish/veges1.mtl: -------------------------------------------------------------------------------- 1 | newmtl 01___Default 2 | map_Kd minecraft:blocks/quartz_block_bottom 3 | 4 | newmtl 07___Default 5 | map_Kd cuisine:misc/vege 6 | 7 | newmtl 14___Default 8 | map_Kd cuisine:misc/lime_vege 9 | 10 | newmtl 13___Default 11 | d 0.5 12 | map_Kd cuisine:misc/veges_soup 13 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/drinkro_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/drinkro", 3 | "textures": { 4 | "1": "cuisine:block/drinkro_special_upper", 5 | "2": "cuisine:block/drinkro_special_full", 6 | "3": "cuisine:block/drinkro_special_door", 7 | "particle": "cuisine:block/drinkro_special_upper" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/eggplant_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/eggplant_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/eggplant_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/eggplant_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/eggplant_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/eggplant_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/eggplant_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/eggplant_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/fire_pit.mtl: -------------------------------------------------------------------------------- 1 | newmtl cobblestone 2 | map_Kd minecraft:blocks/cobblestone 3 | 4 | newmtl planks 5 | map_Kd minecraft:blocks/planks_oak 6 | 7 | newmtl bark 8 | map_Kd minecraft:blocks/log_oak 9 | 10 | newmtl iron 11 | map_Kd cuisine:block/iron 12 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/fire_pit_with_frying_pan.mtl: -------------------------------------------------------------------------------- 1 | # Blender MTL File: 'None' 2 | # Material Count: 5 3 | 4 | newmtl cobblestone 5 | map_Kd minecraft:blocks/cobblestone 6 | 7 | newmtl cobblestone_planks_oak 8 | map_Kd minecraft:blocks/planks_oak 9 | 10 | newmtl iron 11 | map_Kd cuisine:block/iron 12 | 13 | newmtl planks 14 | map_Kd cuisine:block/iron 15 | 16 | newmtl planks_planks_oak 17 | map_Kd minecraft:blocks/planks_oak 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/garlic_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/garlic_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/garlic_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/garlic_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/garlic_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/garlic_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/garlic_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/garlic_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/ginger_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/ginger_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/ginger_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/ginger_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/ginger_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/ginger_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/ginger_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/ginger_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/green_pepper_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/green_pepper_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/green_pepper_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/green_pepper_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/green_pepper_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/green_pepper_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/green_pepper_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/green_pepper_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_citron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_citron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_grapefruit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_grapefruit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_lemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_lemon" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_lime" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_mandarin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_mandarin" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_orange" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leaves_pomelo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/leaves", 3 | "textures": { 4 | "all": "cuisine:block/leaves_pomelo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leek_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/leek_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leek_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/leek_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leek_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/leek_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/leek_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/leek_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/lettuce_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/lettuce_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/lettuce_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/lettuce_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/lettuce_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/lettuce_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/lettuce_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "block/crop", 3 | "textures": { 4 | "crop": "cuisine:block/lettuce_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/onion_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/onion_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/onion_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/onion_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/onion_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/onion_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/onion_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/onion_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/peanut_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/peanut_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/peanut_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/peanut_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/peanut_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/peanut_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/peanut_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/peanut_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/red_pepper_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/red_pepper_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/red_pepper_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/red_pepper_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/red_pepper_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/red_pepper_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/red_pepper_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/red_pepper_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/rice_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/water_crop", 3 | "textures": { 4 | "crop": "cuisine:block/rice_stage_0", 5 | "root": "cuisine:block/rice_root_0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/rice_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/water_crop", 3 | "textures": { 4 | "crop": "cuisine:block/rice_stage_1", 5 | "root": "cuisine:block/rice_root_1" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/rice_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/water_crop", 3 | "textures": { 4 | "crop": "cuisine:block/rice_stage_2", 5 | "root": "cuisine:block/rice_root_2" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/rice_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/water_crop", 3 | "textures": { 4 | "crop": "cuisine:block/rice_stage_3", 5 | "root": "cuisine:block/rice_root_3" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/scallion_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/scallion_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/scallion_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/scallion_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/scallion_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/scallion_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/scallion_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/scallion_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sesame_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sesame_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sesame_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sesame_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sesame_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sesame_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sesame_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sesame_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sichuan_pepper_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sichuan_pepper_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sichuan_pepper_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sichuan_pepper_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sichuan_pepper_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sichuan_pepper_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sichuan_pepper_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sichuan_pepper_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/sichuan_pepper_stage4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/sichuan_pepper_stage_4" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/soybean_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/soybean_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/soybean_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/soybean_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/soybean_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/soybean_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/soybean_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/soybean_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/spinach_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/spinach_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/spinach_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/spinach_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/spinach_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/spinach_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/spinach_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/spinach_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/tomato_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/tomato_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/tomato_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/tomato_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/tomato_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/tomato_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/tomato_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/tomato_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/turnip_stage0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/turnip_stage_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/turnip_stage1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/turnip_stage_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/turnip_stage2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/turnip_stage_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/turnip_stage3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/cross_crop", 3 | "textures": { 4 | "crop": "cuisine:block/turnip_stage_3" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/void.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/block/wok.mtl: -------------------------------------------------------------------------------- 1 | newmtl mat1 2 | map_Kd cuisine:block/iron 3 | 4 | newmtl mat2 5 | map_Kd minecraft:blocks/planks_oak 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/bamboo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/bamboo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/boat" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/cubed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/cubed" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/diced.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/diced" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/minced.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/minced" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/paste.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/paste" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/shredded.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/shredded" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/cmaterial/sliced.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:material/sliced" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/drink.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "items/potion_bottle_drinkable", 5 | "layer1": "items/potion_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/fish0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/fish0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/fish0.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/fish0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/gelo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/gelo_base", 5 | "layer1": "cuisine:item/gelo_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/meat0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/meat0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/meat0.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/meat0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/meat1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/meat0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/meat1.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/meat0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/mixed0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/mixed0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/mixed0.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/mixed0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/mixed1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/mixed0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/mixed1.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/mixed0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/rice0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/rice0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/rice0.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/rice0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/smoothie.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/smoothie_base", 5 | "layer1": "cuisine:item/smoothie_overlay" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/soda.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer2": "cuisine:item/soda_base", 5 | "layer1": "cuisine:item/soda_overlay", 6 | "layer0": "cuisine:item/empty" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/veges0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/veges0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/veges0.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/veges0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/veges1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dish/veges0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/dish/veges1.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate", 5 | "layer1": "cuisine:item/dish/veges0" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/door.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/door" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/drinkro.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/drinkro" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/drinkro_special.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "cuisine:block/drinkro_special" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/empty" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/fan.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/fan" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_bamboo_shoot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/bamboo_shoot" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_chili.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/chili" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_chinese_cabbage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/chinese_cabbage" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_citron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/citron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_corn.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/corn" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_cucumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/cucumber" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/dough" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_eggplant.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/eggplant" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_empowered_citron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/empowered_citron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/flour" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_garlic.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/garlic" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_ginger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/ginger" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_grapefruit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/grapefruit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_green_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/green_pepper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_leek.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/leek" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_lemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/lemon" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_lettuce.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/lettuce" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/lime" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_mandarin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/mandarin" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_onion.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/onion" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/orange" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_peanut.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/peanut" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_pickled_cabbage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/pickled_cabbage" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_pickled_cucumber.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/pickled_cucumber" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_pickled_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/pickled_pepper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_pickled_turnip.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/pickled_turnip" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_pomelo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/pomelo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_red_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/red_pepper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/rice" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_rice_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/rice_powder" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_scallion.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/scallion" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_sesame.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/sesame" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_sichuan_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/sichuan_pepper" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_soybean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/soybean" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_spinach.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/spinach" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_tofu.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/tofu" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_tomato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/tomato" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_turnip.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/turnip" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/food_white_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/white_rice" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/glass_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/bottle_drinkable" 3 | } 4 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/kitchen_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/kitchen_knife" 5 | }, 6 | "display": { 7 | "head": { 8 | "translation": [-3.5, 11.5, -4.5], 9 | "rotation": [180, 24, 0] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/manual.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/manual" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_bamboo_charcoal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/bamboo_charcoal" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_chili_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/chili_powder" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_crude_salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/crude_salt" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/salt" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_sichuan_pepper_powder.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/sichuan_pepper_powder" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_unrefined_sugar.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/unrefined_sugar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_wooden_arm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/handheld", 3 | "textures": { 4 | "layer0": "cuisine:item/wooden_arm" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/material_wooden_handle.json: -------------------------------------------------------------------------------- 1 | { 2 | "credit": "Made by Snownee", 3 | "parent": "item/generated", 4 | "textures": { 5 | "layer0": "cuisine:item/wooden_handle" 6 | }, 7 | "display": { 8 | "head": { 9 | "rotation": [90, 90, 40], 10 | "translation": [0, -2, -4.25] 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/mortar_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/mortar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/mortar_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/water_mortar" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/placed_dish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/plate" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/record.json.d: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:item/record" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_citron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_citron" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_grapefruit.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_grapefruit" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_lemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_lemon" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_lime.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_lime" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_mandarin.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_mandarin" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_orange.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_orange" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/models/item/sapling_pomelo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "item/generated", 3 | "textures": { 4 | "layer0": "cuisine:block/sapling_pomelo" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/ingredients.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ingredients", 3 | "description": "WIP", 4 | "icon": "cuisine:crops:11", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/misc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Miscellaneous", 3 | "description": "", 4 | "icon": "cuisine:material", 5 | "sortnum": 60 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/preface.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Preface", 3 | "description": "Cuisine is a Minecraft Mod about cuisine, and to a certain extent, gastronomy. In this mod, you can cook food in a realistic-esque manner. Think about how would you prepare food in your kitchen - this is what this Mod provides.", 4 | "icon": "cuisine:kitchen_knife", 5 | "sortnum": 0 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/processing.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Processing Devices", 3 | "description": "Raw ingredients often require refinement. Here are manuals of all of processing devices featured in Cuisine.", 4 | "icon": "cuisine:mortar", 5 | "sortnum": 1 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/seasonings.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Seasonings", 3 | "description": "WIP", 4 | "icon": "cuisine:spice_bottle", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/categories/utensils.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Utensils", 3 | "description": "All detailed descriptions of cooking utensils can be found here.", 4 | "icon": "cuisine:wok", 5 | "sortnum": 2 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/entries/ingredients/apple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Apple", 3 | "icon": "minecraft:apple", 4 | "category": "ingredients", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "WIPThonk" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/en_us/entries/seasonings/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Salt", 3 | "icon": "cuisine:material:2", 4 | "category": "seasonings", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/categories/ingredients.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "§lИнгредиенты§r", 3 | "description": "В разработке", 4 | "icon": "cuisine:crops:11", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/categories/misc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "§lРазности§r", 3 | "description": "Особенные предметы и их предназначения хранятся именно здесь. Их сложно отнести под какую-нибудь категорию, поэтому их перечень одиноко числится на этих ветхих страничках.", 4 | "icon": "cuisine:material", 5 | "sortnum": 60 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/categories/seasonings.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "§lСпеции§r", 3 | "description": "В разработке.", 4 | "icon": "cuisine:spice_bottle", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/categories/utensils.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "§lПриспособления§r", 3 | "description": "◦ Инструкции по использованию различных приспособлений хранятся прямо здесь.", 4 | "icon": "cuisine:wok", 5 | "sortnum": 2 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/entries/ingredients/apple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Яблоко", 3 | "icon": "minecraft:apple", 4 | "category": "ingredients", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "◦ В разработке." 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/ru_ru/entries/seasonings/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Соль", 3 | "icon": "cuisine:material:2", 4 | "category": "seasonings", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/ingredients.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "食材", 3 | "description": "制作中", 4 | "icon": "cuisine:crops:11", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/misc.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "杂项", 3 | "description": "这里记录了一些前面并未提到的奇奇怪怪的东西。", 4 | "icon": "cuisine:material", 5 | "sortnum": 60 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/preface.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "前言", 3 | "description": "料理工艺是一个关于烹饪及(在某种意义上)美食学的模组。这个模组实现了一套相对写实的烹饪玩法。想想看平时你在厨房是怎么做菜的——这就是这个模组提供的内容了。", 4 | "icon": "cuisine:kitchen_knife", 5 | "sortnum": 0 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/processing.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "加工设备", 3 | "description": "食材往往需要一定精加工。这里则是所有加工设备的使用说明。", 4 | "icon": "cuisine:mortar", 5 | "sortnum": 1 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/seasonings.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "调料", 3 | "description": "制作中", 4 | "icon": "cuisine:spice_bottle", 5 | "sortnum": 4 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/categories/utensils.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "厨具", 3 | "description": "所有厨具均在这里有所说明。", 4 | "icon": "cuisine:wok", 5 | "sortnum": 2 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/entries/ingredients/apple.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "苹果", 3 | "icon": "minecraft:apple", 4 | "category": "ingredients", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "$(cuisine:effect=golden_apple)$(br)$(cuisine:a=1;b=2)blablabla" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/entries/misc/effect_resistance.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "效果抗性", 3 | "icon": "cuisine:glass_bottle{liquidColor:6000000}", 4 | "category": "misc", 5 | "sortnum": 2, 6 | "pages": [ 7 | { 8 | "type": "text", 9 | "text": "当你通过食物获得了一些状态效果时,也会获得$(em)效果抗性$()的状态。当你处于这种状态时,无法再通过食物获得状态效果。$(br2)牛奶无法消除效果抗性,你可以通过$(l:utensils/drinkro)饮品$()来缩短状态时长。" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/entries/preface/rare_crop.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "稀有作物", 3 | "sortnum": 4, 4 | "icon": "cuisine:crops:5", 5 | "category": "preface", 6 | "pages": [ 7 | { 8 | "type": "text", 9 | "text": "在收获作物时,有一定几率掉落稀有作物。稀有作物的名字会显示特殊颜色。$(br2)稀有作物制成食物后会有1饥饿度的加成。此外,种植稀有作物时会自带一个骨粉效果。" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/entries/seasonings/salt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Salt", 3 | "icon": "cuisine:material:2", 4 | "category": "seasonings", 5 | "pages": [ 6 | { 7 | "type": "text", 8 | "text": "" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/patchouli_books/culinary_101/zh_cn/entries/utensils/bbq_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "烧烤架", 3 | "icon": "cuisine:fire_pit:2", 4 | "category": "utensils", 5 | "sortnum": 11, 6 | "pages": [ 7 | { 8 | "type": "text", 9 | "text": "烧烤架可以加热普通的食物(就像熔炉那样)。也可以用来$(em)烧烤加工过的食材$()。$(br2)$(em)右击木杆的部分$()可以放置食物上去。最多可以放置三个食物。" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/_factories.json: -------------------------------------------------------------------------------- 1 | { 2 | "ingredients": { 3 | "hacked_wildcard": "snownee.cuisine.crafting.WildcardIngredient$Factory" 4 | }, 5 | "recipes": { 6 | "dump_food_container": "snownee.cuisine.crafting.RecipeFoodEmpty$Factory", 7 | "chopping_board": "snownee.cuisine.crafting.RecipeChoppingBoard$Factory", 8 | "spice_bottle_fill": "snownee.cuisine.crafting.RecipeSpiceBottleFilling$Factory" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/bbq_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:fire_pit", 5 | "data": 2 6 | }, 7 | "pattern": [ 8 | " s ", 9 | "sfs" 10 | ], 11 | "key": { 12 | "s": { 13 | "ore" : "stickWood", 14 | "type": "forge:ore_dict" 15 | }, 16 | "f": { 17 | "item": "cuisine:fire_pit", 18 | "data": 0 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/black_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 15 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 15 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/blue_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 11 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 11 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/boat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:boat" 5 | }, 6 | "pattern": [ 7 | "* *", 8 | "***" 9 | ], 10 | "key": { 11 | "*": { 12 | "item": "cuisine:planks" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/brown_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 12 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 12 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/chopping_board.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "cuisine:chopping_board" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/cookie.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shapeless", 3 | "result": { 4 | "item": "minecraft:cookie", 5 | "count": 8 6 | }, 7 | "ingredients": [ 8 | { 9 | "ore": "foodDough", 10 | "type": "forge:ore_dict" 11 | }, 12 | { 13 | "item": "minecraft:dye", 14 | "data": 3 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/cyan_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 9 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 9 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/door.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:door", 5 | "count": 3 6 | }, 7 | "pattern": [ 8 | "**", 9 | "**", 10 | "**" 11 | ], 12 | "key": { 13 | "*": { 14 | "item": "cuisine:planks" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shapeless", 3 | "result": { 4 | "item": "cuisine:food", 5 | "data": 2 6 | }, 7 | "ingredients": [ 8 | { 9 | "ore": "foodFlour", 10 | "type": "forge:ore_dict" 11 | }, 12 | { 13 | "ore": "listAllwater", 14 | "type": "forge:ore_dict" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin" 5 | }, 6 | "pattern": [ 7 | "m m", 8 | "bmb" 9 | ], 10 | "key": { 11 | "m": { 12 | "item" : "minecraft:hardened_clay" 13 | }, 14 | "b": { 15 | "item" : "minecraft:iron_bars" 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/fan.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:fan" 5 | }, 6 | "pattern": [ 7 | " w", 8 | "s " 9 | ], 10 | "key": { 11 | "w": { 12 | "item": "minecraft:waterlily" 13 | }, 14 | "s": { 15 | "type": "forge:ore_dict", 16 | "ore": "handleWood" 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/fence.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:fence", 5 | "count": 3 6 | }, 7 | "pattern": [ 8 | "*|*", 9 | "*|*" 10 | ], 11 | "key": { 12 | "*": { 13 | "item": "cuisine:planks" 14 | }, 15 | "|": { 16 | "ore" : "stickWood", 17 | "type": "forge:ore_dict" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/fence_gate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:fence_gate" 5 | }, 6 | "pattern": [ 7 | "|*|", 8 | "|*|" 9 | ], 10 | "key": { 11 | "*": { 12 | "item": "cuisine:planks" 13 | }, 14 | "|": { 15 | "ore" : "stickWood", 16 | "type": "forge:ore_dict" 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/fire_charge.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shapeless", 3 | "result": { 4 | "item": "minecraft:fire_charge", 5 | "count": 3 6 | }, 7 | "ingredients": [ 8 | { 9 | "ore" : "gunpowder", 10 | "type": "forge:ore_dict" 11 | }, 12 | { 13 | "item": "minecraft:blaze_powder" 14 | }, 15 | { 16 | "item" : "cuisine:material", 17 | "data": 6 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/fire_pit_and_wok.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "kiwi:no_containers", 3 | "result": { 4 | "item": "cuisine:fire_pit", 5 | "data": 1 6 | }, 7 | "pattern": [ 8 | "w", 9 | "f" 10 | ], 11 | "key": { 12 | "w": { 13 | "item" : "cuisine:wok" 14 | }, 15 | "f": { 16 | "item": "cuisine:fire_pit", 17 | "data": 0 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/food_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "cuisine:dump_food_container" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/gray_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 7 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 7 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/green_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 13 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 13 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/iron_spatula.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:iron_spatula" 5 | }, 6 | "pattern": [ 7 | "i", 8 | "s" 9 | ], 10 | "key": { 11 | "s": { 12 | "type": "forge:ore_dict", 13 | "ore": "handleWood" 14 | }, 15 | "i": { 16 | "ore" : "ingotIron", 17 | "type": "forge:ore_dict" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/jar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:jar", 5 | "count": 2 6 | }, 7 | "pattern": [ 8 | "ccc", 9 | "c c", 10 | "ccc" 11 | ], 12 | "key": { 13 | "c": { 14 | "item" : "minecraft:hardened_clay" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/light_blue_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 3 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 3 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/light_gray_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 8 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 8 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/lime_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 5 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 5 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/magenta_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 2 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 2 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "mirrored": true, 4 | "result": { 5 | "item": "cuisine:mill" 6 | }, 7 | "pattern": [ 8 | " w", 9 | "sss", 10 | "sss" 11 | ], 12 | "key": { 13 | "s": { 14 | "ore" : "stone", 15 | "type": "forge:ore_dict" 16 | }, 17 | "w": { 18 | "type": "forge:ore_dict", 19 | "ore": "handleWood" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/mortar.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:mortar", 5 | "data": 0 6 | }, 7 | "pattern": [ 8 | " f", 9 | "s s", 10 | " s " 11 | ], 12 | "key": { 13 | "s": { 14 | "ore" : "stone", 15 | "type": "forge:ore_dict" 16 | }, 17 | "f": { 18 | "item" : "minecraft:flint" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/orange_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 1 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 1 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/pink_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 6 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 6 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:planks", 5 | "count": 4 6 | }, 7 | "pattern": [ 8 | "*" 9 | ], 10 | "key": { 11 | "*": { 12 | "item": "cuisine:log" 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/plate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:placed_dish" 5 | }, 6 | "pattern": [ 7 | "qqq" 8 | ], 9 | "key": { 10 | "q": [ 11 | { 12 | "ore" : "gemQuartz", 13 | "type": "forge:ore_dict" 14 | }, 15 | { 16 | "item": "minecraft:stained_hardened_clay", 17 | "data": 0 18 | } 19 | ] 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/purple_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 10 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 10 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/red_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 14 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 14 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/spice_bottle_empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "kiwi:no_containers", 3 | "result": { 4 | "item": "cuisine:spice_bottle", 5 | "data": 0 6 | }, 7 | "pattern": [ 8 | "*" 9 | ], 10 | "key": { 11 | "*": { 12 | "item": "cuisine:spice_bottle", 13 | "data": 32767 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/spice_bottle_filling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "cuisine:spice_bottle_fill" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/tofu.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:food", 5 | "data": 0, 6 | "count": 4 7 | }, 8 | "pattern": [ 9 | "t" 10 | ], 11 | "key": { 12 | "t": { 13 | "item": "cuisine:tofu_block" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/tofu_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:tofu_block" 5 | }, 6 | "pattern": [ 7 | "tt", 8 | "tt" 9 | ], 10 | "key": { 11 | "t": { 12 | "ore": "foodFirmtofu", 13 | "type": "forge:ore_dict" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/torch.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "minecraft:torch", 5 | "count": 4 6 | }, 7 | "pattern": [ 8 | "c", 9 | "s" 10 | ], 11 | "key": { 12 | "c": { 13 | "item": "cuisine:material", 14 | "data": 6 15 | }, 16 | "s": { 17 | "ore" : "stickWood", 18 | "type": "forge:ore_dict" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/trapdoor.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:trapdoor", 5 | "count": 2 6 | }, 7 | "pattern": [ 8 | "***", 9 | "***" 10 | ], 11 | "key": { 12 | "*": { 13 | "item": "cuisine:planks" 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/white_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 0 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 0 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/wok.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:wok" 5 | }, 6 | "pattern": [ 7 | " s", 8 | "i i", 9 | " i " 10 | ], 11 | "key": { 12 | "i": { 13 | "ore" : "ingotIron", 14 | "type": "forge:ore_dict" 15 | }, 16 | "s": { 17 | "type": "forge:ore_dict", 18 | "ore": "handleWood" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/wooden_arm.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:material", 5 | "data": 0 6 | }, 7 | "pattern": [ 8 | " b", 9 | "s " 10 | ], 11 | "key": { 12 | "b": { 13 | "ore" : "slimeball", 14 | "type": "forge:ore_dict" 15 | }, 16 | "s": { 17 | "type": "forge:ore_dict", 18 | "ore": "handleWood" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/wooden_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:wooden_basin" 5 | }, 6 | "pattern": [ 7 | "m m", 8 | "bmb" 9 | ], 10 | "key": { 11 | "m": { 12 | "ore" : "plankWood", 13 | "type": "forge:ore_dict" 14 | }, 15 | "b": { 16 | "item" : "minecraft:iron_bars" 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/wooden_handle.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item" : "cuisine:material", 5 | "data": 1 6 | }, 7 | "pattern": [ 8 | " s", 9 | "s " 10 | ], 11 | "key": { 12 | "s": { 13 | "ore" : "stickWood", 14 | "type": "forge:ore_dict" 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/recipes/yellow_earthen_basin.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:ore_shaped", 3 | "result": { 4 | "item": "cuisine:earthen_basin_colored", 5 | "data": 4 6 | }, 7 | "pattern": [ 8 | "m m", 9 | "bmb" 10 | ], 11 | "key": { 12 | "m": { 13 | "item" : "minecraft:stained_hardened_clay", 14 | "data": 4 15 | }, 16 | "b": { 17 | "item" : "minecraft:iron_bars" 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/bamboo_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/bamboo_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/bamboo_leaves_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/bamboo_leaves_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/bamboo_plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/bamboo_plate.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/bamboo_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/bamboo_shoot.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chili_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chili_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chili_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chili_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chili_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chili_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chili_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chili_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/chinese_cabbage_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_lower_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_lower_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_lower_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_lower_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_lower_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_lower_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_lower_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_lower_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_upper_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_upper_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_upper_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_upper_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/corn_upper_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/corn_upper_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_lower_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_lower_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_lower_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_lower_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_lower_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_lower_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_lower_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_lower_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_upper_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_upper_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_upper_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_upper_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_upper_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_upper_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cucumber_upper_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cucumber_upper_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cuisine_juice_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cuisine_juice_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cuisine_juice_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cuisine_juice_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/cuisine_juice_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/cuisine_juice_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/door_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/door_lower.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/door_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/door_upper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_base_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_base_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_door_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_door_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_full.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_lower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_lower.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_side_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_side_inner.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_special_door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_special_door.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_special_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_special_full.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_special_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_special_upper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/drinkro_upper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/drinkro_upper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/edible_oil_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/edible_oil_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/edible_oil_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/edible_oil_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/edible_oil_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/edible_oil_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/eggplant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/eggplant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/eggplant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/eggplant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/eggplant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/eggplant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/eggplant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/eggplant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_citron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_grapefruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_grapefruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_lime.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_mandarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_mandarin.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/flowers_pomelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/flowers_pomelo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/fruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/fruit_vinegar_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/fruit_vinegar_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/fruit_vinegar_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/fruit_vinegar_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/fruit_vinegar_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/fruit_vinegar_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/garlic_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/garlic_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/garlic_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/garlic_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/garlic_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/garlic_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/garlic_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/garlic_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/ginger_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/ginger_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/ginger_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/ginger_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/ginger_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/ginger_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/ginger_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/ginger_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/green_pepper_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/green_pepper_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/green_pepper_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/green_pepper_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/green_pepper_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/green_pepper_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/green_pepper_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/green_pepper_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_citron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_grapefruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_grapefruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_lime.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_mandarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_mandarin.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leaves_pomelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leaves_pomelo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leek_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leek_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leek_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leek_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leek_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leek_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/leek_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/leek_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/lettuce_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/lettuce_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/lettuce_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/lettuce_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/lettuce_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/lettuce_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/lettuce_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/lettuce_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/log.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/log_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/log_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/milk_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/milk_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/milk_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/milk_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/mill_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/mill_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/mill_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/mill_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/onion_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/onion_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/onion_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/onion_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/onion_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/onion_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/onion_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/onion_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/peanut_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/peanut_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/peanut_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/peanut_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/peanut_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/peanut_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/peanut_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/peanut_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/planks.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/red_pepper_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/red_pepper_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/red_pepper_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/red_pepper_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/red_pepper_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/red_pepper_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/red_pepper_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/red_pepper_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_root_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_root_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_root_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_root_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_root_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_root_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_root_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_root_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_vinegar_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_vinegar_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_vinegar_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_vinegar_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/rice_vinegar_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/rice_vinegar_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_citron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_grapefruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_grapefruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_lime.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_mandarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_mandarin.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sapling_pomelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sapling_pomelo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/scallion_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/scallion_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/scallion_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/scallion_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/scallion_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/scallion_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/scallion_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/scallion_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_oil_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_oil_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_oil_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_oil_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_oil_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_oil_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sesame_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sesame_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sichuan_pepper_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_milk_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soy_milk_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_milk_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_milk_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soy_milk_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_milk_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_sauce_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soy_sauce_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_sauce_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_sauce_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soy_sauce_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soy_sauce_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soybean_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soybean_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soybean_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soybean_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soybean_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soybean_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/soybean_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/soybean_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/spinach_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/spinach_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/spinach_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/spinach_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/spinach_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/spinach_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/spinach_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/spinach_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sugarcane_juice_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sugarcane_juice_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sugarcane_juice_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sugarcane_juice_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/sugarcane_juice_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/sugarcane_juice_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 2 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/tofu_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/tofu_block.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/tomato_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/tomato_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/tomato_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/tomato_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/tomato_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/tomato_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/tomato_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/tomato_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/trapdoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/trapdoor.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/turnip_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/turnip_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/turnip_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/turnip_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/turnip_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/turnip_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/block/turnip_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/block/turnip_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/entity/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/entity/boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/icons.psd -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/jei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/jei.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/jei.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/jei.psd -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/patchouli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/patchouli.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/potions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/potions.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/gui/potions.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/gui/potions.psd -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/bamboo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/bamboo_charcoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/bamboo_charcoal.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/bamboo_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/bamboo_shoot.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/boat.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/bread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/bread.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/chili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/chili.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/chili_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/chili_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/chinese_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/chinese_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/citron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/corn.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/crude_salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/crude_salt.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/cucumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/cucumber.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/fish0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/fish0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/meat0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/meat0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/meat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/meat1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/mixed0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/mixed0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/mixed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/mixed1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/rice0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/rice0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/veges0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/veges0.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dish/veges1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dish/veges1.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/door.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/dough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/dough.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/eggplant.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/empowered_citron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/empowered_citron.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/empty.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/fan.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/garlic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/garlic.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/gelo_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/gelo_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/gelo_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/gelo_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/ginger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/ginger.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/grapefruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/grapefruit.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/green_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/green_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/kitchen_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/kitchen_knife.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/leek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/leek.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/lemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/lemon.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/lettuce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/lettuce.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/lime.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/mandarin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/mandarin.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/manual.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/onion.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/orange.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/peanut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/peanut.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/pickled_cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/pickled_cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/pickled_cucumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/pickled_cucumber.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/pickled_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/pickled_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/pickled_turnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/pickled_turnip.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/plate.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/pomelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/pomelo.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/red_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/red_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/rice_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/rice_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/salt.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/scallion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/scallion.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/sesame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/sesame.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/sichuan_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/sichuan_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/sichuan_pepper_powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/sichuan_pepper_powder.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/smoothie_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/smoothie_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/smoothie_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/smoothie_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/soda_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/soda_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/soda_base.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/soda_base.psd -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/soda_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/soda_overlay.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/soybean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/soybean.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/spice_bottle_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/spice_bottle_base.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/spice_bottle_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/spice_bottle_content.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/spinach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/spinach.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/tofu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/tofu.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/tomato.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/turnip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/turnip.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/unrefined_sugar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/unrefined_sugar.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/water_mortar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/water_mortar.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/white_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/white_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/wooden_arm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/wooden_arm.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/item/wooden_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/item/wooden_handle.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/cubed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/cubed.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/diced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/diced.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/minced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/minced.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/paste.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/shredded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/shredded.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/material/sliced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/material/sliced.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/beef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/beef.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/fish.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/fish_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/fish_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/lime_vege.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/lime_vege.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/meat_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/meat_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/red_deco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/red_deco.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/vege.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/vege.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/veges_soup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/veges_soup.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/misc/yellow_deco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/misc/yellow_deco.png -------------------------------------------------------------------------------- /src/main/resources/assets/cuisine/textures/particle/growth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Snownee/Cuisine/29735bc4129a6b5d86ac19a05fb89119e9d3ed01/src/main/resources/assets/cuisine/textures/particle/growth.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Assets used by \"Cuisine\" Mod.", 4 | "pack_format": 3 5 | } 6 | } 7 | --------------------------------------------------------------------------------