├── .github └── workflows │ └── gradle.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build.gradle ├── buildSrc ├── build.gradle └── src │ └── main │ └── java │ └── mc │ └── sinocraft │ └── gradle_plugin │ ├── Checker.java │ ├── ClassFileVisitor.java │ ├── ClassTypes.java │ ├── GeneratorExtension.java │ ├── ITriConsumer.java │ ├── LogLevel.java │ ├── ModSourceGenerator.java │ ├── ParameterizedName.java │ ├── PluginLogger.java │ ├── PluginLoggerDebug.java │ ├── PluginMain.java │ ├── RegistryObjectInfo.java │ ├── Templates.java │ ├── Utils.java │ └── generator │ ├── ModBlockItems.java │ ├── ModBlocks.java │ ├── ModFluids.java │ ├── ModItems.java │ └── ModTileEntities.java ├── commit_rule.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs └── dev │ └── NBTEdit │ └── 0.10.0 │ ├── NBTEdit-0.10.0.jar │ └── NBTEdit-0.10.0.pom └── src ├── generated └── resources │ ├── .cache │ └── cache │ ├── assets │ └── sinocraft │ │ ├── blockstates │ │ ├── bellows.json │ │ ├── black_marble.json │ │ ├── cabbage_plant.json │ │ ├── chili_pepper_plant.json │ │ ├── eggplant_plant.json │ │ ├── green_pepper_plant.json │ │ ├── green_radish_plant.json │ │ ├── millet_plant.json │ │ ├── mulberry_leaves.json │ │ ├── mulberry_log.json │ │ ├── mulberry_log_bark.json │ │ ├── mulberry_log_stripped.json │ │ ├── mulberry_log_stripped_bark.json │ │ ├── mulberry_plank.json │ │ ├── mulberry_sapling.json │ │ ├── paper_drying_rack.json │ │ ├── peach_leaves.json │ │ ├── peach_log.json │ │ ├── peach_log_bark.json │ │ ├── peach_log_stripped.json │ │ ├── peach_log_stripped_bark.json │ │ ├── peach_plank.json │ │ ├── peach_sapling.json │ │ ├── plum_leaves.json │ │ ├── plum_log.json │ │ ├── plum_log_bark.json │ │ ├── plum_log_stripped.json │ │ ├── plum_log_stripped_bark.json │ │ ├── plum_plank.json │ │ ├── plum_sapling.json │ │ ├── pot.json │ │ ├── red_marble.json │ │ ├── rice_plant.json │ │ ├── sorghum_plant.json │ │ ├── soybean_plant.json │ │ ├── stone_mill.json │ │ ├── stove.json │ │ ├── summer_radish_plant.json │ │ ├── tea_table.json │ │ ├── teacup.json │ │ ├── teapot.json │ │ ├── vat.json │ │ ├── walnut_leaves.json │ │ ├── walnut_log.json │ │ ├── walnut_log_bark.json │ │ ├── walnut_log_stripped.json │ │ ├── walnut_log_stripped_bark.json │ │ ├── walnut_plank.json │ │ ├── walnut_sapling.json │ │ ├── white_marble.json │ │ ├── white_radish_plant.json │ │ └── wood_pulp_block.json │ │ ├── lang │ │ ├── en_us.json │ │ └── zh_cn.json │ │ └── models │ │ ├── block │ │ ├── black_marble.json │ │ ├── celery_cabbage_stage_0.json │ │ ├── celery_cabbage_stage_1.json │ │ ├── celery_cabbage_stage_2.json │ │ ├── celery_cabbage_stage_3.json │ │ ├── chili_pepper_plant_stage_0.json │ │ ├── chili_pepper_plant_stage_1.json │ │ ├── chili_pepper_plant_stage_2.json │ │ ├── chili_pepper_plant_stage_3.json │ │ ├── chili_pepper_plant_stage_4.json │ │ ├── chili_pepper_plant_stage_5.json │ │ ├── chili_pepper_plant_stage_6.json │ │ ├── chili_pepper_plant_stage_7.json │ │ ├── eggplant_stage_0.json │ │ ├── eggplant_stage_1.json │ │ ├── eggplant_stage_2.json │ │ ├── eggplant_stage_3.json │ │ ├── eggplant_stage_4.json │ │ ├── eggplant_stage_5.json │ │ ├── eggplant_stage_6.json │ │ ├── eggplant_stage_7.json │ │ ├── green_pepper_plant_stage_0.json │ │ ├── green_pepper_plant_stage_1.json │ │ ├── green_pepper_plant_stage_2.json │ │ ├── green_pepper_plant_stage_3.json │ │ ├── green_pepper_plant_stage_4.json │ │ ├── green_pepper_plant_stage_5.json │ │ ├── green_pepper_plant_stage_6.json │ │ ├── green_pepper_plant_stage_7.json │ │ ├── green_radish_plant_stage_0.json │ │ ├── green_radish_plant_stage_1.json │ │ ├── green_radish_plant_stage_2.json │ │ ├── green_radish_plant_stage_3.json │ │ ├── millet_stage_0.json │ │ ├── millet_stage_1.json │ │ ├── millet_stage_2.json │ │ ├── millet_stage_3.json │ │ ├── millet_stage_4.json │ │ ├── millet_stage_5.json │ │ ├── millet_stage_6.json │ │ ├── millet_stage_7.json │ │ ├── mulberry_leaves.json │ │ ├── mulberry_log.json │ │ ├── mulberry_log_bark.json │ │ ├── mulberry_log_stripped.json │ │ ├── mulberry_log_stripped_bark.json │ │ ├── mulberry_plank.json │ │ ├── mulberry_sapling.json │ │ ├── peach_leaves.json │ │ ├── peach_leaves_mature.json │ │ ├── peach_log.json │ │ ├── peach_log_bark.json │ │ ├── peach_log_stripped.json │ │ ├── peach_log_stripped_bark.json │ │ ├── peach_plank.json │ │ ├── peach_sapling.json │ │ ├── plum_leaves.json │ │ ├── plum_log.json │ │ ├── plum_log_bark.json │ │ ├── plum_log_stripped.json │ │ ├── plum_log_stripped_bark.json │ │ ├── plum_plank.json │ │ ├── plum_sapling.json │ │ ├── red_marble.json │ │ ├── rice_stage_bottom_0.json │ │ ├── rice_stage_bottom_1.json │ │ ├── rice_stage_bottom_2.json │ │ ├── rice_stage_bottom_3.json │ │ ├── rice_stage_bottom_4.json │ │ ├── rice_stage_bottom_5.json │ │ ├── rice_stage_bottom_6.json │ │ ├── rice_stage_bottom_7.json │ │ ├── rice_stage_top_0.json │ │ ├── rice_stage_top_1.json │ │ ├── rice_stage_top_2.json │ │ ├── rice_stage_top_3.json │ │ ├── rice_stage_top_4.json │ │ ├── rice_stage_top_5.json │ │ ├── rice_stage_top_6.json │ │ ├── rice_stage_top_7.json │ │ ├── sorghum_stage_bottom_0.json │ │ ├── sorghum_stage_bottom_1.json │ │ ├── sorghum_stage_bottom_2.json │ │ ├── sorghum_stage_bottom_3.json │ │ ├── sorghum_stage_top_0.json │ │ ├── sorghum_stage_top_1.json │ │ ├── sorghum_stage_top_2.json │ │ ├── sorghum_stage_top_3.json │ │ ├── soybean_stage_0.json │ │ ├── soybean_stage_1.json │ │ ├── soybean_stage_2.json │ │ ├── soybean_stage_3.json │ │ ├── summer_radish_plant_stage_0.json │ │ ├── summer_radish_plant_stage_1.json │ │ ├── summer_radish_plant_stage_2.json │ │ ├── summer_radish_plant_stage_3.json │ │ ├── walnut_leaves.json │ │ ├── walnut_log.json │ │ ├── walnut_log_bark.json │ │ ├── walnut_log_stripped.json │ │ ├── walnut_log_stripped_bark.json │ │ ├── walnut_plank.json │ │ ├── walnut_sapling.json │ │ ├── white_marble.json │ │ ├── white_radish_plant_stage_0.json │ │ ├── white_radish_plant_stage_1.json │ │ ├── white_radish_plant_stage_2.json │ │ ├── white_radish_plant_stage_3.json │ │ └── wood_pump.json │ │ └── item │ │ ├── adust_food.json │ │ ├── bark.json │ │ ├── bellows.json │ │ ├── black_marble.json │ │ ├── bowl_with_porridge.json │ │ ├── bowl_with_rice.json │ │ ├── bowl_with_water.json │ │ ├── bucket_wood_pulp.json │ │ ├── cabbage.json │ │ ├── cabbage_seed.json │ │ ├── charcoal_black.json │ │ ├── chili_pepper.json │ │ ├── chili_pepper_seed.json │ │ ├── chinese_brush.json │ │ ├── chinese_ink.json │ │ ├── cooked_dumpling.json │ │ ├── dish.json │ │ ├── dough.json │ │ ├── dumpling.json │ │ ├── dumpling_wrapper.json │ │ ├── eggplant.json │ │ ├── eggplant_seed.json │ │ ├── empty_xuan_paper.json │ │ ├── flour.json │ │ ├── green_pepper.json │ │ ├── green_pepper_seed.json │ │ ├── green_radish.json │ │ ├── heroes_assemble.json │ │ ├── ink_stone.json │ │ ├── knife_diamond.json │ │ ├── knife_gold.json │ │ ├── knife_iron.json │ │ ├── millet.json │ │ ├── millet_seed.json │ │ ├── mulberry_leaves.json │ │ ├── mulberry_log.json │ │ ├── mulberry_log_bark.json │ │ ├── mulberry_log_stripped.json │ │ ├── mulberry_log_stripped_bark.json │ │ ├── mulberry_plank.json │ │ ├── mulberry_sapling.json │ │ ├── paper_drying_rack.json │ │ ├── peach.json │ │ ├── peach_leaves.json │ │ ├── peach_log.json │ │ ├── peach_log_bark.json │ │ ├── peach_log_stripped.json │ │ ├── peach_log_stripped_bark.json │ │ ├── peach_plank.json │ │ ├── peach_sapling.json │ │ ├── plum_leaves.json │ │ ├── plum_log.json │ │ ├── plum_log_bark.json │ │ ├── plum_log_stripped.json │ │ ├── plum_log_stripped_bark.json │ │ ├── plum_plank.json │ │ ├── plum_sapling.json │ │ ├── pot.json │ │ ├── red_marble.json │ │ ├── rice.json │ │ ├── rice_seed.json │ │ ├── silkworm.json │ │ ├── sorghum.json │ │ ├── sorghum_seed.json │ │ ├── soybean.json │ │ ├── spawn_egg_buffalo.json │ │ ├── stone_mill.json │ │ ├── stove.json │ │ ├── stuffing.json │ │ ├── summer_radish.json │ │ ├── tea_leaf.json │ │ ├── teacup.json │ │ ├── vat.json │ │ ├── walnut_leaves.json │ │ ├── walnut_log.json │ │ ├── walnut_log_bark.json │ │ ├── walnut_log_stripped.json │ │ ├── walnut_log_stripped_bark.json │ │ ├── walnut_plank.json │ │ ├── walnut_sapling.json │ │ ├── white_marble.json │ │ ├── white_radish.json │ │ └── xuan_paper.json │ └── data │ ├── forge │ └── loot_modifiers │ │ └── global_loot_modifiers.json │ ├── minecraft │ └── tags │ │ ├── blocks │ │ ├── leaves.json │ │ ├── logs.json │ │ └── planks.json │ │ └── items │ │ ├── logs.json │ │ └── planks.json │ └── sinocraft │ ├── advancements │ ├── basic │ │ ├── eating_first.json │ │ ├── got_bark.json │ │ ├── got_ink.json │ │ ├── got_knife.json │ │ ├── got_stone_mill.json │ │ ├── heroes_assembly.json │ │ ├── porridge_ready.json │ │ ├── root.json │ │ └── write_on_paper.json │ └── recipes │ │ ├── sinocraft.blocks │ │ ├── bellows.json │ │ ├── paper_drying_rack.json │ │ ├── pot.json │ │ ├── stone_mill.json │ │ ├── stove.json │ │ └── vat.json │ │ └── sinocraft.tools_misc │ │ ├── dish.json │ │ ├── knife_diamond.json │ │ ├── knife_gold.json │ │ └── knife_iron.json │ ├── loot_modifiers │ ├── cabbage_seed_from_grass.json │ ├── cabbage_seed_from_tall_grass.json │ ├── chili_pepper_seed_from_grass.json │ ├── chili_pepper_seed_from_tall_grass.json │ ├── eggplant_seed_from_grass.json │ ├── eggplant_seed_from_tall_grass.json │ ├── green_pepper_seed_from_grass.json │ ├── green_pepper_seed_from_tall_grass.json │ ├── green_radish_from_zombie.json │ ├── millet_seed_from_grass.json │ ├── millet_seed_from_tall_grass.json │ ├── rice_seed_from_grass.json │ ├── rice_seed_from_tall_grass.json │ ├── sorghum_seed_from_grass.json │ ├── sorghum_seed_from_tall_grass.json │ ├── summer_radish_from_zombie.json │ └── white_radish_from_zombie.json │ ├── loot_tables │ └── blocks │ │ ├── black_marble.json │ │ ├── cabbage_plant.json │ │ ├── chili_pepper_plant.json │ │ ├── eggplant_plant.json │ │ ├── green_pepper_plant.json │ │ ├── green_radish_plant.json │ │ ├── millet_plant.json │ │ ├── mulberry_leaves.json │ │ ├── mulberry_log.json │ │ ├── mulberry_log_bark.json │ │ ├── mulberry_log_stripped.json │ │ ├── mulberry_log_stripped_bark.json │ │ ├── mulberry_plank.json │ │ ├── mulberry_sapling.json │ │ ├── paper_drying_rack.json │ │ ├── peach_leaves.json │ │ ├── peach_log.json │ │ ├── peach_log_bark.json │ │ ├── peach_log_stripped.json │ │ ├── peach_log_stripped_bark.json │ │ ├── peach_plank.json │ │ ├── peach_sapling.json │ │ ├── plum_leaves.json │ │ ├── plum_log.json │ │ ├── plum_log_bark.json │ │ ├── plum_log_stripped.json │ │ ├── plum_log_stripped_bark.json │ │ ├── plum_plank.json │ │ ├── plum_sapling.json │ │ ├── red_marble.json │ │ ├── rice_plant.json │ │ ├── sorghum_plant.json │ │ ├── soybean_plant.json │ │ ├── stone_mill.json │ │ ├── stove.json │ │ ├── summer_radish_plant.json │ │ ├── vat.json │ │ ├── walnut_leaves.json │ │ ├── walnut_log.json │ │ ├── walnut_log_bark.json │ │ ├── walnut_log_stripped.json │ │ ├── walnut_log_stripped_bark.json │ │ ├── walnut_plank.json │ │ ├── walnut_sapling.json │ │ ├── white_marble.json │ │ └── white_radish_plant.json │ ├── recipes │ ├── bellows.json │ ├── dish.json │ ├── dough.json │ ├── knife_diamond.json │ ├── knife_gold.json │ ├── knife_iron.json │ ├── mill_millet.json │ ├── mill_rice.json │ ├── mill_wheat.json │ ├── paper_drying_rack.json │ ├── pot.json │ ├── pot_hero_assemble.json │ ├── pot_porridge.json │ ├── pot_rice.json │ ├── steamer_test.json │ ├── stone_mill.json │ ├── stove.json │ ├── vat.json │ └── wood_pulp.json │ └── tags │ ├── blocks │ ├── log_mulberry.json │ ├── log_peach.json │ ├── log_plum.json │ └── log_walnut.json │ └── items │ ├── knife.json │ ├── log_mulberry.json │ ├── log_peach.json │ ├── log_plum.json │ └── log_walnut.json └── main ├── java └── cx │ └── rain │ └── mc │ └── forgemod │ └── sinocraft │ ├── SinoCraft.java │ ├── api │ ├── SinoCraftAPI.java │ ├── block │ │ ├── EnumDrying.java │ │ ├── IModBlocks.java │ │ ├── IPlantType.java │ │ ├── ISinoBlocks.java │ │ ├── ITileEntityPot.java │ │ ├── ITileEntityStoneMill.java │ │ ├── ITileEntityStove.java │ │ ├── ITileEntityTeaTable.java │ │ ├── ITileEntityVat.java │ │ └── IWindEnergyReceiver.java │ ├── capability │ │ ├── CapabilityHeat.java │ │ ├── CapabilityME.java │ │ ├── CapabilityWaterPower.java │ │ ├── CapabilityWindEnergy.java │ │ ├── IHeat.java │ │ ├── IME.java │ │ ├── IWaterPower.java │ │ └── IWindEnergy.java │ ├── crafting │ │ ├── ICookingRecipe.java │ │ ├── ICookingRecipeBuilder.java │ │ ├── ICountIngredient.java │ │ ├── IExtendedRecipeInventory.java │ │ ├── IFluidIngredient.java │ │ ├── IMillRecipe.java │ │ ├── IMillRecipeBuilder.java │ │ ├── IModRecipeSerializer.java │ │ ├── ISinoRecipes.java │ │ ├── ISoakingRecipe.java │ │ ├── ISoakingRecipeBuilder.java │ │ ├── ISteamerRecipe.java │ │ ├── ISteamerRecipeBuilder.java │ │ └── package-info.java │ ├── item │ │ ├── IKnife.java │ │ ├── IModGroups.java │ │ ├── IModItems.java │ │ ├── IShaveable.java │ │ ├── ISinoItems.java │ │ ├── ShaveResult.java │ │ └── package-info.java │ ├── table │ │ ├── BaseTableElement.java │ │ ├── BaseTableItem.java │ │ ├── ScaleFunction.java │ │ ├── TableElementFactory.java │ │ └── TranslateFunction.java │ └── utility │ │ └── Lazy.java │ ├── api_impl │ ├── APIBlocks.java │ ├── APIGroups.java │ ├── APIItems.java │ ├── APIKnife.java │ ├── APIModBlocks.java │ ├── APIModItems.java │ ├── APIRecipes.java │ └── package-info.java │ ├── block │ ├── BlockBellows.java │ ├── BlockPaperDryingRack.java │ ├── BlockPot.java │ ├── BlockStoneMill.java │ ├── BlockStove.java │ ├── BlockTeaTable.java │ ├── BlockTeacup.java │ ├── BlockTeapot.java │ ├── BlockVat.java │ ├── ModBlockItems.java │ ├── ModBlockItems.java.bak │ ├── ModBlocks.java │ ├── ModBlocks.java.bak │ ├── base │ │ ├── BlockHorizontal.java │ │ └── package-info.java │ ├── marble │ │ ├── BlockMarble.java │ │ └── MarbleType.java │ ├── package-info.java │ ├── plant │ │ ├── BlockPlant.java │ │ ├── BlockPlantMulti.java │ │ ├── PlantType.java │ │ └── StageProperty.java │ ├── table │ │ ├── TableTeacup.java │ │ └── TableTeapot.java │ ├── tileentity │ │ ├── BaseTileEntityUpdatable.java │ │ ├── IItemContainer.java │ │ ├── MillItemHandler.java │ │ ├── ModTileEntities.java │ │ ├── ModTileEntities.java.bak │ │ ├── PotItemHandler.java │ │ ├── TileEntityBellows.java │ │ ├── TileEntityPot.java │ │ ├── TileEntityStoneMill.java │ │ ├── TileEntityStove.java │ │ ├── TileEntityTeaTable.java │ │ ├── TileEntityVat.java │ │ ├── VatFluidHandler.java │ │ ├── VatItemHandler.java │ │ └── package-info.java │ └── tree │ │ ├── BlockLeaves.java │ │ ├── BlockLeavesGrowable.java │ │ ├── BlockLog.java │ │ ├── BlockLogStrippable.java │ │ ├── BlockPlank.java │ │ ├── BlockSapling.java │ │ └── TreeType.java │ ├── capability │ ├── CapabilityTeacup.java │ ├── CapabilityTeapot.java │ ├── Heat.java │ ├── ME.java │ ├── ModCapabilities.java │ ├── SerializableStorage.java │ ├── WaterPower.java │ ├── WindEnergy.java │ ├── empty │ │ ├── NoHeat.java │ │ └── NoWind.java │ └── storage │ │ ├── HeatStorage.java │ │ ├── MEStorage.java │ │ ├── WaterPowerStorage.java │ │ └── WindEnergyStorage.java │ ├── client │ ├── ClientEventHandler.java │ ├── ClientTickEventHandler.java │ ├── RenderEventHandler.java │ ├── package-info.java │ └── renderer │ │ ├── entity │ │ ├── RendererBuffalo.java │ │ ├── model │ │ │ ├── ModelBuffalo.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── item │ │ ├── XuanPaperBakedModel.java │ │ ├── XuanPaperItemStackRenderer.java │ │ └── package-info.java │ │ ├── model │ │ └── armor │ │ │ └── ClothModel.java │ │ └── tileentity │ │ ├── TileEntityPotRender.java │ │ ├── TileEntityStoneMillRender.java │ │ ├── TileEntityTeaTableRender.java │ │ ├── TileEntityVatRender.java │ │ └── package-info.java │ ├── crafting │ ├── CookingRecipe.java │ ├── CookingSerializer.java │ ├── CountIngredient.java │ ├── FluidIngredient.java │ ├── MillRecipe.java │ ├── MillSerializer.java │ ├── ModRecipes.java │ ├── SoakingRecipe.java │ ├── SoakingSerializer.java │ ├── SteamerRecipe.java │ ├── SteamerSerializer.java │ └── package-info.java │ ├── data │ ├── DataGen.java │ ├── modifier │ │ ├── ModModifiers.java │ │ ├── SeedDropModifier.java │ │ └── serialize │ │ │ └── SeedDropSerialize.java │ ├── provider │ │ ├── ProviderAPI.java │ │ ├── ProviderAdvancement.java │ │ ├── ProviderBlockLootTable.java │ │ ├── ProviderBlockState.java │ │ ├── ProviderBlockTag.java │ │ ├── ProviderGlobalLootModifier.java │ │ ├── ProviderItemModel.java │ │ ├── ProviderItemTag.java │ │ ├── ProviderLootTable.java │ │ ├── ProviderRecipe.java │ │ ├── base │ │ │ ├── ProviderBaseAdvancement.java │ │ │ ├── ProviderBaseBlockLootTable.java │ │ │ ├── ProviderBaseLootTable.java │ │ │ ├── ProviderBaseRecipe.java │ │ │ ├── ProviderLanguage.java │ │ │ └── package-info.java │ │ ├── language │ │ │ ├── ProviderLanguageENUS.java │ │ │ └── ProviderLanguageZHCN.java │ │ ├── package-info.java │ │ └── src_provider │ │ │ ├── APIBlocksProvider.java │ │ │ ├── APIItemsProvider.java │ │ │ └── SRCNetworkProvider.java │ └── tag │ │ ├── TagBlock.java │ │ └── TagItem.java │ ├── entity │ ├── EntityRegister.java │ ├── ModEntities.java │ ├── ai │ │ └── goal │ │ │ └── FollowEmperorGoal.java │ ├── monster │ │ └── EntityTerraCotta.java │ └── passive │ │ ├── EntityBuffalo.java │ │ ├── EntityCarriage.java │ │ ├── EntityEmperor.java │ │ ├── EntityGoal.java │ │ └── package-info.java │ ├── event │ └── OnRightClick.java │ ├── fluid │ └── ModFluids.java │ ├── gui │ ├── GuiChineseBrush.java │ ├── container │ │ ├── ContainerChineseBrush.java │ │ ├── ContainerChineseBrushProvider.java │ │ ├── ModContainers.java │ │ └── package-info.java │ ├── package-info.java │ └── slot │ │ ├── SlotInk.java │ │ ├── SlotXuanPaperIn.java │ │ ├── SlotXuanPaperOut.java │ │ └── package-info.java │ ├── item │ ├── ItemChineseBrush.java │ ├── ItemClothHelmet.java │ ├── ItemHeroesAssemble.java │ ├── ItemKnife.java │ ├── ItemTeacup.java │ ├── ItemTeapot.java │ ├── ItemXuanPaper.java │ ├── ModGroups.java │ ├── ModItems.java │ ├── ModItems.java.bak │ ├── ModSpawnEggItem.java │ ├── base │ │ ├── ItemBucket.java │ │ ├── ItemSeed.java │ │ ├── ItemTooltiped.java │ │ ├── TableItem.java │ │ └── package-info.java │ ├── cloth │ │ ├── ItemCloth.java │ │ └── SinoCraftArmorMaterial.java │ ├── food │ │ ├── EnumFoods.java │ │ ├── ItemFood.java │ │ └── package-info.java │ ├── package-info.java │ └── shave │ │ ├── BlockShave.java │ │ ├── DefaultShaveable.java │ │ ├── TagShave.java │ │ └── package-info.java │ ├── network │ ├── BaseMessage.java │ ├── Networks.java │ └── packet │ │ ├── DrawPaperC2SPacket.java │ │ ├── GetRecipeC2SPacket.java │ │ ├── GetRecipeS2CPacket.java │ │ └── TeapotPacket.java │ ├── plugin │ ├── jei │ │ ├── JEISupport.java │ │ ├── category │ │ │ ├── CategoryHelper.java │ │ │ ├── CookingCategory.java │ │ │ ├── SoakingCategory.java │ │ │ ├── SteamerCategory.java │ │ │ └── package-info.java │ │ └── package-info.java │ ├── package-info.java │ └── waila │ │ ├── BellowsProvider.java │ │ ├── IWailaProvider.java │ │ ├── PotProvider.java │ │ ├── ProviderHelper.java │ │ ├── StoveProvider.java │ │ ├── TeaTableProvider.java │ │ ├── VatProvider.java │ │ └── WailaSupport.java │ ├── utility │ ├── CapabilityHelper.java │ ├── CollectionHelper.java │ ├── Constructor1.java │ ├── CraftingHelper.java │ ├── DebugHelper.java │ ├── FuelHelper.java │ ├── MathHelper.java │ ├── MouseHelper.java │ ├── PlayerSlot.java │ ├── ProtectedHelper.java │ ├── RenderHelper.java │ └── UpdateHelper.java │ └── world │ ├── ModFeatures.java │ ├── config │ └── FeatureConfigs.java │ └── tree │ ├── TreeMulberry.java │ ├── TreePeach.java │ ├── TreePlum.java │ └── TreeWalnut.java └── resources ├── META-INF └── mods.toml ├── assets └── sinocraft │ ├── book │ ├── pages │ │ ├── back_cover.json │ │ ├── cover.json │ │ ├── test_p1.json │ │ └── test_p2.json │ ├── test.json │ └── tutorial.json │ ├── desktop.ini │ ├── gen │ ├── block_items.toml │ ├── items.toml │ └── te.toml │ ├── models │ ├── block │ │ ├── bellows0.json │ │ ├── bellows1.json │ │ ├── bellows2.json │ │ ├── bellows3.json │ │ ├── bellows4.json │ │ ├── bellows5.json │ │ ├── bellows6.json │ │ ├── bellows7.json │ │ ├── desk.json │ │ ├── paper_drying_rack0.json │ │ ├── paper_drying_rack1.json │ │ ├── paper_drying_rack2.json │ │ ├── paper_drying_rack3.json │ │ ├── paper_drying_rack4.json │ │ ├── pot.json │ │ ├── stone_mill1.json │ │ ├── stone_mill10.json │ │ ├── stone_mill11.json │ │ ├── stone_mill12.json │ │ ├── stone_mill13.json │ │ ├── stone_mill14.json │ │ ├── stone_mill15.json │ │ ├── stone_mill16.json │ │ ├── stone_mill2.json │ │ ├── stone_mill3.json │ │ ├── stone_mill4.json │ │ ├── stone_mill5.json │ │ ├── stone_mill6.json │ │ ├── stone_mill7.json │ │ ├── stone_mill8.json │ │ ├── stone_mill9.json │ │ ├── stove_off.json │ │ ├── stove_on.json │ │ ├── teacup.json │ │ ├── teacup_with_tea.json │ │ ├── teapot.json │ │ ├── teapot_without_lid.json │ │ ├── teapot_without_lid_with_tea.json │ │ ├── vat.json │ │ ├── writing_brush_hanging0.json │ │ ├── writing_brush_hanging1.json │ │ ├── writing_brush_hanging2.json │ │ ├── writing_brush_hanging3.json │ │ ├── writing_brush_holder0.json │ │ ├── writing_brush_holder1.json │ │ ├── writing_brush_holder2.json │ │ └── writing_brush_holder3.json │ └── item │ │ ├── teapot.json │ │ └── teapot2.json │ └── textures │ ├── block │ ├── bellows.png │ ├── bellows_side.png │ ├── black_marble.png │ ├── celery_cabbage_stage_0.png │ ├── celery_cabbage_stage_1.png │ ├── celery_cabbage_stage_2.png │ ├── celery_cabbage_stage_3.png │ ├── chili_pepper_plant_stage_0.png │ ├── chili_pepper_plant_stage_1.png │ ├── chili_pepper_plant_stage_2.png │ ├── chili_pepper_plant_stage_3.png │ ├── chili_pepper_plant_stage_4.png │ ├── chili_pepper_plant_stage_5.png │ ├── chili_pepper_plant_stage_6.png │ ├── chili_pepper_plant_stage_7.png │ ├── chrysanthemum1.png │ ├── chrysanthemum2.png │ ├── cucumber_stage_0.png │ ├── cucumber_stage_1.png │ ├── cucumber_stage_2.png │ ├── cucumber_stage_3.png │ ├── cucurbit_stage_0.png │ ├── cucurbit_stage_1.png │ ├── cucurbit_stage_2.png │ ├── cucurbit_stage_3.png │ ├── eggplant_stage_0.png │ ├── eggplant_stage_1.png │ ├── eggplant_stage_2.png │ ├── eggplant_stage_3.png │ ├── eggplant_stage_4.png │ ├── eggplant_stage_5.png │ ├── eggplant_stage_6.png │ ├── eggplant_stage_7.png │ ├── embroidery │ │ ├── embroidery_0.png │ │ ├── embroidery_1.png │ │ ├── embroidery_2.png │ │ ├── embroidery_3.png │ │ ├── embroidery_4.png │ │ ├── embroidery_5.png │ │ └── embroidery_6.png │ ├── green_pepper_plant_stage_0.png │ ├── green_pepper_plant_stage_1.png │ ├── green_pepper_plant_stage_2.png │ ├── green_pepper_plant_stage_3.png │ ├── green_pepper_plant_stage_4.png │ ├── green_pepper_plant_stage_5.png │ ├── green_pepper_plant_stage_6.png │ ├── green_pepper_plant_stage_7.png │ ├── green_radish_plant_stage_0.png │ ├── green_radish_plant_stage_1.png │ ├── green_radish_plant_stage_2.png │ ├── green_radish_plant_stage_3.png │ ├── millet_stage_0.png │ ├── millet_stage_1.png │ ├── millet_stage_2.png │ ├── millet_stage_3.png │ ├── millet_stage_4.png │ ├── millet_stage_5.png │ ├── millet_stage_6.png │ ├── millet_stage_7.png │ ├── mulberry_leaves.png │ ├── mulberry_log_end.png │ ├── mulberry_log_side.png │ ├── mulberry_log_stripped.png │ ├── mulberry_plank.png │ ├── mulberry_sapling.png │ ├── paper_drying_rack_board0.png │ ├── paper_drying_rack_board1.png │ ├── paper_drying_rack_board2.png │ ├── paper_drying_rack_board3.png │ ├── paper_drying_rack_board4.png │ ├── paper_drying_rack_column.png │ ├── peach_leaves.png │ ├── peach_leaves_mature.png │ ├── peach_log_end.png │ ├── peach_log_side.png │ ├── peach_log_stripped.png │ ├── peach_plank.png │ ├── peach_sapling.png │ ├── plum_blossom.png │ ├── plum_blossom_link.png │ ├── plum_leaves.png │ ├── plum_log_end.png │ ├── plum_log_side.png │ ├── plum_log_stripped.png │ ├── plum_plank.png │ ├── plum_sapling.png │ ├── pot_0.png │ ├── pot_1.png │ ├── rattan.png │ ├── red_marble.png │ ├── rice_stage_bottom_0.png │ ├── rice_stage_bottom_1.png │ ├── rice_stage_bottom_2.png │ ├── rice_stage_bottom_3.png │ ├── rice_stage_bottom_4.png │ ├── rice_stage_bottom_5.png │ ├── rice_stage_bottom_6.png │ ├── rice_stage_bottom_7.png │ ├── rice_stage_top_0.png │ ├── rice_stage_top_1.png │ ├── rice_stage_top_2.png │ ├── rice_stage_top_3.png │ ├── rice_stage_top_4.png │ ├── rice_stage_top_5.png │ ├── rice_stage_top_6.png │ ├── rice_stage_top_7.png │ ├── sorghum_stage_bottom_0.png │ ├── sorghum_stage_bottom_1.png │ ├── sorghum_stage_bottom_2.png │ ├── sorghum_stage_bottom_3.png │ ├── sorghum_stage_top_0.png │ ├── sorghum_stage_top_1.png │ ├── sorghum_stage_top_2.png │ ├── sorghum_stage_top_3.png │ ├── soybean_stage_0.png │ ├── soybean_stage_1.png │ ├── soybean_stage_2.png │ ├── soybean_stage_3.png │ ├── stone_mill1_bottom.png │ ├── stone_mill1_side.png │ ├── stone_mill1_top.png │ ├── stone_mill2_side.png │ ├── stone_mill2_top.png │ ├── stove_back.png │ ├── stove_bottom.png │ ├── stove_front_off.png │ ├── stove_front_on.png │ ├── stove_side.png │ ├── stove_up_off.png │ ├── stove_up_on.png │ ├── summer_radish_plant_stage_0.png │ ├── summer_radish_plant_stage_1.png │ ├── summer_radish_plant_stage_2.png │ ├── summer_radish_plant_stage_3.png │ ├── tea │ │ ├── cup.png │ │ ├── cup_with_tea.png │ │ ├── teapot.png │ │ ├── teapot2.png │ │ ├── teapot_without_lid.png │ │ └── teapot_without_lid_with_tea.png │ ├── vat_bottom.png │ ├── vat_side.png │ ├── vat_top.png │ ├── walnut_leaves.png │ ├── walnut_log_end.png │ ├── walnut_log_side.png │ ├── walnut_log_stripped.png │ ├── walnut_plank.png │ ├── walnut_sapling.png │ ├── white_marble.png │ ├── white_radish_plant_stage_0.png │ ├── white_radish_plant_stage_1.png │ ├── white_radish_plant_stage_2.png │ ├── white_radish_plant_stage_3.png │ ├── wood_pulp_flow.png │ ├── wood_pulp_flow.png.mcmeta │ ├── wood_pulp_still.png │ ├── wood_pulp_still.png.mcmeta │ ├── writing_brush_wood.png │ └── writing_pen.png │ ├── entity │ └── ox.png │ ├── gui │ ├── advancements │ │ └── backgrounds │ │ │ └── white_marble.png │ ├── book │ │ └── craft_back.png │ ├── chinese_brush.png │ ├── jei │ │ ├── cooking.png │ │ ├── cooking.psd │ │ ├── recipes.png │ │ ├── soaking.png │ │ ├── soaking.psd │ │ ├── steamer.png │ │ └── steamer.psd │ ├── tutorial_book.png │ └── tutorial_book_2.png │ ├── item │ ├── adust_food.png │ ├── bark.png │ ├── blood_blackdog.png │ ├── blood_chiken.png │ ├── blood_cow.png │ ├── blood_pig.png │ ├── blood_player.png │ ├── blood_sheep.png │ ├── blood_villager.png │ ├── bowl.png │ ├── bowl_noodles.png │ ├── bowl_rice.png │ ├── bowl_with_porridge.png │ ├── bowl_with_rice.png │ ├── bowl_with_water.png │ ├── cabbage.png │ ├── cabbage_seed.png │ ├── ceramic_bowl.png │ ├── charcoal_black.png │ ├── charred_food.png │ ├── chili_pepper.png │ ├── chili_pepper_seed.png │ ├── chinese_brush.png │ ├── chinese_brush_with_ink.png │ ├── chinese_ink.png │ ├── chirping_wildgoose.png │ ├── chirping_wildgoose_inhand.png │ ├── cooked_dumpling.png │ ├── cucumber.png │ ├── cucurbit.png │ ├── cucurbit_dry.png │ ├── cucurbit_spirits.png │ ├── dish.png │ ├── dough.png │ ├── dumpling.png │ ├── dumpling_wrapper.png │ ├── eggplant.png │ ├── eggplant_seed.png │ ├── embroidery.png │ ├── empty_xuan_paper.png │ ├── flour.png │ ├── green_pepper.png │ ├── green_pepper_seed.png │ ├── green_pepper_shredded_meat.png │ ├── green_radish.png │ ├── heroes_assemble.png │ ├── ink_stone.png │ ├── jade.png │ ├── knife_diamond.png │ ├── knife_gold.png │ ├── knife_iron.png │ ├── mahogany_sapling.png │ ├── millet.png │ ├── millet_seed.png │ ├── paste.png │ ├── peach.png │ ├── plate.png │ ├── plough.png │ ├── rice.png │ ├── rice_seed.png │ ├── scabbard.png │ ├── seven_stars_precious_blade.png │ ├── seven_stars_precious_blade_inside.png │ ├── seven_stars_precious_blade_without_scabbard.png │ ├── sevenstars_preciousblade.png │ ├── sevenstars_preciousblade_inhand.png │ ├── sevenstars_preciousblade_outsidescabbard.png │ ├── sevenstars_preciousblade_scabbard.png │ ├── sevenstars_preciousblade_withscabbard.png │ ├── silkworm.png │ ├── sorghum.png │ ├── sorghum_seed.png │ ├── soybean.png │ ├── soybean_curd.png │ ├── soybean_milk.png │ ├── spirits.png │ ├── stuffing.png │ ├── summer_radish.png │ ├── tea_leaf.png │ ├── teacup.png │ ├── teapot.png │ ├── teapot2.png │ ├── teapot2.png.mcmeta │ ├── tofu.png │ ├── tutorial_book.png │ ├── walnut_eaglebeak.png │ ├── walnut_iron.png │ ├── walnut_lantern.png │ ├── walnut_scorpion.png │ ├── walnut_shuttle.png │ ├── walnut_tigerpeanut.png │ ├── walnut_unpeeled.png │ ├── walnut_whitelion.png │ ├── white_radish.png │ ├── zhuge_machinecrossbow_pulling_0.png │ ├── zhuge_machinecrossbow_pulling_1.png │ ├── zhuge_machinecrossbow_pulling_2.png │ └── zhuge_machinecrossbow_standby.png │ └── model │ └── blocks │ └── desk_top.png └── pack.mcmeta /README.md: -------------------------------------------------------------------------------- 1 | # 华夏工艺 / SinoCraft 2 | 有服章之美谓之华,有礼仪之大谓之夏。 3 | A minecraft mod with chinese crafting. 4 | -------------------------------------------------------------------------------- /buildSrc/src/main/java/mc/sinocraft/gradle_plugin/GeneratorExtension.java: -------------------------------------------------------------------------------- 1 | package mc.sinocraft.gradle_plugin; 2 | 3 | public class GeneratorExtension { 4 | 5 | public boolean debug = false; 6 | } 7 | -------------------------------------------------------------------------------- /buildSrc/src/main/java/mc/sinocraft/gradle_plugin/ParameterizedName.java: -------------------------------------------------------------------------------- 1 | package mc.sinocraft.gradle_plugin; 2 | 3 | public class ParameterizedName { 4 | } 5 | -------------------------------------------------------------------------------- /buildSrc/src/main/java/mc/sinocraft/gradle_plugin/PluginLogger.java: -------------------------------------------------------------------------------- 1 | package mc.sinocraft.gradle_plugin; 2 | 3 | public class PluginLogger { 4 | 5 | public void printLog(String message) { 6 | System.out.println(message); 7 | } 8 | 9 | public void printDetailedLog(String message) { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /buildSrc/src/main/java/mc/sinocraft/gradle_plugin/PluginLoggerDebug.java: -------------------------------------------------------------------------------- 1 | package mc.sinocraft.gradle_plugin; 2 | 3 | public class PluginLoggerDebug extends PluginLogger { 4 | 5 | @Override 6 | public void printDetailedLog(String message) { 7 | System.out.println(message); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /commit_rule.md: -------------------------------------------------------------------------------- 1 | 准则: 2 | 3 | 1. 对你职责之内的代码进行尽量小的修改 4 | 2. 不要修改在你职责之外的代码,如需修改交给他人 5 | 3. 事先声明你对代码的修改范围(比如所有与xxx物品相关的代码) 6 | 4. 禁止修改在他人修改范围内的代码 7 | 5. 对于自己无法实现的需求,进行声明,推送到单独的分支并由其他人接手 8 | 6. 提交时,在pr中写出你实现的需求 9 | 7. 未完成时,禁止pr -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Jun 27 06:26:56 CST 2020 2 | distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip 3 | distributionBase=GRADLE_USER_HOME 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /libs/dev/NBTEdit/0.10.0/NBTEdit-0.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/libs/dev/NBTEdit/0.10.0/NBTEdit-0.10.0.jar -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/black_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/black_marble" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/mulberry_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/mulberry_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/mulberry_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/mulberry_log_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/mulberry_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/mulberry_log_stripped_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/mulberry_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/mulberry_plank" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/mulberry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/mulberry_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "mature=false": { 4 | "model": "sinocraft:block/peach_leaves" 5 | }, 6 | "mature=true": { 7 | "model": "sinocraft:block/peach_leaves_mature" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "axis=x": { 4 | "model": "sinocraft:block/peach_log", 5 | "x": 90, 6 | "y": 90 7 | }, 8 | "axis=y": { 9 | "model": "sinocraft:block/peach_log", 10 | "y": 90 11 | }, 12 | "axis=z": { 13 | "model": "sinocraft:block/peach_log", 14 | "x": 90 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/peach_log_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/peach_log_stripped_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/peach_plank" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/peach_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/peach_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/plum_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "axis=x": { 4 | "model": "sinocraft:block/plum_log", 5 | "x": 90, 6 | "y": 90 7 | }, 8 | "axis=y": { 9 | "model": "sinocraft:block/plum_log", 10 | "y": 90 11 | }, 12 | "axis=z": { 13 | "model": "sinocraft:block/plum_log", 14 | "x": 90 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/plum_log_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/plum_log_stripped_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/plum_plank" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/plum_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/plum_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/pot" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/red_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/red_marble" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/tea_table.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "minecraft:block/air" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/teacup.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "tea=false": { 4 | "model": "sinocraft:block/teacup" 5 | }, 6 | "tea=true": { 7 | "model": "sinocraft:block/teacup_with_tea" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/teapot.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "fluid=0": { 4 | "model": "sinocraft:block/teapot" 5 | }, 6 | "fluid=1": { 7 | "model": "sinocraft:block/teapot_without_lid" 8 | }, 9 | "fluid=2": { 10 | "model": "sinocraft:block/teapot_without_lid_with_tea" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/vat.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/vat" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/walnut_leaves" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "axis=x": { 4 | "model": "sinocraft:block/walnut_log", 5 | "x": 90, 6 | "y": 90 7 | }, 8 | "axis=y": { 9 | "model": "sinocraft:block/walnut_log", 10 | "y": 90 11 | }, 12 | "axis=z": { 13 | "model": "sinocraft:block/walnut_log", 14 | "x": 90 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/walnut_log_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/walnut_log_stripped_bark" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/walnut_plank" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/walnut_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/walnut_sapling" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/white_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/white_marble" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/blockstates/wood_pulp_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "sinocraft:block/wood_pump" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/black_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/black_marble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/celery_cabbage_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/celery_cabbage_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/celery_cabbage_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/celery_cabbage_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/celery_cabbage_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/celery_cabbage_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/celery_cabbage_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/celery_cabbage_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/chili_pepper_plant_stage_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/chili_pepper_plant_stage_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/eggplant_stage_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/eggplant_stage_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_pepper_plant_stage_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_pepper_plant_stage_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_radish_plant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_radish_plant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_radish_plant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_radish_plant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_radish_plant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_radish_plant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/green_radish_plant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/green_radish_plant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/millet_stage_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/millet_stage_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/mulberry_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/mulberry_log_side", 5 | "end": "sinocraft:block/mulberry_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/mulberry_log_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/mulberry_log_stripped", 5 | "end": "sinocraft:block/mulberry_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/mulberry_log_stripped" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/mulberry_plank" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/mulberry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "sinocraft:block/mulberry_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/peach_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_leaves_mature.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/peach_leaves_mature" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/peach_log_side", 5 | "end": "sinocraft:block/peach_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/peach_log_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/peach_log_stripped", 5 | "end": "sinocraft:block/peach_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/peach_log_stripped" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/peach_plank" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/peach_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "sinocraft:block/peach_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/plum_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/plum_log_side", 5 | "end": "sinocraft:block/plum_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/plum_log_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/plum_log_stripped", 5 | "end": "sinocraft:block/plum_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/plum_log_stripped" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/plum_plank" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/plum_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "sinocraft:block/plum_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/red_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/red_marble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_bottom_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_bottom_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_4" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_5" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_6" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/rice_stage_top_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/rice_stage_top_7" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_bottom_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_bottom_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_bottom_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_bottom_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_bottom_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_bottom_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_bottom_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_bottom_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_top_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_top_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_top_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_top_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_top_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_top_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/sorghum_stage_top_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/sorghum_stage_top_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/soybean_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/soybean_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/soybean_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/soybean_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/soybean_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/soybean_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/soybean_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/soybean_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/summer_radish_plant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/summer_radish_plant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/summer_radish_plant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/summer_radish_plant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/summer_radish_plant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/summer_radish_plant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/summer_radish_plant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/summer_radish_plant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/walnut_leaves" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/walnut_log_side", 5 | "end": "sinocraft:block/walnut_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/walnut_log_side" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_column", 3 | "textures": { 4 | "side": "sinocraft:block/walnut_log_stripped", 5 | "end": "sinocraft:block/walnut_log_end" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/walnut_log_stripped" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/walnut_plank" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/walnut_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "textures": { 4 | "cross": "sinocraft:block/walnut_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/white_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "sinocraft:block/white_marble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/white_radish_plant_stage_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/white_radish_plant_stage_0" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/white_radish_plant_stage_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/white_radish_plant_stage_1" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/white_radish_plant_stage_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/white_radish_plant_stage_2" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/white_radish_plant_stage_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "textures": { 4 | "crop": "sinocraft:block/white_radish_plant_stage_3" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/block/wood_pump.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": { 3 | "particle": "sinocraft:block/wood_pulp_still" 4 | } 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/adust_food.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/adust_food" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/bark" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bellows.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/bellows0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/black_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/black_marble" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bowl_with_porridge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/bowl_with_porridge" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bowl_with_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/bowl_with_rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bowl_with_water.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/bowl_with_water" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/bucket_wood_pulp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "forge:item/bucket_drip", 3 | "loader": "forge:bucket", 4 | "fluid": "sinocraft:wood_pulp" 5 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/cabbage.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/cabbage" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/cabbage_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/cabbage_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/charcoal_black.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/charcoal_black" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/chili_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/chili_pepper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/chili_pepper_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/chili_pepper_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/chinese_brush.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/chinese_brush" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/chinese_ink.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/chinese_ink" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/cooked_dumpling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/cooked_dumpling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/dish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/dish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/dough" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/dumpling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/dumpling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/dumpling_wrapper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/dumpling_wrapper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/eggplant.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/eggplant" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/eggplant_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/eggplant_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/empty_xuan_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/empty_xuan_paper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/flour.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/flour" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/green_pepper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/green_pepper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/green_pepper_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/green_pepper_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/green_radish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/green_radish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/heroes_assemble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/heroes_assemble" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/ink_stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/ink_stone" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/knife_diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/knife_diamond" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/knife_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/knife_gold" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/knife_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/knife_iron" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/millet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/millet" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/millet_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/millet_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_log_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_log_stripped" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_log_stripped_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/mulberry_plank" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/mulberry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:block/mulberry_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/paper_drying_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/paper_drying_rack0" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/peach" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_log_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_log_stripped" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_log_stripped_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/peach_plank" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/peach_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:block/peach_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_log_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_log_stripped" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_log_stripped_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/plum_plank" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/plum_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:block/plum_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/pot" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/red_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/red_marble" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/rice" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/rice_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/rice_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/silkworm.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/silkworm" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/sorghum.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/sorghum" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/sorghum_seed.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/sorghum_seed" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/soybean.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/soybean" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/spawn_egg_buffalo.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_spawn_egg" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/stone_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/stone_mill1" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/stove_off" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/stuffing.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/stuffing" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/summer_radish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/summer_radish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/tea_leaf.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/tea_leaf" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/teacup.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/teacup" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/vat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/vat" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_leaves" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_log" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_log_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_log_stripped" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_log_stripped_bark" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/walnut_plank" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/walnut_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:block/walnut_sapling" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/white_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "sinocraft:block/white_marble" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/white_radish.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/white_radish" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/sinocraft/models/item/xuan_paper.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "sinocraft:item/empty_xuan_paper" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:peach_leaves", 5 | "sinocraft:walnut_leaves", 6 | "sinocraft:plum_leaves", 7 | "sinocraft:mulberry_leaves" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#sinocraft:log_peach", 5 | "#sinocraft:log_walnut", 6 | "#sinocraft:log_plum", 7 | "#sinocraft:log_mulberry" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:peach_plank", 5 | "sinocraft:walnut_log", 6 | "sinocraft:plum_log", 7 | "sinocraft:mulberry_log" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#sinocraft:log_peach", 5 | "#sinocraft:log_walnut", 6 | "#sinocraft:log_plum", 7 | "#sinocraft:log_mulberry" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/planks.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:peach_plank", 5 | "sinocraft:walnut_log", 6 | "sinocraft:plum_log", 7 | "sinocraft:mulberry_log" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/black_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "black_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:black_marble" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_mulberry", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_log" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_mulberry_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_log_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_mulberry_stripped", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_log_stripped" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_mulberry_stripped_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_log_stripped_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "plank_mulberry", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_plank" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/mulberry_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "sapling_mulberry", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:mulberry_sapling" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/paper_drying_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "black_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:paper_drying_rack" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_peach", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_log" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_peach_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_log_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_peach_stripped", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_log_stripped" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_peach_stripped_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_log_stripped_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "plank_peach", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_plank" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/peach_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "sapling_peach", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:peach_sapling" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_plum", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_log" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_plum_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_log_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_plum_stripped", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_log_stripped" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_plum_stripped_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_log_stripped_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "plank_plum", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_plank" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/plum_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "sapling_plum", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:plum_sapling" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/red_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "red_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:red_marble" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/stone_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "black_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:stone_mill" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "black_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:stove" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/vat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "vat", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:vat" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_log.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_walnut", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_log" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_log_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_walnut_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_log_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_log_stripped.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_walnut_stripped", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_log_stripped" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_log_stripped_bark.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "log_walnut_stripped_skin", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_log_stripped_bark" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_plank.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "plank_walnut", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_plank" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/walnut_sapling.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "sapling_walnut", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:walnut_sapling" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/loot_tables/blocks/white_marble.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "name": "white_marble", 6 | "rolls": 1, 7 | "entries": [ 8 | { 9 | "type": "minecraft:item", 10 | "name": "sinocraft:white_marble" 11 | } 12 | ] 13 | } 14 | ] 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/dish.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "BBB" 5 | ], 6 | "key": { 7 | "B": { 8 | "item": "minecraft:brick" 9 | } 10 | }, 11 | "result": { 12 | "item": "sinocraft:dish", 13 | "count": 2 14 | } 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/dough.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:soaking", 3 | "time": 400, 4 | "ingredients": { 5 | "item": { 6 | "item": "sinocraft:flour", 7 | "count": 2 8 | }, 9 | "fluid": "minecraft:water" 10 | }, 11 | "results": { 12 | "item": "sinocraft:dough" 13 | } 14 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/knife_diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " M", 5 | " M ", 6 | "S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:stick" 11 | }, 12 | "M": { 13 | "item": "minecraft:diamond" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:knife_diamond" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/knife_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " M", 5 | " M ", 6 | "S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:stick" 11 | }, 12 | "M": { 13 | "item": "minecraft:gold_ingot" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:knife_gold" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/knife_iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " M", 5 | " M ", 6 | "S " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:stick" 11 | }, 12 | "M": { 13 | "item": "minecraft:iron_ingot" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:knife_iron" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/mill_millet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:mill", 3 | "input": { 4 | "item": "sinocraft:millet_seed" 5 | }, 6 | "result": "sinocraft:millet", 7 | "time": 20 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/mill_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:mill", 3 | "input": { 4 | "item": "sinocraft:rice_seed" 5 | }, 6 | "result": "sinocraft:rice", 7 | "time": 20 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/mill_wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:mill", 3 | "input": { 4 | "item": "minecraft:wheat" 5 | }, 6 | "result": "sinocraft:flour", 7 | "time": 20 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/paper_drying_rack.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " S", 5 | " Ss", 6 | "S s" 7 | ], 8 | "key": { 9 | "S": { 10 | "tag": "minecraft:slabs" 11 | }, 12 | "s": { 13 | "item": "minecraft:stick" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:paper_drying_rack" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/pot.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "I I", 5 | "III" 6 | ], 7 | "key": { 8 | "I": { 9 | "item": "minecraft:iron_ingot" 10 | } 11 | }, 12 | "result": { 13 | "item": "sinocraft:pot" 14 | } 15 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/steamer_test.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:steamer", 3 | "time": 100, 4 | "ingredient": { 5 | "item": "minecraft:apple" 6 | }, 7 | "result": "minecraft:acacia_log", 8 | "adust": "sinocraft:adust_food", 9 | "heat": [ 10 | 10, 11 | 100 12 | ] 13 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/stone_mill.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | " ", 5 | "SSs", 6 | "SS " 7 | ], 8 | "key": { 9 | "S": { 10 | "item": "minecraft:smooth_stone_slab" 11 | }, 12 | "s": { 13 | "item": "minecraft:stick" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:stone_mill" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/stove.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "BBB", 5 | "B B", 6 | "BFB" 7 | ], 8 | "key": { 9 | "B": { 10 | "item": "minecraft:brick" 11 | }, 12 | "F": { 13 | "item": "minecraft:furnace" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:stove" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/vat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "pattern": [ 4 | "W W", 5 | "W W", 6 | "WSW" 7 | ], 8 | "key": { 9 | "W": { 10 | "tag": "minecraft:planks" 11 | }, 12 | "S": { 13 | "tag": "minecraft:slabs" 14 | } 15 | }, 16 | "result": { 17 | "item": "sinocraft:vat" 18 | } 19 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/recipes/wood_pulp.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sinocraft:soaking", 3 | "time": 400, 4 | "ingredients": { 5 | "item": { 6 | "item": "sinocraft:bark", 7 | "count": 3 8 | }, 9 | "fluid": "minecraft:water" 10 | }, 11 | "results": { 12 | "fluid": "sinocraft:wood_pulp" 13 | } 14 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/blocks/log_mulberry.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:mulberry_log", 5 | "sinocraft:mulberry_log_bark", 6 | "sinocraft:mulberry_log_stripped", 7 | "sinocraft:mulberry_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/blocks/log_peach.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:peach_log", 5 | "sinocraft:peach_log_bark", 6 | "sinocraft:peach_log_stripped", 7 | "sinocraft:peach_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/blocks/log_plum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:plum_log", 5 | "sinocraft:plum_log_bark", 6 | "sinocraft:plum_log_stripped", 7 | "sinocraft:plum_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/blocks/log_walnut.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:walnut_log", 5 | "sinocraft:walnut_log_bark", 6 | "sinocraft:walnut_log_stripped", 7 | "sinocraft:walnut_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/items/knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:knife_iron", 5 | "sinocraft:knife_gold", 6 | "sinocraft:knife_diamond" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/items/log_mulberry.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:mulberry_log", 5 | "sinocraft:mulberry_log_bark", 6 | "sinocraft:mulberry_log_stripped", 7 | "sinocraft:mulberry_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/items/log_peach.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:peach_log", 5 | "sinocraft:peach_log_bark", 6 | "sinocraft:peach_log_stripped", 7 | "sinocraft:peach_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/items/log_plum.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:plum_log", 5 | "sinocraft:plum_log_bark", 6 | "sinocraft:plum_log_stripped", 7 | "sinocraft:plum_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/sinocraft/tags/items/log_walnut.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "sinocraft:walnut_log", 5 | "sinocraft:walnut_log_bark", 6 | "sinocraft:walnut_log_stripped", 7 | "sinocraft:walnut_log_stripped_bark" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/crafting/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.api.crafting; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/item/IModGroups.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.api.item; 2 | 3 | import net.minecraft.item.ItemGroup; 4 | 5 | public interface IModGroups { 6 | 7 | ItemGroup blocks(); 8 | ItemGroup agriculture(); 9 | ItemGroup misc(); 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/item/IShaveable.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.api.item; 2 | 3 | import net.minecraft.block.BlockState; 4 | import net.minecraft.item.ItemUseContext; 5 | 6 | public interface IShaveable { 7 | ShaveResult onShave(BlockState state, ItemUseContext context); 8 | } 9 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/item/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.api.item; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/table/ScaleFunction.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.api.table; 2 | 3 | @FunctionalInterface 4 | public interface ScaleFunction { 5 | void scale(float x, float y, float z); 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/table/TableElementFactory.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.api.table; 2 | 3 | public interface TableElementFactory { 4 | BaseTableElement create(double x, double y, double z); 5 | } 6 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api/table/TranslateFunction.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.api.table; 2 | 3 | @FunctionalInterface 4 | public interface TranslateFunction { 5 | void translate(double x, double y, double z); 6 | } 7 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/api_impl/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.api_impl; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/block/base/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.block.base; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/block/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.block; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/block/tileentity/IItemContainer.java: -------------------------------------------------------------------------------- 1 | package cx.rain.mc.forgemod.sinocraft.block.tileentity; 2 | 3 | import net.minecraft.item.ItemStack; 4 | import net.minecraft.util.NonNullList; 5 | 6 | public interface IItemContainer { 7 | public NonNullList getItems(); 8 | 9 | public int getCount(); 10 | 11 | public int getCapacity(); 12 | } 13 | -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/block/tileentity/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.block.tileentity; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/client/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.client; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/client/renderer/entity/model/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.client.renderer.entity.model; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/client/renderer/entity/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.client.renderer.entity; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/client/renderer/item/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.client.renderer.item; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/client/renderer/tileentity/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.client.renderer.tileentity; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/crafting/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.crafting; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/data/provider/base/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.data.provider.base; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/data/provider/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.data.provider; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/entity/passive/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.entity.passive; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/gui/container/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.gui.container; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/gui/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.gui; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/gui/slot/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.gui.slot; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/item/base/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.item.base; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/item/food/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.item.food; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/item/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.item; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/item/shave/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.item.shave; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/plugin/jei/category/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.plugin.jei.category; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/plugin/jei/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.plugin.jei; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/java/cx/rain/mc/forgemod/sinocraft/plugin/package-info.java: -------------------------------------------------------------------------------- 1 | @ParametersAreNonnullByDefault 2 | @MethodsReturnNonnullByDefault 3 | package cx.rain.mc.forgemod.sinocraft.plugin; 4 | 5 | import mcp.MethodsReturnNonnullByDefault; 6 | 7 | import javax.annotation.ParametersAreNonnullByDefault; -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/book/pages/back_cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "background": "sinocraft:tutorial_book_2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/book/pages/cover.json: -------------------------------------------------------------------------------- 1 | { 2 | "background": "sinocraft:tutorial_book_2" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/book/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "sinocraft:back_cover", 4 | "sinocraft:test_p2", 5 | "sinocraft:test_p1", 6 | "sinocraft:cover" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/book/tutorial.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | "sinocraft:cover", 4 | "sinocraft:test_p1", 5 | "sinocraft:test_p2", 6 | "sinocraft:back_cover" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/desktop.ini: -------------------------------------------------------------------------------- 1 | [ViewState] 2 | Mode= 3 | Vid= 4 | FolderType=Pictures 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/gen/te.toml: -------------------------------------------------------------------------------- 1 | [TileEntityPot] 2 | name = "IRON_POT" 3 | id = "iron_pot" 4 | block = "POT" 5 | -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/bellows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/bellows.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/bellows_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/bellows_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/black_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/black_marble.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/celery_cabbage_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chili_pepper_plant_stage_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chrysanthemum1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chrysanthemum1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/chrysanthemum2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/chrysanthemum2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucumber_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucumber_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucumber_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucumber_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucumber_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucumber_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucumber_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucumber_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/cucurbit_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/eggplant_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/eggplant_stage_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/embroidery/embroidery_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_pepper_plant_stage_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/green_radish_plant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/millet_stage_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/millet_stage_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_log_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_log_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_log_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_log_stripped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_log_stripped.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_plank.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/mulberry_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/mulberry_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_board4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/paper_drying_rack_column.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_leaves_mature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_leaves_mature.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_log_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_log_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_log_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_log_stripped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_log_stripped.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_plank.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/peach_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/peach_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_blossom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_blossom.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_blossom_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_blossom_link.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_log_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_log_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_log_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_log_stripped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_log_stripped.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_plank.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/plum_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/plum_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/pot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/pot_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/pot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/pot_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rattan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rattan.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/red_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/red_marble.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_bottom_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_4.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_5.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_6.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/rice_stage_top_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/rice_stage_top_7.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_bottom_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/sorghum_stage_top_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/soybean_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/soybean_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/soybean_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/soybean_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/soybean_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/soybean_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/soybean_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/soybean_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stone_mill1_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stone_mill1_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stone_mill1_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stone_mill1_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stone_mill1_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stone_mill1_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stone_mill2_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stone_mill2_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stone_mill2_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stone_mill2_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_front_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_front_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_front_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_front_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_up_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_up_off.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/stove_up_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/stove_up_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/summer_radish_plant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/cup.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/cup_with_tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/cup_with_tea.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/teapot.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/teapot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/teapot2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/teapot_without_lid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/teapot_without_lid.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/tea/teapot_without_lid_with_tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/tea/teapot_without_lid_with_tea.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/vat_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/vat_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/vat_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/vat_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/vat_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/vat_top.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_log_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_log_end.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_log_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_log_side.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_log_stripped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_log_stripped.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_plank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_plank.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/walnut_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/walnut_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/white_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/white_marble.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/white_radish_plant_stage_3.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/wood_pulp_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/wood_pulp_flow.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/wood_pulp_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/wood_pulp_still.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/wood_pulp_still.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/wood_pulp_still.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 20 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/writing_brush_wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/writing_brush_wood.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/block/writing_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/block/writing_pen.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/entity/ox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/entity/ox.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/advancements/backgrounds/white_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/advancements/backgrounds/white_marble.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/book/craft_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/book/craft_back.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/chinese_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/chinese_brush.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/cooking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/cooking.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/cooking.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/cooking.psd -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/recipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/recipes.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/soaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/soaking.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/soaking.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/soaking.psd -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/steamer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/steamer.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/jei/steamer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/jei/steamer.psd -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/tutorial_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/tutorial_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/gui/tutorial_book_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/gui/tutorial_book_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/adust_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/adust_food.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bark.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_blackdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_blackdog.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_chiken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_chiken.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_cow.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_pig.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_player.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_sheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_sheep.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/blood_villager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/blood_villager.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl_noodles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl_noodles.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl_with_porridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl_with_porridge.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl_with_rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl_with_rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/bowl_with_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/bowl_with_water.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cabbage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cabbage.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cabbage_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cabbage_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/ceramic_bowl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/ceramic_bowl.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/charcoal_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/charcoal_black.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/charred_food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/charred_food.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chili_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chili_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chili_pepper_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chili_pepper_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chinese_brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chinese_brush.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chinese_brush_with_ink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chinese_brush_with_ink.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chinese_ink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chinese_ink.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chirping_wildgoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chirping_wildgoose.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/chirping_wildgoose_inhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/chirping_wildgoose_inhand.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cooked_dumpling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cooked_dumpling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cucumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cucumber.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cucurbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cucurbit.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cucurbit_dry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cucurbit_dry.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/cucurbit_spirits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/cucurbit_spirits.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/dish.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/dough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/dough.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/dumpling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/dumpling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/dumpling_wrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/dumpling_wrapper.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/eggplant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/eggplant.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/eggplant_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/eggplant_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/embroidery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/embroidery.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/empty_xuan_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/empty_xuan_paper.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/flour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/flour.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/green_pepper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/green_pepper.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/green_pepper_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/green_pepper_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/green_pepper_shredded_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/green_pepper_shredded_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/green_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/green_radish.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/heroes_assemble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/heroes_assemble.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/ink_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/ink_stone.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/jade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/jade.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/knife_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/knife_diamond.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/knife_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/knife_gold.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/knife_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/knife_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/mahogany_sapling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/mahogany_sapling.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/millet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/millet.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/millet_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/millet_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/paste.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/peach.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/plate.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/plough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/plough.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/rice.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/rice_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/rice_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/scabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/scabbard.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade_inside.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade_without_scabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/seven_stars_precious_blade_without_scabbard.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_inhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_inhand.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_outsidescabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_outsidescabbard.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_scabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_scabbard.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_withscabbard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sevenstars_preciousblade_withscabbard.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/silkworm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/silkworm.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sorghum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sorghum.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/sorghum_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/sorghum_seed.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/soybean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/soybean.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/soybean_curd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/soybean_curd.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/soybean_milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/soybean_milk.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/spirits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/spirits.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/stuffing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/stuffing.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/summer_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/summer_radish.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/tea_leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/tea_leaf.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/teacup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/teacup.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/teapot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/teapot.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/teapot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/teapot2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/teapot2.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 25 4 | } 5 | } -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/tofu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/tofu.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/tutorial_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/tutorial_book.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_eaglebeak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_eaglebeak.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_iron.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_scorpion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_scorpion.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_shuttle.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_tigerpeanut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_tigerpeanut.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_unpeeled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_unpeeled.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/walnut_whitelion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/walnut_whitelion.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/white_radish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/white_radish.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/item/zhuge_machinecrossbow_standby.png -------------------------------------------------------------------------------- /src/main/resources/assets/sinocraft/textures/model/blocks/desk_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinoCraftProject/SinoCraft-Legacy/6c9bd75d95a45c7aea69cc95f9998d3bbb8cfdbf/src/main/resources/assets/sinocraft/textures/model/blocks/desk_top.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "SinoCraft resources", 4 | "pack_format": 6, 5 | "_comment": "A pack_format of 5 requires json lang files and some texture changes from 1.15. Note: we require v5 pack meta for all mods." 6 | } 7 | } 8 | --------------------------------------------------------------------------------