├── .gitignore ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── readme.md ├── settings.gradle └── src └── main ├── java └── net │ └── tigereye │ └── chestcavity │ ├── ChestCavity.java │ ├── ChestCavityClient.java │ ├── ChestCavityServer.java │ ├── chestcavities │ ├── ChestCavityInventory.java │ ├── ChestCavityType.java │ ├── instance │ │ ├── ChestCavityInstance.java │ │ └── ChestCavityInstanceFactory.java │ ├── organs │ │ ├── OrganData.java │ │ ├── OrganJsonFormat.java │ │ ├── OrganManager.java │ │ └── OrganSerializer.java │ └── types │ │ ├── DefaultChestCavityType.java │ │ ├── GeneratedChestCavityType.java │ │ └── json │ │ ├── ChestCavityAssignmentJsonFormat.java │ │ ├── ChestCavityAssignmentSerializer.java │ │ ├── ChestCavityTypeJsonFormat.java │ │ ├── ChestCavityTypeSerializer.java │ │ ├── GeneratedChestCavityAssignmentManager.java │ │ └── GeneratedChestCavityTypeManager.java │ ├── compat │ ├── CrossModContent.java │ ├── backrooms │ │ ├── CCBackrooms.java │ │ └── CCBackroomsLootRegister.java │ ├── rei │ │ ├── SalvageRecipeCategory.java │ │ ├── SalvageRecipeDisplay.java │ │ └── SalvageRecipeREIPlugin.java │ └── requiem │ │ └── CCRequiem.java │ ├── config │ ├── CCConfig.java │ └── CCModMenuIntegration.java │ ├── enchantments │ ├── MalpracticeCurseEnchantment.java │ ├── ONegativeEnchantment.java │ ├── SurgicalEnchantment.java │ └── TomophobiaEnchantment.java │ ├── interfaces │ ├── CCHungerManagerInterface.java │ ├── CCOrganItem.java │ ├── CCStatusEffect.java │ ├── CCStatusEffectInstance.java │ └── ChestCavityEntity.java │ ├── items │ ├── ChestOpener.java │ ├── CreeperAppendix.java │ └── VenomGland.java │ ├── listeners │ ├── EffectiveFoodScores.java │ ├── KeybindingClientListeners.java │ ├── LootRegister.java │ ├── OrganActivationListeners.java │ ├── OrganAddStatusEffectCallback.java │ ├── OrganAddStatusEffectListeners.java │ ├── OrganFoodCallback.java │ ├── OrganFoodEffectCallback.java │ ├── OrganFoodEffectListeners.java │ ├── OrganFoodListeners.java │ ├── OrganOnHitCallback.java │ ├── OrganOnHitContext.java │ ├── OrganOnHitListener.java │ ├── OrganOnHitListeners.java │ ├── OrganTickCallback.java │ ├── OrganTickListeners.java │ ├── OrganUpdateCallback.java │ └── OrganUpdateListeners.java │ ├── mixin │ ├── MixinEnchantmentHelper.java │ ├── MixinEntity.java │ ├── MixinHungerManager.java │ ├── MixinItem.java │ ├── MixinLivingEntity.java │ ├── MixinPotionEntity.java │ ├── MixinSlot.java │ ├── MixinStatusEffect.java │ └── MixinStatusEffectInstance.java │ ├── mob_effect │ ├── CCStatusEffect.java │ ├── FurnacePower.java │ ├── OrganRejection.java │ └── Ruminating.java │ ├── recipes │ ├── InfuseVenomGland.java │ ├── SalvageRecipe.java │ └── json │ │ ├── SalvageRecipeJsonFormat.java │ │ └── SalvageRecipeSerializer.java │ ├── registration │ ├── CCCommands.java │ ├── CCDamageSource.java │ ├── CCEnchantments.java │ ├── CCFoodComponents.java │ ├── CCItems.java │ ├── CCKeybindings.java │ ├── CCListeners.java │ ├── CCNetworkingPackets.java │ ├── CCOrganScores.java │ ├── CCRecipes.java │ ├── CCStatusEffects.java │ ├── CCTagOrgans.java │ └── CCTags.java │ ├── ui │ ├── ChestCavityScreen.java │ └── ChestCavityScreenHandler.java │ └── util │ ├── ChestCavityUtil.java │ ├── MathUtil.java │ ├── NetworkUtil.java │ └── OrganUtil.java └── resources ├── assets └── chestcavity │ ├── icon.png │ ├── lang │ └── en_us.json │ ├── models │ └── item │ │ ├── active_blaze_rod.json │ │ ├── alien_sausage.json │ │ ├── animal_appendix.json │ │ ├── animal_heart.json │ │ ├── animal_intestine.json │ │ ├── animal_kidney.json │ │ ├── animal_liver.json │ │ ├── animal_lung.json │ │ ├── animal_muscle.json │ │ ├── animal_rib.json │ │ ├── animal_spine.json │ │ ├── animal_spleen.json │ │ ├── animal_stomach.json │ │ ├── appendix.json │ │ ├── aquatic_muscle.json │ │ ├── batet_cleaver.json │ │ ├── blaze_core.json │ │ ├── blaze_shell.json │ │ ├── brutish_muscle.json │ │ ├── burnt_meat_chunk.json │ │ ├── cannibal_heart.json │ │ ├── carnivore_intestine.json │ │ ├── carnivore_stomach.json │ │ ├── chest_opener.json │ │ ├── cooked_alien_meat.json │ │ ├── cooked_alien_organ_meat.json │ │ ├── cooked_butchered_meat.json │ │ ├── cooked_dragon_meat.json │ │ ├── cooked_dragon_organ_meat.json │ │ ├── cooked_human_organ_meat.json │ │ ├── cooked_man_meat.json │ │ ├── cooked_organ_meat.json │ │ ├── cooked_toxic_meat.json │ │ ├── cooked_toxic_organ_meat.json │ │ ├── creeper_appendix.json │ │ ├── cud.json │ │ ├── diamond_cleaver.json │ │ ├── dragon_appendix.json │ │ ├── dragon_heart.json │ │ ├── dragon_kidney.json │ │ ├── dragon_liver.json │ │ ├── dragon_lung.json │ │ ├── dragon_muscle.json │ │ ├── dragon_rib.json │ │ ├── dragon_sausage.json │ │ ├── dragon_spine.json │ │ ├── dragon_spleen.json │ │ ├── ender_appendix.json │ │ ├── ender_heart.json │ │ ├── ender_intestine.json │ │ ├── ender_kidney.json │ │ ├── ender_liver.json │ │ ├── ender_lung.json │ │ ├── ender_muscle.json │ │ ├── ender_rib.json │ │ ├── ender_spine.json │ │ ├── ender_spleen.json │ │ ├── ender_stomach.json │ │ ├── fireproof_appendix.json │ │ ├── fireproof_heart.json │ │ ├── fireproof_intestine.json │ │ ├── fireproof_kidney.json │ │ ├── fireproof_liver.json │ │ ├── fireproof_lung.json │ │ ├── fireproof_muscle.json │ │ ├── fireproof_rib.json │ │ ├── fireproof_spine.json │ │ ├── fireproof_spleen.json │ │ ├── fireproof_stomach.json │ │ ├── fish_muscle.json │ │ ├── furnace_power.json │ │ ├── gas_bladder.json │ │ ├── gills.json │ │ ├── gold_cleaver.json │ │ ├── golem_cable.json │ │ ├── golem_core.json │ │ ├── golem_plating.json │ │ ├── heart.json │ │ ├── herbivore_intestine.json │ │ ├── herbivore_rumen.json │ │ ├── herbivore_stomach.json │ │ ├── human_sausage.json │ │ ├── inner_furnace.json │ │ ├── insect_caeca.json │ │ ├── insect_heart.json │ │ ├── insect_intestine.json │ │ ├── insect_lung.json │ │ ├── insect_muscle.json │ │ ├── insect_stomach.json │ │ ├── intestine.json │ │ ├── iron_cleaver.json │ │ ├── iron_scrap.json │ │ ├── kidney.json │ │ ├── liver.json │ │ ├── llama_lung.json │ │ ├── lung.json │ │ ├── luss_cleaver.json │ │ ├── mana_reactor.json │ │ ├── mini_sausage.json │ │ ├── mini_sausage_skin.json │ │ ├── muscle.json │ │ ├── netherite_cleaver.json │ │ ├── piston_muscle.json │ │ ├── rabbit_heart.json │ │ ├── raw_alien_meat.json │ │ ├── raw_alien_organ_meat.json │ │ ├── raw_alien_sausage.json │ │ ├── raw_butchered_meat.json │ │ ├── raw_dragon_meat.json │ │ ├── raw_dragon_organ_meat.json │ │ ├── raw_dragon_sausage.json │ │ ├── raw_human_organ_meat.json │ │ ├── raw_human_sausage.json │ │ ├── raw_man_meat.json │ │ ├── raw_mini_sausage.json │ │ ├── raw_organ_meat.json │ │ ├── raw_rich_alien_sausage.json │ │ ├── raw_rich_dragon_sausage.json │ │ ├── raw_rich_human_sausage.json │ │ ├── raw_rich_mini_sausage.json │ │ ├── raw_rich_sausage.json │ │ ├── raw_rich_toxic_sausage.json │ │ ├── raw_sausage.json │ │ ├── raw_toxic_meat.json │ │ ├── raw_toxic_organ_meat.json │ │ ├── raw_toxic_sausage.json │ │ ├── rib.json │ │ ├── rich_alien_sausage.json │ │ ├── rich_dragon_sausage.json │ │ ├── rich_human_sausage.json │ │ ├── rich_mini_sausage.json │ │ ├── rich_sausage.json │ │ ├── rich_toxic_sausage.json │ │ ├── rotten_appendix.json │ │ ├── rotten_heart.json │ │ ├── rotten_intestine.json │ │ ├── rotten_kidney.json │ │ ├── rotten_liver.json │ │ ├── rotten_lung.json │ │ ├── rotten_muscle.json │ │ ├── rotten_rib.json │ │ ├── rotten_sausage.json │ │ ├── rotten_spine.json │ │ ├── rotten_spleen.json │ │ ├── rotten_stomach.json │ │ ├── saltwater_heart.json │ │ ├── saltwater_lung.json │ │ ├── saltwater_muscle.json │ │ ├── sausage.json │ │ ├── sausage_skin.json │ │ ├── shifting_leaves.json │ │ ├── shulker_spleen.json │ │ ├── silk_gland.json │ │ ├── small_animal_appendix.json │ │ ├── small_animal_heart.json │ │ ├── small_animal_intestine.json │ │ ├── small_animal_kidney.json │ │ ├── small_animal_liver.json │ │ ├── small_animal_lung.json │ │ ├── small_animal_muscle.json │ │ ├── small_animal_rib.json │ │ ├── small_animal_spine.json │ │ ├── small_animal_spleen.json │ │ ├── small_animal_stomach.json │ │ ├── small_aquatic_muscle.json │ │ ├── small_carnivore_intestine.json │ │ ├── small_carnivore_stomach.json │ │ ├── small_fish_muscle.json │ │ ├── small_gills.json │ │ ├── small_herbivore_intestine.json │ │ ├── small_herbivore_stomach.json │ │ ├── small_springy_muscle.json │ │ ├── spine.json │ │ ├── spleen.json │ │ ├── springy_muscle.json │ │ ├── stomach.json │ │ ├── stone_cleaver.json │ │ ├── swift_muscle.json │ │ ├── tethered_cannibal_heart.json │ │ ├── toxic_sausage.json │ │ ├── venom_gland.json │ │ ├── volatile_stomach.json │ │ ├── vuld_cleaver.json │ │ ├── withered_rib.json │ │ ├── withered_spine.json │ │ ├── wooden_cleaver.json │ │ └── writhing_soulsand.json │ └── textures │ ├── item │ ├── active_blaze_rod.png │ ├── animal │ │ ├── animal_appendix.png │ │ ├── animal_heart.png │ │ ├── animal_intestine.png │ │ ├── animal_kidney.png │ │ ├── animal_liver.png │ │ ├── animal_lung.png │ │ ├── animal_muscle.png │ │ ├── animal_rib.png │ │ ├── animal_spine.png │ │ ├── animal_spleen.png │ │ ├── animal_stomach.png │ │ ├── aquatic_muscle.png │ │ ├── brutish_muscle.png │ │ ├── carnivore_intestine.png │ │ ├── carnivore_stomach.png │ │ ├── fireproof_appendix.png │ │ ├── fireproof_heart.png │ │ ├── fireproof_intestine.png │ │ ├── fireproof_kidney.png │ │ ├── fireproof_liver.png │ │ ├── fireproof_lung.png │ │ ├── fireproof_muscle.png │ │ ├── fireproof_rib.png │ │ ├── fireproof_spine.png │ │ ├── fireproof_spleen.png │ │ ├── fireproof_stomach.png │ │ ├── fish_muscle.png │ │ ├── gills.png │ │ ├── herbivore_intestine.png │ │ ├── herbivore_rumen.png │ │ ├── herbivore_stomach.png │ │ ├── llama_lung.png │ │ ├── shulker_spleen.png │ │ ├── small_animal_appendix.png │ │ ├── small_animal_heart.png │ │ ├── small_animal_intestine.png │ │ ├── small_animal_kidney.png │ │ ├── small_animal_liver.png │ │ ├── small_animal_lung.png │ │ ├── small_animal_muscle.png │ │ ├── small_animal_rib.png │ │ ├── small_animal_spine.png │ │ ├── small_animal_spleen.png │ │ ├── small_animal_stomach.png │ │ ├── small_aquatic_muscle.png │ │ ├── small_carnivore_intestine.png │ │ ├── small_carnivore_stomach.png │ │ ├── small_fish_muscle.png │ │ ├── small_gills.png │ │ ├── small_herbivore_intestine.png │ │ ├── small_herbivore_stomach.png │ │ └── swift_muscle.png │ ├── appendix.png │ ├── batet_cleaver.png │ ├── blaze_core.png │ ├── blaze_shell.png │ ├── chest_opener.png │ ├── creeper_appendix.png │ ├── diamond_cleaver.png │ ├── dragon │ │ ├── dragon_appendix.png │ │ ├── dragon_heart.png │ │ ├── dragon_kidney.png │ │ ├── dragon_liver.png │ │ ├── dragon_lung.png │ │ ├── dragon_muscle.png │ │ ├── dragon_rib.png │ │ ├── dragon_spine.png │ │ └── dragon_spleen.png │ ├── ender_appendix.png │ ├── ender_heart.png │ ├── ender_intestine.png │ ├── ender_kidney.png │ ├── ender_liver.png │ ├── ender_lung.png │ ├── ender_muscle.png │ ├── ender_rib.png │ ├── ender_spine.png │ ├── ender_spleen.png │ ├── ender_stomach.png │ ├── food │ │ ├── alien_sausage.png │ │ ├── burnt_meat_chunk.png │ │ ├── cooked_alien_meat.png │ │ ├── cooked_alien_organ_meat.png │ │ ├── cooked_butchered_meat.png │ │ ├── cooked_dragon_meat.png │ │ ├── cooked_dragon_organ_meat.png │ │ ├── cooked_human_organ_meat.png │ │ ├── cooked_man_meat.png │ │ ├── cooked_organ_meat.png │ │ ├── cooked_toxic_meat.png │ │ ├── cooked_toxic_organ_meat.png │ │ ├── dragon_sausage.png │ │ ├── human_sausage.png │ │ ├── mini_sausage.png │ │ ├── mini_sausage_skin.png │ │ ├── raw_alien_meat.png │ │ ├── raw_alien_organ_meat.png │ │ ├── raw_alien_sausage.png │ │ ├── raw_butchered_meat.png │ │ ├── raw_dragon_meat.png │ │ ├── raw_dragon_organ_meat.png │ │ ├── raw_dragon_sausage.png │ │ ├── raw_human_organ_meat.png │ │ ├── raw_human_sausage.png │ │ ├── raw_man_meat.png │ │ ├── raw_mini_sausage.png │ │ ├── raw_organ_meat.png │ │ ├── raw_rich_alien_sausage.png │ │ ├── raw_rich_dragon_sausage.png │ │ ├── raw_rich_human_sausage.png │ │ ├── raw_rich_mini_sausage.png │ │ ├── raw_rich_sausage.png │ │ ├── raw_rich_toxic_sausage.png │ │ ├── raw_sausage.png │ │ ├── raw_toxic_meat.png │ │ ├── raw_toxic_organ_meat.png │ │ ├── raw_toxic_sausage.png │ │ ├── rich_alien_sausage.png │ │ ├── rich_dragon_sausage.png │ │ ├── rich_human_sausage.png │ │ ├── rich_mini_sausage.png │ │ ├── rich_sausage.png │ │ ├── rich_toxic_sausage.png │ │ ├── rotten_sausage.png │ │ ├── sausage.png │ │ ├── sausage_skin.png │ │ └── toxic_sausage.png │ ├── gas_bladder.png │ ├── gold_cleaver.png │ ├── golem │ │ ├── golem_cable.png │ │ ├── golem_core.png │ │ ├── golem_plating.png │ │ ├── inner_furnace.png │ │ ├── overgrown_golem_cable.png │ │ ├── overgrown_golem_core.png │ │ ├── overgrown_golem_plating.png │ │ ├── overgrown_inner_furnace.png │ │ ├── overgrown_piston_muscle.png │ │ └── piston_muscle.png │ ├── heart.png │ ├── insect │ │ ├── insect_caeca.png │ │ ├── insect_heart.png │ │ ├── insect_intestine.png │ │ ├── insect_lung.png │ │ ├── insect_muscle.png │ │ ├── insect_stomach.png │ │ ├── silk_gland.png │ │ └── venom_gland.png │ ├── intestine.png │ ├── iron_cleaver.png │ ├── iron_scrap.png │ ├── kidney.png │ ├── liver.png │ ├── lung.png │ ├── luss_cleaver.png │ ├── mana_reactor.png │ ├── muscle.png │ ├── netherite_cleaver.png │ ├── rabbit_heart.png │ ├── rib.png │ ├── saltwater_heart.png │ ├── saltwater_lung.png │ ├── saltwater_muscle.png │ ├── shifting_leaves.png │ ├── spine.png │ ├── spleen.png │ ├── stomach.png │ ├── stone_cleaver.png │ ├── undead │ │ ├── rotten_appendix.png │ │ ├── rotten_heart.png │ │ ├── rotten_intestine.png │ │ ├── rotten_kidney.png │ │ ├── rotten_liver.png │ │ ├── rotten_lung.png │ │ ├── rotten_muscle.png │ │ ├── rotten_rib.png │ │ ├── rotten_spine.png │ │ ├── rotten_spleen.png │ │ ├── rotten_stomach.png │ │ ├── withered_rib.png │ │ ├── withered_spine.png │ │ └── writhing_soulsand.png │ ├── volatile_stomach.png │ ├── vuld_cleaver.png │ └── wooden_cleaver.png │ └── mob_effect │ ├── arrow_dodge_cooldown.png │ ├── dragon_bomb_cooldown.png │ ├── dragon_breath_cooldown.png │ ├── explosion_cooldown.png │ ├── forceful_spit_cooldown.png │ ├── furnace_power.png │ ├── ghastly_cooldown.png │ ├── iron_repair_cooldown.png │ ├── organ_rejection.png │ ├── pyromancy_cooldown.png │ ├── ruminating.png │ ├── shulker_bullet_cooldown.png │ ├── silk_cooldown.png │ ├── venom_cooldown.png │ └── water_vulnerability.png ├── chestcavity.mixins.json ├── data ├── anthropophagy │ └── tags │ │ └── items │ │ └── flesh.json ├── c │ └── tags │ │ └── items │ │ ├── bones.json │ │ └── raw_meats.json ├── chestcavity │ ├── advancements │ │ └── recipes │ │ │ └── tools │ │ │ ├── chest_opener.json │ │ │ └── saltwater_organs.json │ ├── entity_assignment │ │ ├── animals │ │ │ ├── brutes.json │ │ │ ├── carnivores.json │ │ │ ├── dolphins.json │ │ │ ├── fireproof_animals.json │ │ │ ├── goat.json │ │ │ ├── herbivores.json │ │ │ ├── horse.json │ │ │ ├── large_fish.json │ │ │ ├── llamas.json │ │ │ ├── omnivores.json │ │ │ ├── pufferfish.json │ │ │ ├── rabbits.json │ │ │ ├── ruminants.json │ │ │ ├── small_aquatic_carnivores.json │ │ │ ├── small_carnivores.json │ │ │ ├── small_fish.json │ │ │ ├── small_herbivores.json │ │ │ ├── small_omnivores.json │ │ │ └── turtles.json │ │ ├── compatibility │ │ │ ├── adventurez │ │ │ │ ├── blazes.json │ │ │ │ ├── brutes.json │ │ │ │ ├── dragons.json │ │ │ │ ├── ender_whale.json │ │ │ │ ├── fireproof_animals.json │ │ │ │ ├── herbivores.json │ │ │ │ ├── humans.json │ │ │ │ ├── nulls.json │ │ │ │ ├── skeletons.json │ │ │ │ └── wither_skeletons.json │ │ │ ├── ageofexile │ │ │ │ ├── chickens.json │ │ │ │ ├── magi.json │ │ │ │ ├── skeletons.json │ │ │ │ ├── slimes.json │ │ │ │ ├── spiders.json │ │ │ │ └── zombies.json │ │ │ ├── anthropophagy │ │ │ │ └── pigluttons.json │ │ │ ├── aqupd │ │ │ │ ├── carnivores.json │ │ │ │ └── small_carnivores.json │ │ │ ├── azurejarjar │ │ │ │ └── jarjars.json │ │ │ ├── besmirchment │ │ │ │ ├── cave_spiders.json │ │ │ │ └── werewolves.json │ │ │ ├── betteranimalsplus │ │ │ │ ├── aquatic_mammals.json │ │ │ │ ├── carnivores.json │ │ │ │ ├── crabs.json │ │ │ │ ├── herbivores.json │ │ │ │ ├── insects.json │ │ │ │ ├── large_fish.json │ │ │ │ ├── omnivores.json │ │ │ │ ├── slimes.json │ │ │ │ ├── small_carnivores.json │ │ │ │ ├── small_fish.json │ │ │ │ ├── small_herbivores.json │ │ │ │ ├── small_omnivores.json │ │ │ │ └── spiders.json │ │ │ ├── bewitchment │ │ │ │ ├── carnivores.json │ │ │ │ ├── ghosts.json │ │ │ │ ├── humans.json │ │ │ │ ├── small_carnivores.json │ │ │ │ ├── small_omnivores.json │ │ │ │ └── werewolves.json │ │ │ ├── biomemakeover │ │ │ │ ├── ghosts.json │ │ │ │ ├── humans.json │ │ │ │ ├── slimes.json │ │ │ │ ├── small_carnivores.json │ │ │ │ ├── small_fish.json │ │ │ │ ├── small_herbivores.json │ │ │ │ ├── small_omnivores.json │ │ │ │ └── zombies.json │ │ │ ├── capybara │ │ │ │ └── herbivores.json │ │ │ ├── creatures_of_the_snow │ │ │ │ ├── aquatic_mammals.json │ │ │ │ ├── omnivores.json │ │ │ │ └── small_aquatic_carnivores.json │ │ │ ├── creeperspores │ │ │ │ └── creepers.json │ │ │ ├── direbats │ │ │ │ └── direbats.json │ │ │ ├── earth │ │ │ │ ├── insects.json │ │ │ │ └── small_omnivores.json │ │ │ ├── earthtojavamobs │ │ │ │ ├── humans.json │ │ │ │ ├── iron_golems.json │ │ │ │ ├── large_fish.json │ │ │ │ ├── llamas.json │ │ │ │ ├── omnivores.json │ │ │ │ ├── rabbits.json │ │ │ │ ├── ruminants.json │ │ │ │ ├── skeletons.json │ │ │ │ ├── snow_golems.json │ │ │ │ └── zombies.json │ │ │ ├── friendsandfoes │ │ │ │ ├── copper_golems.json │ │ │ │ ├── glare.json │ │ │ │ └── ruminants.json │ │ │ ├── goblintraders │ │ │ │ └── humans.json │ │ │ ├── graveyard │ │ │ │ ├── humans.json │ │ │ │ ├── skeletons.json │ │ │ │ └── zombies.json │ │ │ ├── guardvillager │ │ │ │ └── humans.json │ │ │ ├── lovely_snails │ │ │ │ └── small_omnivores.json │ │ │ ├── ottercraft │ │ │ │ └── carnivores.json │ │ │ ├── platypus │ │ │ │ └── omnivores.json │ │ │ ├── ratsmischief │ │ │ │ └── rats.json │ │ │ ├── smallendermen │ │ │ │ └── endermen.json │ │ │ ├── snowmercy │ │ │ │ └── snow_golems.json │ │ │ ├── snowpig │ │ │ │ └── omnivores.json │ │ │ ├── twm │ │ │ │ ├── brutes.json │ │ │ │ ├── insects.json │ │ │ │ └── small_carnivores.json │ │ │ └── vanilla_degus │ │ │ │ └── small_herbivores.json │ │ ├── constructs │ │ │ ├── blazes.json │ │ │ ├── iron_golems.json │ │ │ └── snow_golems.json │ │ ├── example.json │ │ ├── humanoids │ │ │ ├── endermen.json │ │ │ ├── humans.json │ │ │ └── players.json │ │ ├── insects │ │ │ ├── bees.json │ │ │ ├── cave_spiders.json │ │ │ ├── insects.json │ │ │ └── spiders.json │ │ ├── magical_beasts │ │ │ ├── creepers.json │ │ │ ├── dragons.json │ │ │ ├── ghasts.json │ │ │ ├── shulkers.json │ │ │ └── slimes.json │ │ └── undead │ │ │ ├── skeletons.json │ │ │ ├── wither_skeletons.json │ │ │ ├── withers.json │ │ │ └── zombies.json │ ├── organs │ │ ├── animal │ │ │ ├── appendix.json │ │ │ ├── appendix_fireproof.json │ │ │ ├── gills.json │ │ │ ├── heart.json │ │ │ ├── heart_fireproof.json │ │ │ ├── intestine.json │ │ │ ├── intestine_carnivore.json │ │ │ ├── intestine_fireproof.json │ │ │ ├── intestine_herbivore.json │ │ │ ├── kidney.json │ │ │ ├── kidney_fireproof.json │ │ │ ├── liver.json │ │ │ ├── liver_fireproof.json │ │ │ ├── lung.json │ │ │ ├── lung_fireproof.json │ │ │ ├── lung_llama.json │ │ │ ├── muscle.json │ │ │ ├── muscle_aquatic.json │ │ │ ├── muscle_brutish.json │ │ │ ├── muscle_fireproof.json │ │ │ ├── muscle_fish.json │ │ │ ├── muscle_springy.json │ │ │ ├── muscle_swift.json │ │ │ ├── rib.json │ │ │ ├── rib_fireproof.json │ │ │ ├── spine.json │ │ │ ├── spine_fireproof.json │ │ │ ├── spleen.json │ │ │ ├── spleen_fireproof.json │ │ │ ├── stomach.json │ │ │ ├── stomach_carnivore.json │ │ │ ├── stomach_fireproof.json │ │ │ ├── stomach_herbivore.json │ │ │ └── stomach_rumen.json │ │ ├── blaze │ │ │ ├── active_blaze_rod.json │ │ │ ├── core.json │ │ │ └── shell.json │ │ ├── dragon │ │ │ ├── appendix.json │ │ │ ├── heart.json │ │ │ ├── kidney.json │ │ │ ├── liver.json │ │ │ ├── lung.json │ │ │ ├── mana_reactor.json │ │ │ ├── muscle.json │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ └── spleen.json │ │ ├── enderman │ │ │ ├── appendix.json │ │ │ ├── heart.json │ │ │ ├── intestine.json │ │ │ ├── kidney.json │ │ │ ├── liver.json │ │ │ ├── lung.json │ │ │ ├── muscle.json │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ ├── spleen.json │ │ │ └── stomach.json │ │ ├── golem │ │ │ ├── cable.json │ │ │ ├── core.json │ │ │ ├── inner_furnace.json │ │ │ ├── muscle_piston.json │ │ │ └── plating.json │ │ ├── human │ │ │ ├── appendix.json │ │ │ ├── heart.json │ │ │ ├── intestine.json │ │ │ ├── kidney.json │ │ │ ├── liver.json │ │ │ ├── lung.json │ │ │ ├── muscle.json │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ ├── spleen.json │ │ │ └── stomach.json │ │ ├── insect │ │ │ ├── caeca.json │ │ │ ├── heart.json │ │ │ ├── intestine.json │ │ │ ├── lung.json │ │ │ ├── muscle.json │ │ │ ├── silk_gland.json │ │ │ ├── stomach.json │ │ │ └── venom_gland.json │ │ ├── other │ │ │ ├── appendix_creeper.json │ │ │ ├── gas_bladder.json │ │ │ ├── heart_saltwater.json │ │ │ ├── lung_saltwater.json │ │ │ ├── muscle_saltwater.json │ │ │ ├── shifting_leaves.json │ │ │ ├── spleen_shulker.json │ │ │ └── stomach_volatile.json │ │ ├── pseudoorgans │ │ │ ├── animal_flesh_beef.json │ │ │ ├── animal_flesh_mutton.json │ │ │ ├── animal_flesh_pork.json │ │ │ ├── blaze_rod.json │ │ │ ├── bone.json │ │ │ ├── bone_block.json │ │ │ ├── crying_obsidian.json │ │ │ ├── diamond_block.json │ │ │ ├── dirt.json │ │ │ ├── emerald_block.json │ │ │ ├── glowstone.json │ │ │ ├── glowstone_dust.json │ │ │ ├── gold_block.json │ │ │ ├── gunpowder.json │ │ │ ├── iron_bars.json │ │ │ ├── iron_block.json │ │ │ ├── netherite_block.json │ │ │ ├── obsidian.json │ │ │ ├── rotten_flesh.json │ │ │ └── tnt.json │ │ ├── rotten │ │ │ ├── appendix.json │ │ │ ├── heart.json │ │ │ ├── intestine.json │ │ │ ├── kidney.json │ │ │ ├── liver.json │ │ │ ├── lung.json │ │ │ ├── muscle.json │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ ├── spleen.json │ │ │ └── stomach.json │ │ ├── small_animal │ │ │ ├── appendix.json │ │ │ ├── gills.json │ │ │ ├── heart.json │ │ │ ├── heart_rabbit.json │ │ │ ├── intestine.json │ │ │ ├── intestine_carnivore.json │ │ │ ├── intestine_herbivore.json │ │ │ ├── kidney.json │ │ │ ├── liver.json │ │ │ ├── lung.json │ │ │ ├── muscle.json │ │ │ ├── muscle_aquatic.json │ │ │ ├── muscle_fish.json │ │ │ ├── muscle_springy.json │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ ├── spleen.json │ │ │ ├── stomach.json │ │ │ ├── stomach_carnivore.json │ │ │ └── stomach_herbivore.json │ │ └── wither │ │ │ ├── rib.json │ │ │ ├── spine.json │ │ │ └── writhing_soulsand.json │ ├── recipes │ │ ├── burnt_meat_chunk.json │ │ ├── burnt_meat_chunk_from_campfire.json │ │ ├── burnt_meat_chunk_from_smoker.json │ │ ├── chest_opener.json │ │ ├── cooked_alien_meat.json │ │ ├── cooked_alien_meat_from_campfire.json │ │ ├── cooked_alien_meat_from_smoker.json │ │ ├── cooked_alien_organ_meat.json │ │ ├── cooked_alien_organ_meat_from_campfire.json │ │ ├── cooked_alien_organ_meat_from_smoker.json │ │ ├── cooked_alien_sausage.json │ │ ├── cooked_alien_sausage_from_campfire.json │ │ ├── cooked_alien_sausage_from_smoker.json │ │ ├── cooked_butchered_meat.json │ │ ├── cooked_butchered_meat_from_campfire.json │ │ ├── cooked_butchered_meat_from_smoker.json │ │ ├── cooked_dragon_meat.json │ │ ├── cooked_dragon_meat_from_campfire.json │ │ ├── cooked_dragon_meat_from_smoker.json │ │ ├── cooked_dragon_organ_meat.json │ │ ├── cooked_dragon_organ_meat_from_campfire.json │ │ ├── cooked_dragon_organ_meat_from_smoker.json │ │ ├── cooked_dragon_sausage.json │ │ ├── cooked_dragon_sausage_from_campfire.json │ │ ├── cooked_dragon_sausage_from_smoker.json │ │ ├── cooked_human_organ_meat.json │ │ ├── cooked_human_organ_meat_from_campfire.json │ │ ├── cooked_human_organ_meat_from_smoker.json │ │ ├── cooked_human_sausage.json │ │ ├── cooked_human_sausage_from_campfire.json │ │ ├── cooked_human_sausage_from_smoker.json │ │ ├── cooked_man_meat.json │ │ ├── cooked_man_meat_from_campfire.json │ │ ├── cooked_man_meat_from_smoker.json │ │ ├── cooked_mini_sausage.json │ │ ├── cooked_mini_sausage_from_campfire.json │ │ ├── cooked_mini_sausage_from_smoker.json │ │ ├── cooked_organ_meat.json │ │ ├── cooked_organ_meat_from_campfire.json │ │ ├── cooked_organ_meat_from_smoker.json │ │ ├── cooked_rich_alien_sausage.json │ │ ├── cooked_rich_alien_sausage_from_campfire.json │ │ ├── cooked_rich_alien_sausage_from_smoker.json │ │ ├── cooked_rich_dragon_sausage.json │ │ ├── cooked_rich_dragon_sausage_from_campfire.json │ │ ├── cooked_rich_dragon_sausage_from_smoker.json │ │ ├── cooked_rich_human_sausage.json │ │ ├── cooked_rich_human_sausage_from_campfire.json │ │ ├── cooked_rich_human_sausage_from_smoker.json │ │ ├── cooked_rich_mini_sausage.json │ │ ├── cooked_rich_mini_sausage_from_campfire.json │ │ ├── cooked_rich_mini_sausage_from_smoker.json │ │ ├── cooked_rich_sausage.json │ │ ├── cooked_rich_sausage_from_campfire.json │ │ ├── cooked_rich_sausage_from_smoker.json │ │ ├── cooked_rich_toxic_sausage.json │ │ ├── cooked_rich_toxic_sausage_from_campfire.json │ │ ├── cooked_rich_toxic_sausage_from_smoker.json │ │ ├── cooked_sausage.json │ │ ├── cooked_sausage_from_campfire.json │ │ ├── cooked_sausage_from_smoker.json │ │ ├── cooked_toxic_meat.json │ │ ├── cooked_toxic_meat_from_campfire.json │ │ ├── cooked_toxic_meat_from_smoker.json │ │ ├── cooked_toxic_organ_meat.json │ │ ├── cooked_toxic_organ_meat_from_campfire.json │ │ ├── cooked_toxic_organ_meat_from_smoker.json │ │ ├── cooked_toxic_sausage.json │ │ ├── cooked_toxic_sausage_from_campfire.json │ │ ├── cooked_toxic_sausage_from_smoker.json │ │ ├── diamond_cleaver.json │ │ ├── gold_cleaver.json │ │ ├── golem_cable.json │ │ ├── golem_core.json │ │ ├── golem_plating.json │ │ ├── infuse_venom_gland.json │ │ ├── inner_furnace.json │ │ ├── iron_cleaver.json │ │ ├── iron_nugget_from_scrap.json │ │ ├── iron_nugget_from_scrap_from_blast_furnace.json │ │ ├── netherite_cleaver.json │ │ ├── piston_muscle.json │ │ ├── raw_alien_sausage.json │ │ ├── raw_dragon_sausage.json │ │ ├── raw_human_sausage.json │ │ ├── raw_mini_sausage.json │ │ ├── raw_rich_alien_sausage.json │ │ ├── raw_rich_dragon_sausage.json │ │ ├── raw_rich_human_sausage.json │ │ ├── raw_rich_mini_sausage.json │ │ ├── raw_rich_sausage.json │ │ ├── raw_rich_toxic_sausage.json │ │ ├── raw_sausage.json │ │ ├── raw_toxic_sausage.json │ │ ├── rotten_sausage.json │ │ ├── saltwater_heart.json │ │ ├── saltwater_lung.json │ │ ├── saltwater_muscle.json │ │ ├── salvage_alien_meat.json │ │ ├── salvage_alien_organ_meat.json │ │ ├── salvage_blaze_powder.json │ │ ├── salvage_bone_meal.json │ │ ├── salvage_butchered_meat.json │ │ ├── salvage_dragon_meat.json │ │ ├── salvage_dragon_organ_meat.json │ │ ├── salvage_gunpowder.json │ │ ├── salvage_human_organ_meat.json │ │ ├── salvage_iron_scrap.json │ │ ├── salvage_iron_scrap_from_piston_muscle.json │ │ ├── salvage_leaves.json │ │ ├── salvage_man_meat.json │ │ ├── salvage_mini_sausage_skin.json │ │ ├── salvage_raw_organ_meat.json │ │ ├── salvage_rotten_flesh.json │ │ ├── salvage_rotten_muscle.json │ │ ├── salvage_sausage_skin.json │ │ ├── salvage_small_animal_organ_meat.json │ │ ├── salvage_small_butchered_meat.json │ │ ├── salvage_soul_sand.json │ │ ├── salvage_toxic_meat.json │ │ ├── salvage_toxic_organ_meat.json │ │ ├── stone_cleaver.json │ │ └── wooden_cleaver.json │ ├── tags │ │ └── items │ │ │ ├── burnable_meat.json │ │ │ ├── butchering_tool.json │ │ │ ├── carnivore_food.json │ │ │ ├── iron_repair_material.json │ │ │ ├── rotten_food.json │ │ │ ├── salvageable.json │ │ │ ├── salvageable_alien_meat.json │ │ │ ├── salvageable_alien_organ_meat.json │ │ │ ├── salvageable_animal_organ_meat.json │ │ │ ├── salvageable_blaze_powder.json │ │ │ ├── salvageable_bone_meal.json │ │ │ ├── salvageable_butchered_meat.json │ │ │ ├── salvageable_dragon_meat.json │ │ │ ├── salvageable_dragon_organ_meat.json │ │ │ ├── salvageable_gunpowder.json │ │ │ ├── salvageable_human_organ_meat.json │ │ │ ├── salvageable_iron_scrap.json │ │ │ ├── salvageable_man_meat.json │ │ │ ├── salvageable_mini_sausage_skin.json │ │ │ ├── salvageable_rotten_flesh.json │ │ │ ├── salvageable_sausage_skin.json │ │ │ ├── salvageable_small_animal_organ_meat.json │ │ │ ├── salvageable_small_butchered_meat.json │ │ │ ├── salvageable_toxic_meat.json │ │ │ ├── salvageable_toxic_organ_meat.json │ │ │ └── small_animal_organs.json │ └── types │ │ ├── animals │ │ ├── brutish.json │ │ ├── carnivore.json │ │ ├── dolphin.json │ │ ├── fireproof.json │ │ ├── goat.json │ │ ├── herbivore.json │ │ ├── horse.json │ │ ├── large_fish.json │ │ ├── llama.json │ │ ├── omnivore.json │ │ ├── pufferfish.json │ │ ├── rabbit.json │ │ ├── ruminant.json │ │ ├── small_aquatic_carnivore.json │ │ ├── small_carnivore.json │ │ ├── small_fish.json │ │ ├── small_herbivore.json │ │ ├── small_omnivore.json │ │ └── turtle.json │ │ ├── compatibility │ │ ├── adventurez │ │ │ └── ender_whale.json │ │ ├── betteranimalsplus │ │ │ └── crab.json │ │ └── bewitchment │ │ │ └── werewolf.json │ │ ├── constructs │ │ ├── blaze.json │ │ ├── iron_golem.json │ │ └── snow_golem.json │ │ ├── default.json │ │ ├── example.json │ │ ├── humanoids │ │ ├── enderman.json │ │ ├── human.json │ │ └── player.json │ │ ├── insects │ │ ├── bee.json │ │ ├── cave_spider.json │ │ ├── insect.json │ │ └── spider.json │ │ ├── magical_beasts │ │ ├── creeper.json │ │ ├── dragon.json │ │ ├── ghast.json │ │ ├── shulker.json │ │ └── slime.json │ │ ├── null.json │ │ └── undead │ │ ├── skeleton.json │ │ ├── wither.json │ │ ├── wither_skeleton.json │ │ └── zombie.json └── nourish │ ├── carbohydrates.json │ ├── fats.json │ ├── fruit.json │ ├── protein.json │ └── vegetables.json └── fabric.mod.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/gradlew.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/readme.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/ChestCavity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/ChestCavity.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/ChestCavityClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/ChestCavityClient.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/ChestCavityServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/ChestCavityServer.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/chestcavities/ChestCavityType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/chestcavities/ChestCavityType.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/chestcavities/organs/OrganData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/chestcavities/organs/OrganData.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/chestcavities/organs/OrganManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/chestcavities/organs/OrganManager.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/CrossModContent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/CrossModContent.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/backrooms/CCBackrooms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/backrooms/CCBackrooms.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeCategory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeCategory.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeDisplay.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeREIPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/rei/SalvageRecipeREIPlugin.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/compat/requiem/CCRequiem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/compat/requiem/CCRequiem.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/config/CCConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/config/CCConfig.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/config/CCModMenuIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/config/CCModMenuIntegration.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/enchantments/ONegativeEnchantment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/enchantments/ONegativeEnchantment.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/enchantments/SurgicalEnchantment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/enchantments/SurgicalEnchantment.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/interfaces/CCOrganItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/interfaces/CCOrganItem.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/interfaces/CCStatusEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/interfaces/CCStatusEffect.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/interfaces/CCStatusEffectInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/interfaces/CCStatusEffectInstance.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/interfaces/ChestCavityEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/interfaces/ChestCavityEntity.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/items/ChestOpener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/items/ChestOpener.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/items/CreeperAppendix.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/items/CreeperAppendix.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/items/VenomGland.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/items/VenomGland.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/EffectiveFoodScores.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/EffectiveFoodScores.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/LootRegister.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/LootRegister.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganFoodCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganFoodCallback.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganFoodEffectCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganFoodEffectCallback.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganFoodListeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganFoodListeners.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitCallback.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitContext.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitListener.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitListeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganOnHitListeners.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganTickCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganTickCallback.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganTickListeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganTickListeners.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganUpdateCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganUpdateCallback.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/listeners/OrganUpdateListeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/listeners/OrganUpdateListeners.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinEnchantmentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinEnchantmentHelper.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinEntity.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinHungerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinHungerManager.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinItem.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinLivingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinLivingEntity.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinPotionEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinPotionEntity.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinSlot.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinStatusEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinStatusEffect.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mixin/MixinStatusEffectInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mixin/MixinStatusEffectInstance.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mob_effect/CCStatusEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mob_effect/CCStatusEffect.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mob_effect/FurnacePower.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mob_effect/FurnacePower.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mob_effect/OrganRejection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mob_effect/OrganRejection.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/mob_effect/Ruminating.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/mob_effect/Ruminating.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/recipes/InfuseVenomGland.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/recipes/InfuseVenomGland.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/recipes/SalvageRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/recipes/SalvageRecipe.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCCommands.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCCommands.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCDamageSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCDamageSource.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCEnchantments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCEnchantments.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCFoodComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCFoodComponents.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCItems.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCKeybindings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCKeybindings.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCListeners.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCListeners.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCNetworkingPackets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCNetworkingPackets.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCOrganScores.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCOrganScores.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCRecipes.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCStatusEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCStatusEffects.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCTagOrgans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCTagOrgans.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/registration/CCTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/registration/CCTags.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/ui/ChestCavityScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/ui/ChestCavityScreen.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/ui/ChestCavityScreenHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/ui/ChestCavityScreenHandler.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/util/ChestCavityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/util/ChestCavityUtil.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/util/MathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/util/MathUtil.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/util/NetworkUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/util/NetworkUtil.java -------------------------------------------------------------------------------- /src/main/java/net/tigereye/chestcavity/util/OrganUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/java/net/tigereye/chestcavity/util/OrganUtil.java -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/active_blaze_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/active_blaze_rod.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/animal_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/animal_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/aquatic_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/aquatic_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/batet_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/batet_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/blaze_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/blaze_core.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/blaze_shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/blaze_shell.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/brutish_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/brutish_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/burnt_meat_chunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/burnt_meat_chunk.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cannibal_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cannibal_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/carnivore_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/carnivore_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/carnivore_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/carnivore_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/chest_opener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/chest_opener.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_alien_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_alien_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_butchered_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_butchered_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_dragon_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_dragon_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_man_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_man_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cooked_toxic_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cooked_toxic_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/creeper_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/creeper_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/cud.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/cud.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/diamond_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/diamond_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/dragon_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/dragon_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/ender_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/ender_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fireproof_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fireproof_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/fish_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/fish_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/furnace_power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/furnace_power.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/gas_bladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/gas_bladder.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/gills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/gills.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/gold_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/gold_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/golem_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/golem_cable.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/golem_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/golem_core.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/golem_plating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/golem_plating.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/herbivore_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/herbivore_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/herbivore_rumen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/herbivore_rumen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/herbivore_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/herbivore_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/inner_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/inner_furnace.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_caeca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_caeca.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/insect_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/insect_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/iron_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/iron_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/iron_scrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/iron_scrap.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/llama_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/llama_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/luss_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/luss_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/mana_reactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/mana_reactor.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/mini_sausage_skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/mini_sausage_skin.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/netherite_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/netherite_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/piston_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/piston_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rabbit_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rabbit_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_alien_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_alien_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_alien_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_alien_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_butchered_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_butchered_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_dragon_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_dragon_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_dragon_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_dragon_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_human_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_human_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_man_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_man_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_rich_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_rich_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_rich_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_rich_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_rich_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_rich_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_rich_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_rich_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_rich_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_rich_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_toxic_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_toxic_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_toxic_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_toxic_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/raw_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/raw_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rich_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rich_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/rotten_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/rotten_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/saltwater_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/saltwater_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/saltwater_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/saltwater_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/saltwater_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/saltwater_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/sausage_skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/sausage_skin.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/shifting_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/shifting_leaves.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/shulker_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/shulker_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/silk_gland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/silk_gland.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_appendix.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_heart.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_intestine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_kidney.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_liver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_lung.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_animal_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_animal_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_aquatic_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_aquatic_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_fish_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_fish_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_gills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_gills.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/small_springy_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/small_springy_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/spleen.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/springy_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/springy_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/stone_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/stone_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/swift_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/swift_muscle.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/venom_gland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/venom_gland.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/volatile_stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/volatile_stomach.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/vuld_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/vuld_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/withered_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/withered_rib.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/withered_spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/withered_spine.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/wooden_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/wooden_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/models/item/writhing_soulsand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/models/item/writhing_soulsand.json -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/active_blaze_rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/active_blaze_rod.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_kidney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_kidney.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_liver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_liver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/animal_stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/animal_stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/aquatic_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/aquatic_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/brutish_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/brutish_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/fireproof_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/fireproof_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/fireproof_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/fireproof_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/fish_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/fish_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/gills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/gills.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/llama_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/llama_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/shulker_spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/shulker_spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/small_gills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/small_gills.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/animal/swift_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/animal/swift_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/appendix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/appendix.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/batet_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/batet_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/blaze_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/blaze_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/blaze_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/blaze_shell.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/chest_opener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/chest_opener.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/creeper_appendix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/creeper_appendix.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/diamond_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/diamond_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_kidney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_kidney.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_liver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_liver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/dragon/dragon_spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/dragon/dragon_spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_appendix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_appendix.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_intestine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_intestine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_kidney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_kidney.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_liver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_liver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/ender_stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/ender_stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/alien_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/alien_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/burnt_meat_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/burnt_meat_chunk.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/cooked_man_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/cooked_man_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/dragon_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/dragon_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/human_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/human_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/mini_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/mini_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_alien_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_alien_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_dragon_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_dragon_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_man_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_man_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_mini_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_mini_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_organ_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_organ_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_rich_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_rich_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/raw_toxic_meat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/raw_toxic_meat.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/rich_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/rich_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/rotten_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/rotten_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/sausage_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/sausage_skin.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/food/toxic_sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/food/toxic_sausage.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/gas_bladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/gas_bladder.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/gold_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/gold_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/golem/golem_cable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/golem/golem_cable.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/golem/golem_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/golem/golem_core.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/golem/golem_plating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/golem/golem_plating.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/golem/inner_furnace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/golem/inner_furnace.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/golem/piston_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/golem/piston_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/insect_caeca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/insect_caeca.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/insect_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/insect_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/insect_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/insect_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/insect_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/insect_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/insect_stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/insect_stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/silk_gland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/silk_gland.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/insect/venom_gland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/insect/venom_gland.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/intestine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/intestine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/iron_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/iron_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/iron_scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/iron_scrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/kidney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/kidney.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/liver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/liver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/luss_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/luss_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/mana_reactor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/mana_reactor.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/netherite_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/netherite_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/rabbit_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/rabbit_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/saltwater_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/saltwater_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/saltwater_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/saltwater_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/saltwater_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/saltwater_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/shifting_leaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/shifting_leaves.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/stone_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/stone_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_kidney.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_kidney.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_liver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_liver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_lung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_lung.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_muscle.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_spleen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_spleen.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/rotten_stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/rotten_stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/withered_rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/withered_rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/undead/withered_spine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/undead/withered_spine.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/volatile_stomach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/volatile_stomach.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/vuld_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/vuld_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/item/wooden_cleaver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/item/wooden_cleaver.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/mob_effect/furnace_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/mob_effect/furnace_power.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/mob_effect/organ_rejection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/mob_effect/organ_rejection.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/mob_effect/ruminating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/mob_effect/ruminating.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/mob_effect/silk_cooldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/mob_effect/silk_cooldown.png -------------------------------------------------------------------------------- /src/main/resources/assets/chestcavity/textures/mob_effect/venom_cooldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/assets/chestcavity/textures/mob_effect/venom_cooldown.png -------------------------------------------------------------------------------- /src/main/resources/chestcavity.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/chestcavity.mixins.json -------------------------------------------------------------------------------- /src/main/resources/data/anthropophagy/tags/items/flesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/anthropophagy/tags/items/flesh.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/bones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/c/tags/items/bones.json -------------------------------------------------------------------------------- /src/main/resources/data/c/tags/items/raw_meats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/c/tags/items/raw_meats.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/brutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/brutes.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/carnivores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/carnivores.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/dolphins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/dolphins.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/goat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/goat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/herbivores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/herbivores.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/horse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/horse.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/large_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/large_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/llamas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/llamas.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/omnivores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/omnivores.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/pufferfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/pufferfish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/rabbits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/rabbits.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/ruminants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/ruminants.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/small_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/small_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/animals/turtles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/animals/turtles.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/constructs/blazes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/constructs/blazes.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/example.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/humanoids/endermen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/humanoids/endermen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/humanoids/humans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/humanoids/humans.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/humanoids/players.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/humanoids/players.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/insects/bees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/insects/bees.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/insects/insects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/insects/insects.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/insects/spiders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/insects/spiders.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/undead/skeletons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/undead/skeletons.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/undead/withers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/undead/withers.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/entity_assignment/undead/zombies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/entity_assignment/undead/zombies.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/appendix_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/appendix_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/gills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/gills.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/heart_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/heart_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/intestine_carnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/intestine_carnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/intestine_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/intestine_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/intestine_herbivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/intestine_herbivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/kidney_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/kidney_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/liver_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/liver_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/lung_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/lung_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/lung_llama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/lung_llama.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_aquatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_aquatic.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_brutish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_brutish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_springy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_springy.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/muscle_swift.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/muscle_swift.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/rib_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/rib_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/spine_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/spine_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/spleen_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/spleen_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/stomach_carnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/stomach_carnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/stomach_fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/stomach_fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/stomach_herbivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/stomach_herbivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/animal/stomach_rumen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/animal/stomach_rumen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/blaze/active_blaze_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/blaze/active_blaze_rod.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/blaze/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/blaze/core.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/blaze/shell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/blaze/shell.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/mana_reactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/mana_reactor.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/dragon/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/dragon/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/enderman/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/enderman/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/golem/cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/golem/cable.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/golem/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/golem/core.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/golem/inner_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/golem/inner_furnace.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/golem/muscle_piston.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/golem/muscle_piston.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/golem/plating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/golem/plating.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/human/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/human/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/caeca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/caeca.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/silk_gland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/silk_gland.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/insect/venom_gland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/insect/venom_gland.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/appendix_creeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/appendix_creeper.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/gas_bladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/gas_bladder.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/heart_saltwater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/heart_saltwater.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/lung_saltwater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/lung_saltwater.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/muscle_saltwater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/muscle_saltwater.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/shifting_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/shifting_leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/spleen_shulker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/spleen_shulker.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/other/stomach_volatile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/other/stomach_volatile.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/blaze_rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/blaze_rod.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/bone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/bone.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/bone_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/bone_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/crying_obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/crying_obsidian.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/diamond_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/diamond_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/dirt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/dirt.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/emerald_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/emerald_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/glowstone.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/glowstone_dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/glowstone_dust.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/gold_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/gold_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/gunpowder.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/iron_bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/iron_bars.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/iron_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/iron_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/netherite_block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/netherite_block.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/obsidian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/obsidian.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/rotten_flesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/rotten_flesh.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/pseudoorgans/tnt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/pseudoorgans/tnt.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/rotten/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/rotten/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/appendix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/appendix.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/gills.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/gills.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/heart_rabbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/heart_rabbit.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/intestine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/intestine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/kidney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/kidney.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/liver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/liver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/muscle_aquatic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/muscle_aquatic.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/muscle_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/muscle_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/muscle_springy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/muscle_springy.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/spleen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/spleen.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/small_animal/stomach.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/small_animal/stomach.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/wither/rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/wither/rib.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/wither/spine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/wither/spine.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/organs/wither/writhing_soulsand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/organs/wither/writhing_soulsand.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/burnt_meat_chunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/burnt_meat_chunk.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/burnt_meat_chunk_from_smoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/burnt_meat_chunk_from_smoker.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/chest_opener.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/chest_opener.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_alien_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_alien_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_alien_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_alien_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_butchered_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_butchered_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_dragon_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_dragon_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_dragon_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_dragon_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_human_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_human_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_man_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_man_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_man_meat_from_smoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_man_meat_from_smoker.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_rich_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_rich_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_sausage_from_campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_sausage_from_campfire.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_sausage_from_smoker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_sausage_from_smoker.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_toxic_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_toxic_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_toxic_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_toxic_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/cooked_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/cooked_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/diamond_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/diamond_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/gold_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/gold_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/golem_cable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/golem_cable.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/golem_core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/golem_core.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/golem_plating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/golem_plating.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/infuse_venom_gland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/infuse_venom_gland.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/inner_furnace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/inner_furnace.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/iron_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/iron_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/iron_nugget_from_scrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/iron_nugget_from_scrap.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/netherite_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/netherite_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/piston_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/piston_muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_alien_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_alien_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_dragon_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_dragon_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_human_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_human_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_mini_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_mini_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_rich_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_rich_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/raw_toxic_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/raw_toxic_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/rotten_sausage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/rotten_sausage.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/saltwater_heart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/saltwater_heart.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/saltwater_lung.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/saltwater_lung.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/saltwater_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/saltwater_muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_alien_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_alien_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_alien_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_alien_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_blaze_powder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_blaze_powder.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_bone_meal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_bone_meal.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_butchered_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_butchered_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_dragon_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_dragon_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_dragon_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_dragon_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_gunpowder.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_human_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_human_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_iron_scrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_iron_scrap.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_leaves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_leaves.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_man_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_man_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_mini_sausage_skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_mini_sausage_skin.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_raw_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_raw_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_rotten_flesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_rotten_flesh.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_rotten_muscle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_rotten_muscle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_sausage_skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_sausage_skin.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_small_butchered_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_small_butchered_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_soul_sand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_soul_sand.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_toxic_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_toxic_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/salvage_toxic_organ_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/salvage_toxic_organ_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/stone_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/stone_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/recipes/wooden_cleaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/recipes/wooden_cleaver.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/burnable_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/burnable_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/butchering_tool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/butchering_tool.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/carnivore_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/carnivore_food.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/iron_repair_material.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/iron_repair_material.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/rotten_food.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/rotten_food.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_alien_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_alien_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_bone_meal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_bone_meal.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_gunpowder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_gunpowder.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_iron_scrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_iron_scrap.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_man_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_man_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/salvageable_toxic_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/salvageable_toxic_meat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/tags/items/small_animal_organs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/tags/items/small_animal_organs.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/brutish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/brutish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/carnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/carnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/dolphin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/dolphin.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/fireproof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/fireproof.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/goat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/goat.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/herbivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/herbivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/horse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/horse.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/large_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/large_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/llama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/llama.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/omnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/omnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/pufferfish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/pufferfish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/rabbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/rabbit.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/ruminant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/ruminant.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/small_carnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/small_carnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/small_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/small_fish.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/small_herbivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/small_herbivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/small_omnivore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/small_omnivore.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/animals/turtle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/animals/turtle.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/constructs/blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/constructs/blaze.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/constructs/iron_golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/constructs/iron_golem.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/constructs/snow_golem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/constructs/snow_golem.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/default.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/example.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/humanoids/enderman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/humanoids/enderman.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/humanoids/human.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/humanoids/human.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/humanoids/player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/humanoids/player.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/insects/bee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/insects/bee.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/insects/cave_spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/insects/cave_spider.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/insects/insect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/insects/insect.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/insects/spider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/insects/spider.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/magical_beasts/creeper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/magical_beasts/creeper.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/magical_beasts/dragon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/magical_beasts/dragon.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/magical_beasts/ghast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/magical_beasts/ghast.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/magical_beasts/shulker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/magical_beasts/shulker.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/magical_beasts/slime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/magical_beasts/slime.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/null.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/undead/skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/undead/skeleton.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/undead/wither.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/undead/wither.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/undead/wither_skeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/undead/wither_skeleton.json -------------------------------------------------------------------------------- /src/main/resources/data/chestcavity/types/undead/zombie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/chestcavity/types/undead/zombie.json -------------------------------------------------------------------------------- /src/main/resources/data/nourish/carbohydrates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/nourish/carbohydrates.json -------------------------------------------------------------------------------- /src/main/resources/data/nourish/fats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/nourish/fats.json -------------------------------------------------------------------------------- /src/main/resources/data/nourish/fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/nourish/fruit.json -------------------------------------------------------------------------------- /src/main/resources/data/nourish/protein.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/nourish/protein.json -------------------------------------------------------------------------------- /src/main/resources/data/nourish/vegetables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/data/nourish/vegetables.json -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tigereye504/chestcavity/HEAD/src/main/resources/fabric.mod.json --------------------------------------------------------------------------------