├── .github ├── ISSUE_TEMPLATE │ ├── 1-bug_report.yml │ ├── 2-crash_report.yml │ ├── 3-feature_request.yml │ └── config.yml └── workflows │ └── gradle-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── common ├── build.gradle └── src │ ├── generated │ └── resources │ │ ├── .cache │ │ ├── 103d9f3f36b01595f1aa5172191e60eff02e6924 │ │ ├── 1edd1aa8a5f5209e40be6ce639ab3fdd92079a0c │ │ ├── 20dae170dba4c8eb919766d5be31700d182da0d9 │ │ ├── 237ed1d533e00e9b8d8148d6061ae61b82e960bb │ │ ├── 4ff5308374b2e7729a466dfe56bd6182ead9b2c3 │ │ ├── 59eb3dbb5f86130e09b3c62d89b9525ee01cf52d │ │ ├── 77038cb024c5999ce280bcb6800e72cf1c655fe7 │ │ ├── 9dc2e1bbb6dbc88d629e62ed955e4c156b6652a3 │ │ ├── d288570b70137f55051bdf585fe1fd764998d579 │ │ ├── d5932a16d3f0544ba1e8cda3b77d0d46f353493b │ │ ├── d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0 │ │ └── ece1a0d38a152b7be1e86680691afdfd6d9fba1f │ │ ├── assets │ │ └── toughasnails │ │ │ ├── equipment │ │ │ ├── leaf.json │ │ │ └── wool.json │ │ │ ├── items │ │ │ ├── apple_juice.json │ │ │ ├── cactus_juice.json │ │ │ ├── charc_os.json │ │ │ ├── chorus_fruit_juice.json │ │ │ ├── copper_dirty_water_canteen.json │ │ │ ├── copper_purified_water_canteen.json │ │ │ ├── copper_water_canteen.json │ │ │ ├── diamond_dirty_water_canteen.json │ │ │ ├── diamond_purified_water_canteen.json │ │ │ ├── diamond_water_canteen.json │ │ │ ├── dirty_water_bottle.json │ │ │ ├── empty_copper_canteen.json │ │ │ ├── empty_diamond_canteen.json │ │ │ ├── empty_gold_canteen.json │ │ │ ├── empty_iron_canteen.json │ │ │ ├── empty_leather_canteen.json │ │ │ ├── empty_netherite_canteen.json │ │ │ ├── glow_berry_juice.json │ │ │ ├── gold_dirty_water_canteen.json │ │ │ ├── gold_purified_water_canteen.json │ │ │ ├── gold_water_canteen.json │ │ │ ├── ice_cream.json │ │ │ ├── iron_dirty_water_canteen.json │ │ │ ├── iron_purified_water_canteen.json │ │ │ ├── iron_water_canteen.json │ │ │ ├── leaf_boots.json │ │ │ ├── leaf_chestplate.json │ │ │ ├── leaf_helmet.json │ │ │ ├── leaf_leggings.json │ │ │ ├── leather_dirty_water_canteen.json │ │ │ ├── leather_purified_water_canteen.json │ │ │ ├── leather_water_canteen.json │ │ │ ├── melon_juice.json │ │ │ ├── netherite_dirty_water_canteen.json │ │ │ ├── netherite_purified_water_canteen.json │ │ │ ├── netherite_water_canteen.json │ │ │ ├── pumpkin_juice.json │ │ │ ├── purified_water_bottle.json │ │ │ ├── rain_collector.json │ │ │ ├── sweet_berry_juice.json │ │ │ ├── tan_icon.json │ │ │ ├── temperature_gauge.json │ │ │ ├── thermometer.json │ │ │ ├── thermoregulator.json │ │ │ ├── water_purifier.json │ │ │ ├── wool_boots.json │ │ │ ├── wool_chestplate.json │ │ │ ├── wool_helmet.json │ │ │ └── wool_leggings.json │ │ │ └── models │ │ │ └── item │ │ │ ├── apple_juice.json │ │ │ ├── cactus_juice.json │ │ │ ├── charc_os.json │ │ │ ├── chorus_fruit_juice.json │ │ │ ├── copper_dirty_water_canteen.json │ │ │ ├── copper_purified_water_canteen.json │ │ │ ├── copper_water_canteen.json │ │ │ ├── diamond_dirty_water_canteen.json │ │ │ ├── diamond_purified_water_canteen.json │ │ │ ├── diamond_water_canteen.json │ │ │ ├── dirty_water_bottle.json │ │ │ ├── empty_copper_canteen.json │ │ │ ├── empty_diamond_canteen.json │ │ │ ├── empty_gold_canteen.json │ │ │ ├── empty_iron_canteen.json │ │ │ ├── empty_leather_canteen.json │ │ │ ├── empty_netherite_canteen.json │ │ │ ├── glow_berry_juice.json │ │ │ ├── gold_dirty_water_canteen.json │ │ │ ├── gold_purified_water_canteen.json │ │ │ ├── gold_water_canteen.json │ │ │ ├── ice_cream.json │ │ │ ├── iron_dirty_water_canteen.json │ │ │ ├── iron_purified_water_canteen.json │ │ │ ├── iron_water_canteen.json │ │ │ ├── leaf_boots.json │ │ │ ├── leaf_boots_amethyst_trim.json │ │ │ ├── leaf_boots_copper_trim.json │ │ │ ├── leaf_boots_diamond_trim.json │ │ │ ├── leaf_boots_emerald_trim.json │ │ │ ├── leaf_boots_gold_trim.json │ │ │ ├── leaf_boots_iron_trim.json │ │ │ ├── leaf_boots_lapis_trim.json │ │ │ ├── leaf_boots_netherite_trim.json │ │ │ ├── leaf_boots_quartz_trim.json │ │ │ ├── leaf_boots_redstone_trim.json │ │ │ ├── leaf_boots_resin_trim.json │ │ │ ├── leaf_chestplate.json │ │ │ ├── leaf_chestplate_amethyst_trim.json │ │ │ ├── leaf_chestplate_copper_trim.json │ │ │ ├── leaf_chestplate_diamond_trim.json │ │ │ ├── leaf_chestplate_emerald_trim.json │ │ │ ├── leaf_chestplate_gold_trim.json │ │ │ ├── leaf_chestplate_iron_trim.json │ │ │ ├── leaf_chestplate_lapis_trim.json │ │ │ ├── leaf_chestplate_netherite_trim.json │ │ │ ├── leaf_chestplate_quartz_trim.json │ │ │ ├── leaf_chestplate_redstone_trim.json │ │ │ ├── leaf_chestplate_resin_trim.json │ │ │ ├── leaf_helmet.json │ │ │ ├── leaf_helmet_amethyst_trim.json │ │ │ ├── leaf_helmet_copper_trim.json │ │ │ ├── leaf_helmet_diamond_trim.json │ │ │ ├── leaf_helmet_emerald_trim.json │ │ │ ├── leaf_helmet_gold_trim.json │ │ │ ├── leaf_helmet_iron_trim.json │ │ │ ├── leaf_helmet_lapis_trim.json │ │ │ ├── leaf_helmet_netherite_trim.json │ │ │ ├── leaf_helmet_quartz_trim.json │ │ │ ├── leaf_helmet_redstone_trim.json │ │ │ ├── leaf_helmet_resin_trim.json │ │ │ ├── leaf_leggings.json │ │ │ ├── leaf_leggings_amethyst_trim.json │ │ │ ├── leaf_leggings_copper_trim.json │ │ │ ├── leaf_leggings_diamond_trim.json │ │ │ ├── leaf_leggings_emerald_trim.json │ │ │ ├── leaf_leggings_gold_trim.json │ │ │ ├── leaf_leggings_iron_trim.json │ │ │ ├── leaf_leggings_lapis_trim.json │ │ │ ├── leaf_leggings_netherite_trim.json │ │ │ ├── leaf_leggings_quartz_trim.json │ │ │ ├── leaf_leggings_redstone_trim.json │ │ │ ├── leaf_leggings_resin_trim.json │ │ │ ├── leather_dirty_water_canteen.json │ │ │ ├── leather_purified_water_canteen.json │ │ │ ├── leather_water_canteen.json │ │ │ ├── melon_juice.json │ │ │ ├── netherite_dirty_water_canteen.json │ │ │ ├── netherite_purified_water_canteen.json │ │ │ ├── netherite_water_canteen.json │ │ │ ├── pumpkin_juice.json │ │ │ ├── purified_water_bottle.json │ │ │ ├── sweet_berry_juice.json │ │ │ ├── tan_icon.json │ │ │ ├── thermometer_00.json │ │ │ ├── thermometer_01.json │ │ │ ├── thermometer_02.json │ │ │ ├── thermometer_03.json │ │ │ ├── thermometer_04.json │ │ │ ├── thermometer_05.json │ │ │ ├── thermometer_06.json │ │ │ ├── thermometer_07.json │ │ │ ├── thermometer_08.json │ │ │ ├── thermometer_09.json │ │ │ ├── thermometer_10.json │ │ │ ├── thermometer_11.json │ │ │ ├── thermometer_12.json │ │ │ ├── thermometer_13.json │ │ │ ├── thermometer_14.json │ │ │ ├── thermometer_15.json │ │ │ ├── thermometer_16.json │ │ │ ├── thermometer_17.json │ │ │ ├── thermometer_18.json │ │ │ ├── thermometer_19.json │ │ │ ├── thermometer_20.json │ │ │ ├── wool_boots.json │ │ │ ├── wool_boots_amethyst_trim.json │ │ │ ├── wool_boots_copper_trim.json │ │ │ ├── wool_boots_diamond_trim.json │ │ │ ├── wool_boots_emerald_trim.json │ │ │ ├── wool_boots_gold_trim.json │ │ │ ├── wool_boots_iron_trim.json │ │ │ ├── wool_boots_lapis_trim.json │ │ │ ├── wool_boots_netherite_trim.json │ │ │ ├── wool_boots_quartz_trim.json │ │ │ ├── wool_boots_redstone_trim.json │ │ │ ├── wool_boots_resin_trim.json │ │ │ ├── wool_chestplate.json │ │ │ ├── wool_chestplate_amethyst_trim.json │ │ │ ├── wool_chestplate_copper_trim.json │ │ │ ├── wool_chestplate_diamond_trim.json │ │ │ ├── wool_chestplate_emerald_trim.json │ │ │ ├── wool_chestplate_gold_trim.json │ │ │ ├── wool_chestplate_iron_trim.json │ │ │ ├── wool_chestplate_lapis_trim.json │ │ │ ├── wool_chestplate_netherite_trim.json │ │ │ ├── wool_chestplate_quartz_trim.json │ │ │ ├── wool_chestplate_redstone_trim.json │ │ │ ├── wool_chestplate_resin_trim.json │ │ │ ├── wool_helmet.json │ │ │ ├── wool_helmet_amethyst_trim.json │ │ │ ├── wool_helmet_copper_trim.json │ │ │ ├── wool_helmet_diamond_trim.json │ │ │ ├── wool_helmet_emerald_trim.json │ │ │ ├── wool_helmet_gold_trim.json │ │ │ ├── wool_helmet_iron_trim.json │ │ │ ├── wool_helmet_lapis_trim.json │ │ │ ├── wool_helmet_netherite_trim.json │ │ │ ├── wool_helmet_quartz_trim.json │ │ │ ├── wool_helmet_redstone_trim.json │ │ │ ├── wool_helmet_resin_trim.json │ │ │ ├── wool_leggings.json │ │ │ ├── wool_leggings_amethyst_trim.json │ │ │ ├── wool_leggings_copper_trim.json │ │ │ ├── wool_leggings_diamond_trim.json │ │ │ ├── wool_leggings_emerald_trim.json │ │ │ ├── wool_leggings_gold_trim.json │ │ │ ├── wool_leggings_iron_trim.json │ │ │ ├── wool_leggings_lapis_trim.json │ │ │ ├── wool_leggings_netherite_trim.json │ │ │ ├── wool_leggings_quartz_trim.json │ │ │ ├── wool_leggings_redstone_trim.json │ │ │ └── wool_leggings_resin_trim.json │ │ └── data │ │ ├── minecraft │ │ └── tags │ │ │ ├── block │ │ │ └── mineable │ │ │ │ ├── axe.json │ │ │ │ └── pickaxe.json │ │ │ ├── damage_type │ │ │ ├── bypasses_armor.json │ │ │ └── bypasses_effects.json │ │ │ ├── enchantment │ │ │ ├── on_random_loot.json │ │ │ ├── tradeable.json │ │ │ └── treasure.json │ │ │ ├── item │ │ │ └── dyeable.json │ │ │ └── point_of_interest_type │ │ │ └── acquirable_job_site.json │ │ └── toughasnails │ │ ├── advancement │ │ └── recipes │ │ │ ├── combat │ │ │ ├── leaf_boots.json │ │ │ ├── leaf_chestplate.json │ │ │ ├── leaf_helmet.json │ │ │ ├── leaf_leggings.json │ │ │ ├── wool_boots.json │ │ │ ├── wool_chestplate.json │ │ │ ├── wool_helmet.json │ │ │ └── wool_leggings.json │ │ │ ├── decorations │ │ │ ├── rain_collector.json │ │ │ ├── thermoregulator.json │ │ │ └── water_purifier.json │ │ │ ├── food │ │ │ ├── apple_juice.json │ │ │ ├── cactus_juice.json │ │ │ ├── charc_os.json │ │ │ ├── chorus_fruit_juice.json │ │ │ ├── glow_berry_juice.json │ │ │ ├── ice_cream.json │ │ │ ├── melon_juice.json │ │ │ ├── pumpkin_juice.json │ │ │ └── sweet_berry_juice.json │ │ │ ├── redstone │ │ │ └── temperature_gauge.json │ │ │ └── tools │ │ │ ├── empty_copper_canteen.json │ │ │ ├── empty_diamond_canteen.json │ │ │ ├── empty_gold_canteen.json │ │ │ ├── empty_iron_canteen.json │ │ │ ├── empty_leather_canteen.json │ │ │ ├── empty_netherite_canteen_smithing.json │ │ │ ├── netherite_dirty_water_canteen_smithing.json │ │ │ ├── netherite_purified_water_canteen_smithing.json │ │ │ ├── netherite_water_canteen_smithing.json │ │ │ └── thermometer.json │ │ ├── damage_type │ │ ├── hyperthermia.json │ │ └── thirst.json │ │ ├── enchantment │ │ ├── thermal_tuning.json │ │ └── water_cleansing.json │ │ ├── loot_table │ │ └── blocks │ │ │ ├── rain_collector.json │ │ │ ├── temperature_gauge.json │ │ │ ├── thermoregulator.json │ │ │ └── water_purifier.json │ │ ├── recipe │ │ ├── apple_juice.json │ │ ├── cactus_juice.json │ │ ├── charc_os.json │ │ ├── chorus_fruit_juice.json │ │ ├── copper_purified_water_canteen.json │ │ ├── copper_water_canteen.json │ │ ├── diamond_purified_water_canteen.json │ │ ├── diamond_water_canteen.json │ │ ├── empty_copper_canteen.json │ │ ├── empty_diamond_canteen.json │ │ ├── empty_gold_canteen.json │ │ ├── empty_iron_canteen.json │ │ ├── empty_leather_canteen.json │ │ ├── empty_netherite_canteen_smithing.json │ │ ├── glow_berry_juice.json │ │ ├── gold_purified_water_canteen.json │ │ ├── gold_water_canteen.json │ │ ├── ice_cream.json │ │ ├── iron_purified_water_canteen.json │ │ ├── iron_water_canteen.json │ │ ├── leaf_boots.json │ │ ├── leaf_chestplate.json │ │ ├── leaf_helmet.json │ │ ├── leaf_leggings.json │ │ ├── leather_purified_water_canteen.json │ │ ├── leather_water_canteen.json │ │ ├── melon_juice.json │ │ ├── netherite_dirty_water_canteen_smithing.json │ │ ├── netherite_purified_water_canteen.json │ │ ├── netherite_purified_water_canteen_smithing.json │ │ ├── netherite_water_canteen.json │ │ ├── netherite_water_canteen_smithing.json │ │ ├── potion.json │ │ ├── pumpkin_juice.json │ │ ├── purified_water_bottle.json │ │ ├── rain_collector.json │ │ ├── sweet_berry_juice.json │ │ ├── temperature_gauge.json │ │ ├── thermometer.json │ │ ├── thermoregulator.json │ │ ├── water_purifier.json │ │ ├── wool_boots.json │ │ ├── wool_chestplate.json │ │ ├── wool_helmet.json │ │ └── wool_leggings.json │ │ └── tags │ │ ├── block │ │ ├── cooling_blocks.json │ │ ├── heating_blocks.json │ │ └── passable_blocks.json │ │ ├── item │ │ ├── cooling_armor.json │ │ ├── cooling_consumed_items.json │ │ ├── cooling_held_items.json │ │ ├── drinks.json │ │ ├── enchantable │ │ │ └── canteen.json │ │ ├── heating_armor.json │ │ ├── heating_consumed_items.json │ │ ├── heating_held_items.json │ │ ├── hydration │ │ │ ├── 100_hydration_drinks.json │ │ │ ├── 10_hydration_drinks.json │ │ │ ├── 20_hydration_drinks.json │ │ │ ├── 30_hydration_drinks.json │ │ │ ├── 40_hydration_drinks.json │ │ │ ├── 50_hydration_drinks.json │ │ │ ├── 60_hydration_drinks.json │ │ │ ├── 70_hydration_drinks.json │ │ │ ├── 80_hydration_drinks.json │ │ │ └── 90_hydration_drinks.json │ │ ├── poison_chance │ │ │ ├── 100_poison_chance_drinks.json │ │ │ ├── 25_poison_chance_drinks.json │ │ │ ├── 50_poison_chance_drinks.json │ │ │ └── 75_poison_chance_drinks.json │ │ ├── thermoregulator_cooling_fuel.json │ │ ├── thermoregulator_heating_fuel.json │ │ └── thirst │ │ │ ├── 10_thirst_drinks.json │ │ │ ├── 11_thirst_drinks.json │ │ │ ├── 12_thirst_drinks.json │ │ │ ├── 13_thirst_drinks.json │ │ │ ├── 14_thirst_drinks.json │ │ │ ├── 15_thirst_drinks.json │ │ │ ├── 16_thirst_drinks.json │ │ │ ├── 17_thirst_drinks.json │ │ │ ├── 18_thirst_drinks.json │ │ │ ├── 19_thirst_drinks.json │ │ │ ├── 1_thirst_drinks.json │ │ │ ├── 20_thirst_drinks.json │ │ │ ├── 2_thirst_drinks.json │ │ │ ├── 3_thirst_drinks.json │ │ │ ├── 4_thirst_drinks.json │ │ │ ├── 5_thirst_drinks.json │ │ │ ├── 6_thirst_drinks.json │ │ │ ├── 7_thirst_drinks.json │ │ │ ├── 8_thirst_drinks.json │ │ │ └── 9_thirst_drinks.json │ │ ├── trim_material │ │ ├── cooling_trims.json │ │ └── heating_trims.json │ │ └── worldgen │ │ └── biome │ │ ├── cold_biomes.json │ │ ├── dirty_water_biomes.json │ │ ├── hot_biomes.json │ │ ├── icy_biomes.json │ │ ├── neutral_biomes.json │ │ ├── purified_water_biomes.json │ │ └── warm_biomes.json │ └── main │ ├── java │ └── toughasnails │ │ ├── api │ │ ├── TANAPI.java │ │ ├── block │ │ │ └── TANBlocks.java │ │ ├── blockentity │ │ │ └── TANBlockEntityTypes.java │ │ ├── container │ │ │ └── TANContainerTypes.java │ │ ├── crafting │ │ │ ├── TANRecipeBookCategories.java │ │ │ ├── TANRecipeSerializers.java │ │ │ └── TANRecipeTypes.java │ │ ├── damagesource │ │ │ └── TANDamageTypes.java │ │ ├── enchantment │ │ │ └── TANEnchantments.java │ │ ├── item │ │ │ └── TANItems.java │ │ ├── particle │ │ │ └── TANParticles.java │ │ ├── player │ │ │ └── ITANPlayer.java │ │ ├── potion │ │ │ ├── TANEffects.java │ │ │ └── TANPotions.java │ │ ├── temperature │ │ │ ├── IPlayerTemperatureModifier.java │ │ │ ├── IPositionalTemperatureModifier.java │ │ │ ├── IProximityBlockModifier.java │ │ │ ├── ITemperature.java │ │ │ ├── TemperatureHelper.java │ │ │ └── TemperatureLevel.java │ │ ├── thirst │ │ │ ├── IThirst.java │ │ │ ├── ThirstHelper.java │ │ │ └── WaterType.java │ │ └── village │ │ │ ├── TANPoiTypes.java │ │ │ └── TANVillagerProfessions.java │ │ ├── block │ │ ├── RainCollectorBlock.java │ │ ├── TemperatureGaugeBlock.java │ │ ├── ThermoregulatorBlock.java │ │ ├── WaterPurifierBlock.java │ │ └── entity │ │ │ ├── TemperatureGaugeBlockEntity.java │ │ │ ├── ThermoregulatorBlockEntity.java │ │ │ └── WaterPurifierBlockEntity.java │ │ ├── client │ │ ├── gui │ │ │ ├── ThermoregulatorScreen.java │ │ │ └── WaterPurifierScreen.java │ │ ├── handler │ │ │ ├── KeyHandler.java │ │ │ ├── LevelRenderHandler.java │ │ │ └── TooltipHandler.java │ │ ├── item │ │ │ └── TemperatureProperty.java │ │ └── particle │ │ │ └── ThermoregulatorParticle.java │ │ ├── config │ │ ├── ClientConfig.java │ │ ├── TemperatureConfig.java │ │ └── ThirstConfig.java │ │ ├── container │ │ ├── ThermoregulatorContainer.java │ │ ├── ThermoregulatorCoolingFuelSlot.java │ │ ├── ThermoregulatorHeatingFuelSlot.java │ │ ├── WaterPurifierFilterSlot.java │ │ ├── WaterPurifierMenu.java │ │ └── WaterPurifierResultSlot.java │ │ ├── core │ │ └── ToughAsNails.java │ │ ├── crafting │ │ └── WaterPurifierRecipe.java │ │ ├── init │ │ ├── ModApi.java │ │ ├── ModArmorMaterials.java │ │ ├── ModBlockEntities.java │ │ ├── ModBlocks.java │ │ ├── ModClient.java │ │ ├── ModCompatibility.java │ │ ├── ModConfig.java │ │ ├── ModContainerTypes.java │ │ ├── ModCrafting.java │ │ ├── ModCreativeTab.java │ │ ├── ModEnchantments.java │ │ ├── ModEquipmentAssets.java │ │ ├── ModItems.java │ │ ├── ModPackets.java │ │ ├── ModParticles.java │ │ ├── ModPotions.java │ │ ├── ModRecipePropertySets.java │ │ ├── ModTags.java │ │ └── ModVillages.java │ │ ├── item │ │ ├── DirtyWaterBottleItem.java │ │ ├── DrinkItem.java │ │ ├── EmptyCanteenItem.java │ │ ├── FilledCanteenItem.java │ │ ├── JuiceItem.java │ │ ├── PurifiedWaterBottleItem.java │ │ └── StackableBowlFoodItem.java │ │ ├── mixin │ │ ├── MixinFoodData.java │ │ ├── MixinLivingEntity.java │ │ ├── MixinPlayer.java │ │ ├── MixinPotionBrewing.java │ │ ├── MixinRecipeManager.java │ │ ├── MixinServerLevel.java │ │ ├── MixinServerPlayer.java │ │ └── client │ │ │ ├── MixinGui.java │ │ │ ├── MixinItemStack.java │ │ │ ├── MixinLocalPlayer.java │ │ │ └── MixinRangeSelectItemModelProperties.java │ │ ├── network │ │ ├── DrinkInWorldPacket.java │ │ ├── UpdateTemperaturePacket.java │ │ └── UpdateThirstPacket.java │ │ ├── potion │ │ └── ThirstEffect.java │ │ ├── temperature │ │ ├── AreaFill.java │ │ ├── BuiltInTemperatureModifier.java │ │ ├── TemperatureData.java │ │ ├── TemperatureHandler.java │ │ ├── TemperatureHelperImpl.java │ │ ├── TemperatureHooksClient.java │ │ └── TemperatureOverlayRenderer.java │ │ └── thirst │ │ ├── ThirstData.java │ │ ├── ThirstHandler.java │ │ ├── ThirstHelperImpl.java │ │ ├── ThirstHooks.java │ │ ├── ThirstHooksClient.java │ │ └── ThirstOverlayRenderer.java │ └── resources │ ├── assets │ └── toughasnails │ │ ├── atlases │ │ └── gui.json │ │ ├── blockstates │ │ ├── rain_collector.json │ │ ├── temperature_gauge.json │ │ ├── thermoregulator.json │ │ └── water_purifier.json │ │ ├── lang │ │ ├── cs_cz.json │ │ ├── de_de.json │ │ ├── en_us.json │ │ ├── es_es.json │ │ ├── fr_fr.json │ │ ├── it_it.json │ │ ├── ja_jp.json │ │ ├── ko_kr.json │ │ ├── lol_us.json │ │ ├── nn_no.json │ │ ├── pl_pl.json │ │ ├── pt_br.json │ │ ├── ru_ru.json │ │ ├── tr_tr.json │ │ ├── uk_ua.json │ │ ├── vi_vn.json │ │ ├── zh_cn.json │ │ └── zh_tw.json │ │ ├── models │ │ ├── block │ │ │ ├── rain_collector.json │ │ │ ├── rain_collector_level1.json │ │ │ ├── rain_collector_level2.json │ │ │ ├── rain_collector_level3.json │ │ │ ├── temperature_gauge.json │ │ │ ├── temperature_gauge_inverted.json │ │ │ ├── thermoregulator.json │ │ │ ├── thermoregulator_active.json │ │ │ ├── thermoregulator_cooling_active.json │ │ │ ├── thermoregulator_heating_active.json │ │ │ ├── water_purifier.json │ │ │ └── water_purifier_filtering.json │ │ └── item │ │ │ ├── rain_collector.json │ │ │ ├── temperature_gauge.json │ │ │ ├── thermoregulator.json │ │ │ └── water_purifier.json │ │ ├── particles │ │ ├── thermoregulator_cool.json │ │ ├── thermoregulator_neutral.json │ │ └── thermoregulator_warm.json │ │ └── textures │ │ ├── block │ │ ├── rain_collector_bottom.png │ │ ├── rain_collector_inner.png │ │ ├── rain_collector_side.png │ │ ├── rain_collector_side_inner.png │ │ ├── rain_collector_top.png │ │ ├── temperature_gauge_inverted_top.png │ │ ├── temperature_gauge_inverted_top.png.mcmeta │ │ ├── temperature_gauge_side.png │ │ ├── temperature_gauge_top.png │ │ ├── temperature_gauge_top.png.mcmeta │ │ ├── thermoregulator_back.png │ │ ├── thermoregulator_front.png │ │ ├── thermoregulator_front_active.png │ │ ├── thermoregulator_front_active.png.mcmeta │ │ ├── thermoregulator_side.png │ │ ├── thermoregulator_side_cooling.png │ │ ├── thermoregulator_side_cooling.png.mcmeta │ │ ├── thermoregulator_side_heating.png │ │ ├── thermoregulator_side_heating.png.mcmeta │ │ ├── thermoregulator_top.png │ │ ├── water_purifier_bottom.png │ │ ├── water_purifier_front.png │ │ ├── water_purifier_inner.png │ │ ├── water_purifier_side.png │ │ └── water_purifier_top.png │ │ ├── entity │ │ ├── equipment │ │ │ ├── humanoid │ │ │ │ ├── leaf.png │ │ │ │ ├── leaf_overlay.png │ │ │ │ ├── wool.png │ │ │ │ └── wool_overlay.png │ │ │ └── humanoid_leggings │ │ │ │ ├── leaf.png │ │ │ │ ├── leaf_overlay.png │ │ │ │ ├── wool.png │ │ │ │ └── wool_overlay.png │ │ ├── villager │ │ │ └── profession │ │ │ │ └── climatologist.png │ │ └── zombie_villager │ │ │ └── profession │ │ │ └── climatologist.png │ │ ├── gui │ │ ├── container │ │ │ ├── thermoregulator.png │ │ │ └── water_purifier.png │ │ ├── icons.png │ │ └── sprites │ │ │ └── hud │ │ │ └── heart │ │ │ ├── overheated_full.png │ │ │ ├── overheated_full_blinking.png │ │ │ ├── overheated_half.png │ │ │ ├── overheated_half_blinking.png │ │ │ ├── overheated_hardcore_full.png │ │ │ ├── overheated_hardcore_full_blinking.png │ │ │ ├── overheated_hardcore_half.png │ │ │ └── overheated_hardcore_half_blinking.png │ │ ├── item │ │ ├── apple_juice.png │ │ ├── cactus_juice.png │ │ ├── charc_os.png │ │ ├── chorus_fruit_juice.png │ │ ├── copper_dirty_water_canteen.png │ │ ├── copper_purified_water_canteen.png │ │ ├── copper_water_canteen.png │ │ ├── diamond_dirty_water_canteen.png │ │ ├── diamond_purified_water_canteen.png │ │ ├── diamond_water_canteen.png │ │ ├── dirty_water_bottle.png │ │ ├── empty_copper_canteen.png │ │ ├── empty_diamond_canteen.png │ │ ├── empty_gold_canteen.png │ │ ├── empty_iron_canteen.png │ │ ├── empty_leather_canteen.png │ │ ├── empty_netherite_canteen.png │ │ ├── glow_berry_juice.png │ │ ├── gold_dirty_water_canteen.png │ │ ├── gold_purified_water_canteen.png │ │ ├── gold_water_canteen.png │ │ ├── ice_cream.png │ │ ├── iron_dirty_water_canteen.png │ │ ├── iron_purified_water_canteen.png │ │ ├── iron_water_canteen.png │ │ ├── leaf_boots.png │ │ ├── leaf_boots_overlay.png │ │ ├── leaf_chestplate.png │ │ ├── leaf_chestplate_overlay.png │ │ ├── leaf_helmet.png │ │ ├── leaf_helmet_overlay.png │ │ ├── leaf_leggings.png │ │ ├── leaf_leggings_overlay.png │ │ ├── leather_dirty_water_canteen.png │ │ ├── leather_purified_water_canteen.png │ │ ├── leather_water_canteen.png │ │ ├── melon_juice.png │ │ ├── netherite_dirty_water_canteen.png │ │ ├── netherite_purified_water_canteen.png │ │ ├── netherite_water_canteen.png │ │ ├── pumpkin_juice.png │ │ ├── purified_water_bottle.png │ │ ├── sweet_berry_juice.png │ │ ├── tan_icon.png │ │ ├── thermometer_00.png │ │ ├── thermometer_01.png │ │ ├── thermometer_02.png │ │ ├── thermometer_03.png │ │ ├── thermometer_04.png │ │ ├── thermometer_05.png │ │ ├── thermometer_06.png │ │ ├── thermometer_07.png │ │ ├── thermometer_08.png │ │ ├── thermometer_09.png │ │ ├── thermometer_10.png │ │ ├── thermometer_11.png │ │ ├── thermometer_12.png │ │ ├── thermometer_13.png │ │ ├── thermometer_14.png │ │ ├── thermometer_15.png │ │ ├── thermometer_16.png │ │ ├── thermometer_17.png │ │ ├── thermometer_18.png │ │ ├── thermometer_19.png │ │ ├── thermometer_20.png │ │ ├── wool_boots.png │ │ ├── wool_boots_overlay.png │ │ ├── wool_chestplate.png │ │ ├── wool_chestplate_overlay.png │ │ ├── wool_helmet.png │ │ ├── wool_helmet_overlay.png │ │ ├── wool_leggings.png │ │ └── wool_leggings_overlay.png │ │ ├── misc │ │ └── hyperthermia_outline.png │ │ ├── mob_effect │ │ ├── climate_clemency.png │ │ ├── hydration.png │ │ ├── ice_resistance.png │ │ ├── internal_chill.png │ │ ├── internal_warmth.png │ │ └── thirst.png │ │ └── particle │ │ ├── thermoregulator_cool_0.png │ │ ├── thermoregulator_cool_1.png │ │ ├── thermoregulator_cool_2.png │ │ ├── thermoregulator_cool_3.png │ │ ├── thermoregulator_neutral_0.png │ │ ├── thermoregulator_neutral_1.png │ │ ├── thermoregulator_neutral_2.png │ │ ├── thermoregulator_neutral_3.png │ │ ├── thermoregulator_warm_0.png │ │ ├── thermoregulator_warm_1.png │ │ ├── thermoregulator_warm_2.png │ │ └── thermoregulator_warm_3.png │ ├── data │ └── toughasnails │ │ ├── loot_table │ │ └── chests │ │ │ └── village │ │ │ └── village_climatologist.json │ │ └── structure │ │ └── village │ │ ├── desert │ │ └── houses │ │ │ └── desert_climatologist_1.nbt │ │ ├── plains │ │ └── houses │ │ │ └── plains_climatologist_1.nbt │ │ ├── savanna │ │ └── houses │ │ │ └── savanna_climatologist_1.nbt │ │ ├── snowy │ │ └── houses │ │ │ └── snowy_climatologist_1.nbt │ │ └── taiga │ │ └── houses │ │ └── taiga_climatologist_1.nbt │ ├── pack.mcmeta │ ├── toughasnails.accesswidener │ ├── toughasnails.mixins.json │ └── toughasnails_logo.png ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── toughasnails │ │ └── fabric │ │ ├── core │ │ └── ToughAsNailsFabric.java │ │ └── mixin │ │ └── client │ │ └── MixinGui.java │ └── resources │ ├── fabric.mod.json │ └── toughasnails.fabric.mixins.json ├── forge ├── build.gradle └── src │ └── main │ ├── java │ └── toughasnails │ │ └── forge │ │ ├── core │ │ └── ToughAsNailsForge.java │ │ └── mixin │ │ ├── MixinTemperatureHelperImpl.java │ │ ├── MixinThermoregulatorBlockEntity.java │ │ ├── MixinWaterPurifierBlockEntity.java │ │ └── client │ │ └── MixinGui.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── mods.toml │ └── toughasnails.forge.mixins.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── build.gradle └── src │ └── main │ ├── java │ └── toughasnails │ │ └── neoforge │ │ ├── core │ │ └── ToughAsNailsNeoForge.java │ │ ├── datagen │ │ ├── DataGenerationHandler.java │ │ ├── ModDamageTypes.java │ │ ├── loot │ │ │ ├── TANBlockLoot.java │ │ │ └── TANLootTableProvider.java │ │ ├── model │ │ │ ├── TANEquipmentAssetProvider.java │ │ │ ├── TANItemModelGenerators.java │ │ │ └── TANModelProvider.java │ │ ├── provider │ │ │ ├── TANBiomeTagsProvider.java │ │ │ ├── TANBlockTagsProvider.java │ │ │ ├── TANDamageTypeTagsProvider.java │ │ │ ├── TANEnchantmentTagsProvider.java │ │ │ ├── TANItemTagsProvider.java │ │ │ ├── TANPoiTypesTagsProvider.java │ │ │ ├── TANRecipeProvider.java │ │ │ └── TANTrimMaterialTagsProvider.java │ │ └── recipes │ │ │ └── WaterPurifierRecipeBuilder.java │ │ └── mixin │ │ └── client │ │ └── MixinGui.java │ └── resources │ ├── META-INF │ ├── accesstransformer.cfg │ └── neoforge.mods.toml │ └── toughasnails.neoforge.mixins.json └── settings.gradle /.github/ISSUE_TEMPLATE/1-bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.github/ISSUE_TEMPLATE/1-bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-crash_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.github/ISSUE_TEMPLATE/2-crash_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.github/ISSUE_TEMPLATE/3-feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/workflows/gradle-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.github/workflows/gradle-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | All rights reserved. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/103d9f3f36b01595f1aa5172191e60eff02e6924: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/103d9f3f36b01595f1aa5172191e60eff02e6924 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/1edd1aa8a5f5209e40be6ce639ab3fdd92079a0c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/1edd1aa8a5f5209e40be6ce639ab3fdd92079a0c -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/20dae170dba4c8eb919766d5be31700d182da0d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/20dae170dba4c8eb919766d5be31700d182da0d9 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/237ed1d533e00e9b8d8148d6061ae61b82e960bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/237ed1d533e00e9b8d8148d6061ae61b82e960bb -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/4ff5308374b2e7729a466dfe56bd6182ead9b2c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/4ff5308374b2e7729a466dfe56bd6182ead9b2c3 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/77038cb024c5999ce280bcb6800e72cf1c655fe7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/77038cb024c5999ce280bcb6800e72cf1c655fe7 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/9dc2e1bbb6dbc88d629e62ed955e4c156b6652a3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/9dc2e1bbb6dbc88d629e62ed955e4c156b6652a3 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/d288570b70137f55051bdf585fe1fd764998d579: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/d288570b70137f55051bdf585fe1fd764998d579 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/d5932a16d3f0544ba1e8cda3b77d0d46f353493b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/d5932a16d3f0544ba1e8cda3b77d0d46f353493b -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0 -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/ece1a0d38a152b7be1e86680691afdfd6d9fba1f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/.cache/ece1a0d38a152b7be1e86680691afdfd6d9fba1f -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/equipment/leaf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/equipment/leaf.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/equipment/wool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/equipment/wool.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/apple_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/apple_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/cactus_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/charc_os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/charc_os.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/chorus_fruit_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/chorus_fruit_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/copper_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/copper_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/copper_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/copper_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/copper_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/copper_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/diamond_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/diamond_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/diamond_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/dirty_water_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/dirty_water_bottle.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_copper_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_copper_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_diamond_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_diamond_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_gold_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_gold_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_iron_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_iron_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_leather_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_leather_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_netherite_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/empty_netherite_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/glow_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/glow_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/gold_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/gold_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/gold_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/ice_cream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/ice_cream.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/iron_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/iron_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/iron_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leaf_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leaf_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leaf_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leaf_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leaf_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leaf_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leaf_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leaf_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leather_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leather_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/leather_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/melon_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/melon_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/netherite_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/netherite_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/netherite_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/netherite_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/netherite_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/netherite_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/pumpkin_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/pumpkin_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/purified_water_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/purified_water_bottle.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/rain_collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/rain_collector.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/sweet_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/sweet_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/tan_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/tan_icon.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/temperature_gauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/temperature_gauge.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/thermometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/thermometer.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/thermoregulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/thermoregulator.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/water_purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/water_purifier.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/wool_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/wool_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/wool_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/wool_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/wool_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/wool_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/wool_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/items/wool_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/apple_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/apple_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/cactus_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/charc_os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/charc_os.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/chorus_fruit_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/chorus_fruit_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/copper_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/copper_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/copper_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/copper_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/diamond_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/diamond_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/diamond_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/diamond_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/dirty_water_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/dirty_water_bottle.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_copper_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_copper_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_diamond_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_diamond_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_gold_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_gold_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_iron_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_iron_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_leather_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_leather_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_netherite_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/empty_netherite_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/glow_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/glow_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/gold_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/gold_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/gold_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/ice_cream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/ice_cream.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/iron_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/iron_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/iron_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_redstone_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_redstone_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_redstone_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_redstone_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_redstone_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_redstone_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leather_dirty_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leather_dirty_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leather_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/leather_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/melon_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/melon_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/netherite_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/netherite_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/pumpkin_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/pumpkin_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/purified_water_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/purified_water_bottle.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/sweet_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/sweet_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/tan_icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/tan_icon.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_00.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_00.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_01.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_02.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_03.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_04.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_05.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_06.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_06.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_07.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_08.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_09.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_10.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_11.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_12.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_13.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_14.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_15.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_16.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_17.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_18.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_19.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/thermometer_20.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_redstone_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_redstone_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_boots_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_redstone_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_redstone_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_amethyst_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_amethyst_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_copper_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_copper_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_diamond_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_diamond_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_emerald_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_emerald_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_gold_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_gold_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_iron_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_iron_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_lapis_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_lapis_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_netherite_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_netherite_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_quartz_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_quartz_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_resin_trim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_resin_trim.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/block/mineable/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/block/mineable/axe.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_effects.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/on_random_loot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/enchantment/on_random_loot.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/tradeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/enchantment/tradeable.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/treasure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/enchantment/treasure.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/item/dyeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/minecraft/tags/item/dyeable.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/apple_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/apple_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/cactus_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/charc_os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/charc_os.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/ice_cream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/ice_cream.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/melon_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/melon_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/pumpkin_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/food/pumpkin_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/tools/thermometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/advancement/recipes/tools/thermometer.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/damage_type/hyperthermia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/damage_type/hyperthermia.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/damage_type/thirst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/damage_type/thirst.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/enchantment/thermal_tuning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/enchantment/thermal_tuning.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/enchantment/water_cleansing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/enchantment/water_cleansing.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/rain_collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/loot_table/blocks/rain_collector.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/temperature_gauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/loot_table/blocks/temperature_gauge.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/thermoregulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/loot_table/blocks/thermoregulator.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/water_purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/loot_table/blocks/water_purifier.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/apple_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/apple_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/cactus_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/cactus_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/charc_os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/charc_os.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/chorus_fruit_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/chorus_fruit_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/copper_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/copper_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/copper_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/copper_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/diamond_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/diamond_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/diamond_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/diamond_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_copper_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_copper_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_diamond_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_diamond_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_gold_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_gold_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_iron_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_iron_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_leather_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_leather_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_netherite_canteen_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/empty_netherite_canteen_smithing.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/glow_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/glow_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/gold_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/gold_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/gold_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/ice_cream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/ice_cream.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/iron_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/iron_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/iron_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leaf_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leaf_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leaf_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leaf_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leather_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leather_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leather_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/leather_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/melon_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/melon_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_purified_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/netherite_purified_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen_smithing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen_smithing.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/potion.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/pumpkin_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/pumpkin_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/purified_water_bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/purified_water_bottle.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/rain_collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/rain_collector.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/sweet_berry_juice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/sweet_berry_juice.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/temperature_gauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/temperature_gauge.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/thermometer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/thermometer.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/thermoregulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/thermoregulator.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/water_purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/water_purifier.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/wool_boots.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_chestplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/wool_chestplate.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/wool_helmet.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/recipe/wool_leggings.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/cooling_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/block/cooling_blocks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/heating_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/block/heating_blocks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/passable_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/block/passable_blocks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/cooling_armor.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_consumed_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/cooling_consumed_items.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_held_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/cooling_held_items.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/enchantable/canteen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/enchantable/canteen.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/heating_armor.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_consumed_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/heating_consumed_items.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_held_items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/heating_held_items.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/100_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/100_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/10_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/10_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/20_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/20_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/30_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/30_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/40_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/40_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/50_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/50_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/60_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/60_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/70_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/70_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/80_hydration_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/hydration/80_hydration_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/90_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/poison_chance/50_poison_chance_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_cooling_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_cooling_fuel.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_heating_fuel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_heating_fuel.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/10_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/10_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/11_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/12_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/13_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/14_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/15_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/16_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/17_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/18_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/19_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/1_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/1_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/20_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/2_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/2_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/3_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/3_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/4_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/5_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/5_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/6_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/6_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/7_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/7_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/8_thirst_drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/item/thirst/8_thirst_drinks.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/9_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/trim_material/cooling_trims.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/trim_material/heating_trims.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/cold_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/cold_biomes.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/dirty_water_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/dirty_water_biomes.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/hot_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/hot_biomes.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/icy_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/icy_biomes.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/neutral_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/neutral_biomes.json -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/purified_water_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/warm_biomes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/generated/resources/data/toughasnails/tags/worldgen/biome/warm_biomes.json -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/TANAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/TANAPI.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/block/TANBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/block/TANBlocks.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/blockentity/TANBlockEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/blockentity/TANBlockEntityTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/container/TANContainerTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/container/TANContainerTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeBookCategories.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/crafting/TANRecipeBookCategories.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeSerializers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/crafting/TANRecipeSerializers.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/crafting/TANRecipeTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/damagesource/TANDamageTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/damagesource/TANDamageTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/enchantment/TANEnchantments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/enchantment/TANEnchantments.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/item/TANItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/item/TANItems.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/particle/TANParticles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/particle/TANParticles.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/player/ITANPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/player/ITANPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/potion/TANEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/potion/TANEffects.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/potion/TANPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/potion/TANPotions.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IPlayerTemperatureModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/IPlayerTemperatureModifier.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IPositionalTemperatureModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/IPositionalTemperatureModifier.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IProximityBlockModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/IProximityBlockModifier.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/ITemperature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/ITemperature.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/TemperatureHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/TemperatureHelper.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/TemperatureLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/temperature/TemperatureLevel.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/thirst/IThirst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/thirst/IThirst.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/thirst/ThirstHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/thirst/ThirstHelper.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/thirst/WaterType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/thirst/WaterType.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/village/TANPoiTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/village/TANPoiTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/village/TANVillagerProfessions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/api/village/TANVillagerProfessions.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/RainCollectorBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/RainCollectorBlock.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/TemperatureGaugeBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/TemperatureGaugeBlock.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/ThermoregulatorBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/ThermoregulatorBlock.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/WaterPurifierBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/WaterPurifierBlock.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/entity/TemperatureGaugeBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/entity/TemperatureGaugeBlockEntity.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/entity/ThermoregulatorBlockEntity.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/block/entity/WaterPurifierBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/block/entity/WaterPurifierBlockEntity.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/gui/ThermoregulatorScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/gui/ThermoregulatorScreen.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/gui/WaterPurifierScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/gui/WaterPurifierScreen.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/handler/KeyHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/handler/KeyHandler.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/handler/LevelRenderHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/handler/LevelRenderHandler.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/handler/TooltipHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/handler/TooltipHandler.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/item/TemperatureProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/item/TemperatureProperty.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/client/particle/ThermoregulatorParticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/client/particle/ThermoregulatorParticle.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/config/ClientConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/config/ClientConfig.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/config/TemperatureConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/config/TemperatureConfig.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/config/ThirstConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/config/ThirstConfig.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/ThermoregulatorContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/ThermoregulatorContainer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/ThermoregulatorCoolingFuelSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/ThermoregulatorCoolingFuelSlot.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/ThermoregulatorHeatingFuelSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/ThermoregulatorHeatingFuelSlot.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/WaterPurifierFilterSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/WaterPurifierFilterSlot.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/WaterPurifierMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/WaterPurifierMenu.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/container/WaterPurifierResultSlot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/container/WaterPurifierResultSlot.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/core/ToughAsNails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/core/ToughAsNails.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/crafting/WaterPurifierRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/crafting/WaterPurifierRecipe.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModApi.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModArmorMaterials.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModArmorMaterials.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModBlockEntities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModBlockEntities.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModBlocks.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModClient.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModCompatibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModCompatibility.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModConfig.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModContainerTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModContainerTypes.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModCrafting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModCrafting.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModCreativeTab.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModCreativeTab.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModEnchantments.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModEnchantments.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModEquipmentAssets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModEquipmentAssets.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModItems.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModPackets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModPackets.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModParticles.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModParticles.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModPotions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModPotions.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModRecipePropertySets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModRecipePropertySets.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModTags.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModVillages.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/init/ModVillages.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/DirtyWaterBottleItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/DirtyWaterBottleItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/DrinkItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/DrinkItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/EmptyCanteenItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/EmptyCanteenItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/FilledCanteenItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/FilledCanteenItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/JuiceItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/JuiceItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/PurifiedWaterBottleItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/PurifiedWaterBottleItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/StackableBowlFoodItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/item/StackableBowlFoodItem.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinFoodData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinFoodData.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinLivingEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinLivingEntity.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinPotionBrewing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinPotionBrewing.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinRecipeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinRecipeManager.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinServerLevel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinServerLevel.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/MixinServerPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/MixinServerPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/client/MixinGui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/client/MixinGui.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/client/MixinItemStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/client/MixinItemStack.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/client/MixinLocalPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/client/MixinLocalPlayer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/mixin/client/MixinRangeSelectItemModelProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/mixin/client/MixinRangeSelectItemModelProperties.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/network/DrinkInWorldPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/network/DrinkInWorldPacket.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/network/UpdateTemperaturePacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/network/UpdateTemperaturePacket.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/network/UpdateThirstPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/network/UpdateThirstPacket.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/potion/ThirstEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/potion/ThirstEffect.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/AreaFill.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/AreaFill.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/BuiltInTemperatureModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/BuiltInTemperatureModifier.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/TemperatureData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/TemperatureData.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/TemperatureHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/TemperatureHandler.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/TemperatureHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/TemperatureHelperImpl.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/TemperatureHooksClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/TemperatureHooksClient.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/temperature/TemperatureOverlayRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/temperature/TemperatureOverlayRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstData.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstHandler.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstHelperImpl.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstHooks.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstHooksClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstHooksClient.java -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/thirst/ThirstOverlayRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/java/toughasnails/thirst/ThirstOverlayRenderer.java -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/atlases/gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/atlases/gui.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/rain_collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/blockstates/rain_collector.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/temperature_gauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/blockstates/temperature_gauge.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/thermoregulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/blockstates/thermoregulator.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/water_purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/blockstates/water_purifier.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/cs_cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/cs_cz.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/de_de.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/es_es.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/it_it.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/ja_jp.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/ko_kr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/lol_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/lol_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/nn_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/nn_no.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/pl_pl.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/pt_br.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/tr_tr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/uk_ua.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/vi_vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/vi_vn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/lang/zh_tw.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/rain_collector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/rain_collector.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/rain_collector_level1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/rain_collector_level1.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/rain_collector_level2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/rain_collector_level2.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/rain_collector_level3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/rain_collector_level3.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/temperature_gauge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/temperature_gauge.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/temperature_gauge_inverted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/temperature_gauge_inverted.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/thermoregulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/thermoregulator.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/thermoregulator_active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/thermoregulator_active.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/thermoregulator_cooling_active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/thermoregulator_cooling_active.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/thermoregulator_heating_active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/thermoregulator_heating_active.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/water_purifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/water_purifier.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/water_purifier_filtering.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/models/block/water_purifier_filtering.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/item/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/rain_collector" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/item/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/temperature_gauge" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/item/thermoregulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/thermoregulator" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/item/water_purifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/water_purifier" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_cool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/particles/thermoregulator_cool.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_neutral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/particles/thermoregulator_neutral.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_warm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/particles/thermoregulator_warm.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/rain_collector_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/rain_collector_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/rain_collector_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/rain_collector_inner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/rain_collector_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/rain_collector_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/rain_collector_side_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/rain_collector_side_inner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/rain_collector_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/rain_collector_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png.mcmeta -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_back.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_front.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_front_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_front_active.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_cooling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_cooling.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_heating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_heating.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/water_purifier_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/water_purifier_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/water_purifier_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/water_purifier_front.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/water_purifier_inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/water_purifier_inner.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/water_purifier_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/water_purifier_side.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/water_purifier_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/water_purifier_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/leaf.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/container/thermoregulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/container/thermoregulator.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/container/water_purifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/container/water_purifier.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/icons.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/apple_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/apple_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/cactus_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/cactus_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/charc_os.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/charc_os.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/chorus_fruit_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/chorus_fruit_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/copper_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/copper_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/copper_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/copper_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/copper_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/copper_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/diamond_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/diamond_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/diamond_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/diamond_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/diamond_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/diamond_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/dirty_water_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/dirty_water_bottle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_copper_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_copper_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_diamond_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_diamond_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_gold_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_gold_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_iron_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_iron_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_leather_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_leather_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/empty_netherite_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/empty_netherite_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/glow_berry_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/glow_berry_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/gold_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/gold_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/gold_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/gold_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/gold_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/gold_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/ice_cream.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/iron_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/iron_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/iron_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/iron_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/iron_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/iron_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_boots.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_boots_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_boots_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_chestplate.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_chestplate_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_chestplate_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_helmet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_helmet_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_helmet_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_leggings.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leaf_leggings_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leaf_leggings_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leather_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leather_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leather_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leather_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/leather_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/leather_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/melon_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/melon_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/netherite_dirty_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/netherite_dirty_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/netherite_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/netherite_water_canteen.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/pumpkin_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/pumpkin_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/purified_water_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/purified_water_bottle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/sweet_berry_juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/sweet_berry_juice.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/tan_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/tan_icon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_00.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_01.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_02.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_03.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_04.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_05.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_06.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_07.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_08.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_09.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_10.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_11.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_12.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_13.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_14.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_15.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_16.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_17.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_18.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_19.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/thermometer_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/thermometer_20.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_boots.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_boots_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_boots_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_chestplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_chestplate.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_chestplate_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_chestplate_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_helmet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_helmet_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_helmet_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_leggings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_leggings.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/wool_leggings_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_leggings_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/misc/hyperthermia_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/misc/hyperthermia_outline.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/climate_clemency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/climate_clemency.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/hydration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/hydration.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/ice_resistance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/ice_resistance.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/internal_chill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/internal_chill.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/internal_warmth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/internal_warmth.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_0.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_cool_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_0.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_neutral_3.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_0.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_1.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_2.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/particle/thermoregulator_warm_3.png -------------------------------------------------------------------------------- /common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /common/src/main/resources/toughasnails.accesswidener: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/toughasnails.accesswidener -------------------------------------------------------------------------------- /common/src/main/resources/toughasnails.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/toughasnails.mixins.json -------------------------------------------------------------------------------- /common/src/main/resources/toughasnails_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/toughasnails_logo.png -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/toughasnails/fabric/core/ToughAsNailsFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/fabric/src/main/java/toughasnails/fabric/core/ToughAsNailsFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/toughasnails/fabric/mixin/client/MixinGui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/fabric/src/main/java/toughasnails/fabric/mixin/client/MixinGui.java -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/toughasnails.fabric.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/fabric/src/main/resources/toughasnails.fabric.mixins.json -------------------------------------------------------------------------------- /forge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/build.gradle -------------------------------------------------------------------------------- /forge/src/main/java/toughasnails/forge/core/ToughAsNailsForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/java/toughasnails/forge/core/ToughAsNailsForge.java -------------------------------------------------------------------------------- /forge/src/main/java/toughasnails/forge/mixin/MixinTemperatureHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/java/toughasnails/forge/mixin/MixinTemperatureHelperImpl.java -------------------------------------------------------------------------------- /forge/src/main/java/toughasnails/forge/mixin/MixinThermoregulatorBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/java/toughasnails/forge/mixin/MixinThermoregulatorBlockEntity.java -------------------------------------------------------------------------------- /forge/src/main/java/toughasnails/forge/mixin/MixinWaterPurifierBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/java/toughasnails/forge/mixin/MixinWaterPurifierBlockEntity.java -------------------------------------------------------------------------------- /forge/src/main/java/toughasnails/forge/mixin/client/MixinGui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/java/toughasnails/forge/mixin/client/MixinGui.java -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /forge/src/main/resources/META-INF/mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/resources/META-INF/mods.toml -------------------------------------------------------------------------------- /forge/src/main/resources/toughasnails.forge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/forge/src/main/resources/toughasnails.forge.mixins.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradlew.bat -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/core/ToughAsNailsNeoForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/core/ToughAsNailsNeoForge.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/DataGenerationHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/DataGenerationHandler.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/ModDamageTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/ModDamageTypes.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/loot/TANBlockLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/loot/TANBlockLoot.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/loot/TANLootTableProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/loot/TANLootTableProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANEquipmentAssetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANEquipmentAssetProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANItemModelGenerators.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANItemModelGenerators.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANModelProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/model/TANModelProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANBiomeTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANBiomeTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANBlockTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANBlockTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANDamageTypeTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANDamageTypeTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANEnchantmentTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANEnchantmentTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANItemTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANItemTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANPoiTypesTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANPoiTypesTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANRecipeProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANRecipeProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANTrimMaterialTagsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/provider/TANTrimMaterialTagsProvider.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/datagen/recipes/WaterPurifierRecipeBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/datagen/recipes/WaterPurifierRecipeBuilder.java -------------------------------------------------------------------------------- /neoforge/src/main/java/toughasnails/neoforge/mixin/client/MixinGui.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/java/toughasnails/neoforge/mixin/client/MixinGui.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/toughasnails.neoforge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/neoforge/src/main/resources/toughasnails.neoforge.mixins.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/settings.gradle --------------------------------------------------------------------------------