├── LICENSE ├── common └── src │ ├── generated │ └── resources │ │ ├── data │ │ ├── toughasnails │ │ │ ├── tags │ │ │ │ ├── item │ │ │ │ │ ├── thirst │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 20_thirst_drinks.json │ │ │ │ │ │ ├── 4_thirst_drinks.json │ │ │ │ │ │ ├── 9_thirst_drinks.json │ │ │ │ │ │ ├── 2_thirst_drinks.json │ │ │ │ │ │ ├── 8_thirst_drinks.json │ │ │ │ │ │ ├── 10_thirst_drinks.json │ │ │ │ │ │ ├── 7_thirst_drinks.json │ │ │ │ │ │ ├── 6_thirst_drinks.json │ │ │ │ │ │ ├── 3_thirst_drinks.json │ │ │ │ │ │ ├── 5_thirst_drinks.json │ │ │ │ │ │ └── 1_thirst_drinks.json │ │ │ │ │ ├── hydration │ │ │ │ │ │ ├── 90_hydration_drinks.json │ │ │ │ │ │ ├── 30_hydration_drinks.json │ │ │ │ │ │ ├── 100_hydration_drinks.json │ │ │ │ │ │ ├── 50_hydration_drinks.json │ │ │ │ │ │ ├── 60_hydration_drinks.json │ │ │ │ │ │ ├── 70_hydration_drinks.json │ │ │ │ │ │ ├── 20_hydration_drinks.json │ │ │ │ │ │ ├── 40_hydration_drinks.json │ │ │ │ │ │ ├── 80_hydration_drinks.json │ │ │ │ │ │ └── 10_hydration_drinks.json │ │ │ │ │ ├── poison_chance │ │ │ │ │ │ ├── 50_poison_chance_drinks.json │ │ │ │ │ │ ├── 100_poison_chance_drinks.json │ │ │ │ │ │ ├── 25_poison_chance_drinks.json │ │ │ │ │ │ └── 75_poison_chance_drinks.json │ │ │ │ │ ├── heating_held_items.json │ │ │ │ │ ├── cooling_consumed_items.json │ │ │ │ │ ├── heating_consumed_items.json │ │ │ │ │ ├── cooling_held_items.json │ │ │ │ │ ├── cooling_armor.json │ │ │ │ │ ├── heating_armor.json │ │ │ │ │ ├── thermoregulator_cooling_fuel.json │ │ │ │ │ └── thermoregulator_heating_fuel.json │ │ │ │ ├── trim_material │ │ │ │ │ ├── cooling_trims.json │ │ │ │ │ └── heating_trims.json │ │ │ │ ├── worldgen │ │ │ │ │ └── biome │ │ │ │ │ │ ├── purified_water_biomes.json │ │ │ │ │ │ ├── dirty_water_biomes.json │ │ │ │ │ │ ├── hot_biomes.json │ │ │ │ │ │ ├── icy_biomes.json │ │ │ │ │ │ ├── warm_biomes.json │ │ │ │ │ │ ├── cold_biomes.json │ │ │ │ │ │ └── neutral_biomes.json │ │ │ │ └── block │ │ │ │ │ ├── passable_blocks.json │ │ │ │ │ ├── heating_blocks.json │ │ │ │ │ └── cooling_blocks.json │ │ │ ├── damage_type │ │ │ │ ├── thirst.json │ │ │ │ └── hyperthermia.json │ │ │ ├── recipe │ │ │ │ ├── gold_water_canteen.json │ │ │ │ ├── iron_water_canteen.json │ │ │ │ ├── leaf_boots.json │ │ │ │ ├── wool_boots.json │ │ │ │ ├── wool_helmet.json │ │ │ │ ├── copper_water_canteen.json │ │ │ │ ├── diamond_water_canteen.json │ │ │ │ ├── leaf_helmet.json │ │ │ │ ├── leather_water_canteen.json │ │ │ │ ├── gold_purified_water_canteen.json │ │ │ │ ├── iron_purified_water_canteen.json │ │ │ │ ├── netherite_water_canteen.json │ │ │ │ ├── copper_purified_water_canteen.json │ │ │ │ ├── diamond_purified_water_canteen.json │ │ │ │ ├── leather_purified_water_canteen.json │ │ │ │ ├── wool_leggings.json │ │ │ │ ├── empty_netherite_canteen_smithing.json │ │ │ │ ├── leaf_chestplate.json │ │ │ │ ├── leaf_leggings.json │ │ │ │ ├── netherite_purified_water_canteen.json │ │ │ │ ├── netherite_water_canteen_smithing.json │ │ │ │ ├── wool_chestplate.json │ │ │ │ ├── empty_gold_canteen.json │ │ │ │ ├── empty_iron_canteen.json │ │ │ │ ├── apple_juice.json │ │ │ │ ├── empty_copper_canteen.json │ │ │ │ ├── empty_diamond_canteen.json │ │ │ │ ├── empty_leather_canteen.json │ │ │ │ ├── cactus_juice.json │ │ │ │ ├── melon_juice.json │ │ │ │ ├── netherite_dirty_water_canteen_smithing.json │ │ │ │ ├── pumpkin_juice.json │ │ │ │ ├── netherite_purified_water_canteen_smithing.json │ │ │ │ ├── rain_collector.json │ │ │ │ ├── chorus_fruit_juice.json │ │ │ │ ├── glow_berry_juice.json │ │ │ │ ├── sweet_berry_juice.json │ │ │ │ ├── thermometer.json │ │ │ │ ├── charc_os.json │ │ │ │ ├── ice_cream.json │ │ │ │ ├── potion.json │ │ │ │ ├── water_purifier.json │ │ │ │ ├── thermoregulator.json │ │ │ │ ├── purified_water_bottle.json │ │ │ │ └── temperature_gauge.json │ │ │ ├── enchantment │ │ │ │ ├── thermal_tuning.json │ │ │ │ └── water_cleansing.json │ │ │ ├── loot_table │ │ │ │ └── blocks │ │ │ │ │ ├── rain_collector.json │ │ │ │ │ ├── thermoregulator.json │ │ │ │ │ ├── water_purifier.json │ │ │ │ │ └── temperature_gauge.json │ │ │ └── advancement │ │ │ │ └── recipes │ │ │ │ ├── combat │ │ │ │ ├── wool_boots.json │ │ │ │ ├── leaf_boots.json │ │ │ │ ├── wool_helmet.json │ │ │ │ ├── leaf_helmet.json │ │ │ │ ├── wool_leggings.json │ │ │ │ ├── leaf_leggings.json │ │ │ │ ├── wool_chestplate.json │ │ │ │ └── leaf_chestplate.json │ │ │ │ ├── food │ │ │ │ ├── apple_juice.json │ │ │ │ ├── charc_os.json │ │ │ │ ├── ice_cream.json │ │ │ │ ├── cactus_juice.json │ │ │ │ └── pumpkin_juice.json │ │ │ │ └── tools │ │ │ │ └── thermometer.json │ │ └── minecraft │ │ │ └── tags │ │ │ ├── damage_type │ │ │ ├── bypasses_effects.json │ │ │ └── bypasses_armor.json │ │ │ ├── point_of_interest_type │ │ │ └── acquirable_job_site.json │ │ │ ├── block │ │ │ └── mineable │ │ │ │ ├── axe.json │ │ │ │ └── pickaxe.json │ │ │ ├── enchantment │ │ │ ├── tradeable.json │ │ │ ├── treasure.json │ │ │ └── on_random_loot.json │ │ │ └── item │ │ │ └── dyeable.json │ │ ├── assets │ │ └── toughasnails │ │ │ ├── items │ │ │ ├── charc_os.json │ │ │ ├── tan_icon.json │ │ │ ├── ice_cream.json │ │ │ ├── apple_juice.json │ │ │ ├── cactus_juice.json │ │ │ ├── melon_juice.json │ │ │ ├── pumpkin_juice.json │ │ │ ├── rain_collector.json │ │ │ ├── thermoregulator.json │ │ │ ├── water_purifier.json │ │ │ ├── chorus_fruit_juice.json │ │ │ ├── dirty_water_bottle.json │ │ │ ├── empty_gold_canteen.json │ │ │ ├── empty_iron_canteen.json │ │ │ ├── glow_berry_juice.json │ │ │ ├── gold_water_canteen.json │ │ │ ├── iron_water_canteen.json │ │ │ ├── sweet_berry_juice.json │ │ │ ├── temperature_gauge.json │ │ │ ├── copper_water_canteen.json │ │ │ ├── empty_copper_canteen.json │ │ │ ├── diamond_water_canteen.json │ │ │ ├── empty_diamond_canteen.json │ │ │ ├── empty_leather_canteen.json │ │ │ ├── empty_netherite_canteen.json │ │ │ ├── leather_water_canteen.json │ │ │ ├── netherite_water_canteen.json │ │ │ ├── purified_water_bottle.json │ │ │ ├── gold_dirty_water_canteen.json │ │ │ ├── iron_dirty_water_canteen.json │ │ │ ├── copper_dirty_water_canteen.json │ │ │ ├── diamond_dirty_water_canteen.json │ │ │ ├── gold_purified_water_canteen.json │ │ │ ├── iron_purified_water_canteen.json │ │ │ ├── leather_dirty_water_canteen.json │ │ │ ├── copper_purified_water_canteen.json │ │ │ ├── diamond_purified_water_canteen.json │ │ │ ├── leather_purified_water_canteen.json │ │ │ ├── netherite_dirty_water_canteen.json │ │ │ └── netherite_purified_water_canteen.json │ │ │ ├── models │ │ │ └── item │ │ │ │ ├── charc_os.json │ │ │ │ ├── tan_icon.json │ │ │ │ ├── apple_juice.json │ │ │ │ ├── ice_cream.json │ │ │ │ ├── melon_juice.json │ │ │ │ ├── cactus_juice.json │ │ │ │ ├── pumpkin_juice.json │ │ │ │ ├── glow_berry_juice.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 │ │ │ │ ├── chorus_fruit_juice.json │ │ │ │ ├── dirty_water_bottle.json │ │ │ │ ├── empty_gold_canteen.json │ │ │ │ ├── empty_iron_canteen.json │ │ │ │ ├── gold_water_canteen.json │ │ │ │ ├── iron_water_canteen.json │ │ │ │ ├── sweet_berry_juice.json │ │ │ │ ├── copper_water_canteen.json │ │ │ │ ├── diamond_water_canteen.json │ │ │ │ ├── empty_copper_canteen.json │ │ │ │ ├── empty_diamond_canteen.json │ │ │ │ ├── empty_leather_canteen.json │ │ │ │ ├── leather_water_canteen.json │ │ │ │ ├── purified_water_bottle.json │ │ │ │ ├── empty_netherite_canteen.json │ │ │ │ ├── netherite_water_canteen.json │ │ │ │ ├── copper_dirty_water_canteen.json │ │ │ │ ├── gold_dirty_water_canteen.json │ │ │ │ ├── iron_dirty_water_canteen.json │ │ │ │ ├── diamond_dirty_water_canteen.json │ │ │ │ ├── gold_purified_water_canteen.json │ │ │ │ ├── iron_purified_water_canteen.json │ │ │ │ ├── leather_dirty_water_canteen.json │ │ │ │ ├── copper_purified_water_canteen.json │ │ │ │ ├── diamond_purified_water_canteen.json │ │ │ │ ├── leather_purified_water_canteen.json │ │ │ │ ├── netherite_dirty_water_canteen.json │ │ │ │ ├── netherite_purified_water_canteen.json │ │ │ │ ├── leaf_boots.json │ │ │ │ ├── leaf_helmet.json │ │ │ │ ├── wool_boots.json │ │ │ │ ├── wool_helmet.json │ │ │ │ ├── leaf_leggings.json │ │ │ │ ├── wool_leggings.json │ │ │ │ ├── leaf_chestplate.json │ │ │ │ ├── wool_chestplate.json │ │ │ │ ├── leaf_boots_gold_trim.json │ │ │ │ ├── leaf_boots_iron_trim.json │ │ │ │ ├── leaf_boots_lapis_trim.json │ │ │ │ ├── leaf_boots_resin_trim.json │ │ │ │ ├── wool_boots_gold_trim.json │ │ │ │ ├── wool_boots_iron_trim.json │ │ │ │ ├── wool_boots_lapis_trim.json │ │ │ │ ├── wool_boots_resin_trim.json │ │ │ │ ├── leaf_boots_copper_trim.json │ │ │ │ ├── leaf_boots_diamond_trim.json │ │ │ │ ├── leaf_boots_emerald_trim.json │ │ │ │ ├── leaf_boots_quartz_trim.json │ │ │ │ ├── leaf_helmet_gold_trim.json │ │ │ │ ├── leaf_helmet_iron_trim.json │ │ │ │ ├── leaf_helmet_lapis_trim.json │ │ │ │ ├── leaf_helmet_resin_trim.json │ │ │ │ ├── wool_boots_copper_trim.json │ │ │ │ ├── wool_boots_diamond_trim.json │ │ │ │ ├── wool_boots_emerald_trim.json │ │ │ │ ├── wool_boots_quartz_trim.json │ │ │ │ ├── wool_helmet_gold_trim.json │ │ │ │ ├── wool_helmet_iron_trim.json │ │ │ │ ├── wool_helmet_lapis_trim.json │ │ │ │ ├── wool_helmet_resin_trim.json │ │ │ │ ├── leaf_boots_amethyst_trim.json │ │ │ │ ├── leaf_boots_netherite_trim.json │ │ │ │ ├── leaf_boots_redstone_trim.json │ │ │ │ ├── leaf_helmet_amethyst_trim.json │ │ │ │ ├── leaf_helmet_copper_trim.json │ │ │ │ ├── leaf_helmet_diamond_trim.json │ │ │ │ ├── leaf_helmet_emerald_trim.json │ │ │ │ ├── leaf_helmet_quartz_trim.json │ │ │ │ ├── leaf_helmet_redstone_trim.json │ │ │ │ ├── leaf_leggings_gold_trim.json │ │ │ │ ├── leaf_leggings_iron_trim.json │ │ │ │ ├── wool_boots_amethyst_trim.json │ │ │ │ ├── wool_boots_netherite_trim.json │ │ │ │ ├── wool_boots_redstone_trim.json │ │ │ │ ├── wool_helmet_amethyst_trim.json │ │ │ │ ├── wool_helmet_copper_trim.json │ │ │ │ ├── wool_helmet_diamond_trim.json │ │ │ │ ├── wool_helmet_emerald_trim.json │ │ │ │ ├── wool_helmet_quartz_trim.json │ │ │ │ ├── wool_helmet_redstone_trim.json │ │ │ │ ├── wool_leggings_gold_trim.json │ │ │ │ ├── wool_leggings_iron_trim.json │ │ │ │ ├── leaf_helmet_netherite_trim.json │ │ │ │ ├── leaf_leggings_copper_trim.json │ │ │ │ ├── leaf_leggings_lapis_trim.json │ │ │ │ ├── leaf_leggings_quartz_trim.json │ │ │ │ ├── leaf_leggings_resin_trim.json │ │ │ │ ├── wool_helmet_netherite_trim.json │ │ │ │ ├── wool_leggings_copper_trim.json │ │ │ │ ├── wool_leggings_lapis_trim.json │ │ │ │ ├── wool_leggings_quartz_trim.json │ │ │ │ ├── wool_leggings_resin_trim.json │ │ │ │ ├── leaf_chestplate_gold_trim.json │ │ │ │ ├── leaf_chestplate_iron_trim.json │ │ │ │ ├── leaf_chestplate_lapis_trim.json │ │ │ │ ├── leaf_chestplate_resin_trim.json │ │ │ │ ├── leaf_leggings_amethyst_trim.json │ │ │ │ ├── leaf_leggings_diamond_trim.json │ │ │ │ ├── leaf_leggings_emerald_trim.json │ │ │ │ ├── leaf_leggings_netherite_trim.json │ │ │ │ ├── leaf_leggings_redstone_trim.json │ │ │ │ ├── wool_chestplate_gold_trim.json │ │ │ │ ├── wool_chestplate_iron_trim.json │ │ │ │ ├── wool_chestplate_lapis_trim.json │ │ │ │ ├── wool_chestplate_resin_trim.json │ │ │ │ ├── wool_leggings_amethyst_trim.json │ │ │ │ ├── wool_leggings_diamond_trim.json │ │ │ │ ├── wool_leggings_emerald_trim.json │ │ │ │ ├── wool_leggings_netherite_trim.json │ │ │ │ ├── wool_leggings_redstone_trim.json │ │ │ │ ├── leaf_chestplate_copper_trim.json │ │ │ │ ├── leaf_chestplate_diamond_trim.json │ │ │ │ ├── leaf_chestplate_emerald_trim.json │ │ │ │ ├── leaf_chestplate_quartz_trim.json │ │ │ │ ├── wool_chestplate_copper_trim.json │ │ │ │ ├── wool_chestplate_diamond_trim.json │ │ │ │ ├── wool_chestplate_emerald_trim.json │ │ │ │ ├── wool_chestplate_quartz_trim.json │ │ │ │ ├── leaf_chestplate_amethyst_trim.json │ │ │ │ ├── leaf_chestplate_netherite_trim.json │ │ │ │ ├── leaf_chestplate_redstone_trim.json │ │ │ │ ├── wool_chestplate_amethyst_trim.json │ │ │ │ ├── wool_chestplate_netherite_trim.json │ │ │ │ └── wool_chestplate_redstone_trim.json │ │ │ └── equipment │ │ │ └── wool.json │ │ └── .cache │ │ ├── 4ff5308374b2e7729a466dfe56bd6182ead9b2c3 │ │ ├── ece1a0d38a152b7be1e86680691afdfd6d9fba1f │ │ ├── d5932a16d3f0544ba1e8cda3b77d0d46f353493b │ │ ├── 237ed1d533e00e9b8d8148d6061ae61b82e960bb │ │ ├── 1edd1aa8a5f5209e40be6ce639ab3fdd92079a0c │ │ ├── 103d9f3f36b01595f1aa5172191e60eff02e6924 │ │ ├── 59eb3dbb5f86130e09b3c62d89b9525ee01cf52d │ │ └── d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0 │ └── main │ ├── resources │ ├── assets │ │ └── toughasnails │ │ │ ├── models │ │ │ ├── item │ │ │ │ ├── thermoregulator.json │ │ │ │ ├── water_purifier.json │ │ │ │ ├── temperature_gauge.json │ │ │ │ └── rain_collector.json │ │ │ └── block │ │ │ │ ├── temperature_gauge.json │ │ │ │ └── temperature_gauge_inverted.json │ │ │ ├── textures │ │ │ ├── block │ │ │ │ ├── thermoregulator_front_active.png.mcmeta │ │ │ │ ├── rain_collector_side.png │ │ │ │ ├── rain_collector_top.png │ │ │ │ ├── thermoregulator_top.png │ │ │ │ ├── water_purifier_side.png │ │ │ │ ├── water_purifier_top.png │ │ │ │ ├── rain_collector_bottom.png │ │ │ │ ├── rain_collector_inner.png │ │ │ │ ├── temperature_gauge_top.png │ │ │ │ ├── thermoregulator_back.png │ │ │ │ ├── thermoregulator_front.png │ │ │ │ ├── thermoregulator_side.png │ │ │ │ ├── water_purifier_bottom.png │ │ │ │ ├── water_purifier_front.png │ │ │ │ ├── water_purifier_inner.png │ │ │ │ ├── temperature_gauge_side.png │ │ │ │ ├── rain_collector_side_inner.png │ │ │ │ ├── thermoregulator_front_active.png │ │ │ │ ├── thermoregulator_side_cooling.png │ │ │ │ ├── thermoregulator_side_heating.png │ │ │ │ ├── temperature_gauge_inverted_top.png │ │ │ │ ├── temperature_gauge_top.png.mcmeta │ │ │ │ ├── temperature_gauge_inverted_top.png.mcmeta │ │ │ │ ├── thermoregulator_side_cooling.png.mcmeta │ │ │ │ └── thermoregulator_side_heating.png.mcmeta │ │ │ ├── gui │ │ │ │ ├── icons.png │ │ │ │ ├── container │ │ │ │ │ ├── thermoregulator.png │ │ │ │ │ └── water_purifier.png │ │ │ │ └── sprites │ │ │ │ │ └── hud │ │ │ │ │ └── heart │ │ │ │ │ ├── overheated_full.png │ │ │ │ │ ├── overheated_half.png │ │ │ │ │ ├── overheated_full_blinking.png │ │ │ │ │ ├── overheated_half_blinking.png │ │ │ │ │ ├── overheated_hardcore_full.png │ │ │ │ │ ├── overheated_hardcore_half.png │ │ │ │ │ ├── overheated_hardcore_full_blinking.png │ │ │ │ │ └── overheated_hardcore_half_blinking.png │ │ │ ├── item │ │ │ │ ├── charc_os.png │ │ │ │ ├── ice_cream.png │ │ │ │ ├── leaf_boots.png │ │ │ │ ├── tan_icon.png │ │ │ │ ├── wool_boots.png │ │ │ │ ├── apple_juice.png │ │ │ │ ├── cactus_juice.png │ │ │ │ ├── leaf_helmet.png │ │ │ │ ├── melon_juice.png │ │ │ │ ├── wool_helmet.png │ │ │ │ ├── leaf_chestplate.png │ │ │ │ ├── leaf_leggings.png │ │ │ │ ├── pumpkin_juice.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_chestplate.png │ │ │ │ ├── wool_leggings.png │ │ │ │ ├── glow_berry_juice.png │ │ │ │ ├── sweet_berry_juice.png │ │ │ │ ├── chorus_fruit_juice.png │ │ │ │ ├── copper_water_canteen.png │ │ │ │ ├── dirty_water_bottle.png │ │ │ │ ├── empty_copper_canteen.png │ │ │ │ ├── empty_gold_canteen.png │ │ │ │ ├── empty_iron_canteen.png │ │ │ │ ├── gold_water_canteen.png │ │ │ │ ├── iron_water_canteen.png │ │ │ │ ├── leaf_boots_overlay.png │ │ │ │ ├── leaf_helmet_overlay.png │ │ │ │ ├── wool_boots_overlay.png │ │ │ │ ├── wool_helmet_overlay.png │ │ │ │ ├── diamond_water_canteen.png │ │ │ │ ├── empty_diamond_canteen.png │ │ │ │ ├── empty_leather_canteen.png │ │ │ │ ├── leaf_leggings_overlay.png │ │ │ │ ├── leather_water_canteen.png │ │ │ │ ├── purified_water_bottle.png │ │ │ │ ├── wool_leggings_overlay.png │ │ │ │ ├── empty_netherite_canteen.png │ │ │ │ ├── gold_dirty_water_canteen.png │ │ │ │ ├── iron_dirty_water_canteen.png │ │ │ │ ├── leaf_chestplate_overlay.png │ │ │ │ ├── netherite_water_canteen.png │ │ │ │ ├── wool_chestplate_overlay.png │ │ │ │ ├── copper_dirty_water_canteen.png │ │ │ │ ├── diamond_dirty_water_canteen.png │ │ │ │ ├── gold_purified_water_canteen.png │ │ │ │ ├── iron_purified_water_canteen.png │ │ │ │ ├── leather_dirty_water_canteen.png │ │ │ │ ├── copper_purified_water_canteen.png │ │ │ │ ├── diamond_purified_water_canteen.png │ │ │ │ ├── leather_purified_water_canteen.png │ │ │ │ ├── netherite_dirty_water_canteen.png │ │ │ │ └── netherite_purified_water_canteen.png │ │ │ ├── mob_effect │ │ │ │ ├── thirst.png │ │ │ │ ├── hydration.png │ │ │ │ ├── ice_resistance.png │ │ │ │ ├── internal_chill.png │ │ │ │ ├── climate_clemency.png │ │ │ │ └── internal_warmth.png │ │ │ ├── misc │ │ │ │ └── hyperthermia_outline.png │ │ │ ├── entity │ │ │ │ ├── equipment │ │ │ │ │ ├── humanoid │ │ │ │ │ │ ├── leaf.png │ │ │ │ │ │ ├── wool.png │ │ │ │ │ │ ├── leaf_overlay.png │ │ │ │ │ │ └── wool_overlay.png │ │ │ │ │ └── humanoid_leggings │ │ │ │ │ │ ├── leaf.png │ │ │ │ │ │ ├── wool.png │ │ │ │ │ │ ├── leaf_overlay.png │ │ │ │ │ │ └── wool_overlay.png │ │ │ │ ├── villager │ │ │ │ │ └── profession │ │ │ │ │ │ └── climatologist.png │ │ │ │ └── zombie_villager │ │ │ │ │ └── profession │ │ │ │ │ └── climatologist.png │ │ │ └── particle │ │ │ │ ├── thermoregulator_cool_0.png │ │ │ │ ├── thermoregulator_cool_1.png │ │ │ │ ├── thermoregulator_cool_2.png │ │ │ │ ├── thermoregulator_cool_3.png │ │ │ │ ├── thermoregulator_warm_0.png │ │ │ │ ├── thermoregulator_warm_1.png │ │ │ │ ├── thermoregulator_warm_2.png │ │ │ │ ├── thermoregulator_warm_3.png │ │ │ │ ├── thermoregulator_neutral_0.png │ │ │ │ ├── thermoregulator_neutral_1.png │ │ │ │ ├── thermoregulator_neutral_2.png │ │ │ │ └── thermoregulator_neutral_3.png │ │ │ ├── atlases │ │ │ └── gui.json │ │ │ ├── particles │ │ │ ├── thermoregulator_cool.json │ │ │ ├── thermoregulator_warm.json │ │ │ └── thermoregulator_neutral.json │ │ │ └── blockstates │ │ │ ├── temperature_gauge.json │ │ │ └── rain_collector.json │ ├── toughasnails_logo.png │ ├── pack.mcmeta │ ├── data │ │ └── toughasnails │ │ │ └── structure │ │ │ └── village │ │ │ ├── snowy │ │ │ └── houses │ │ │ │ └── snowy_climatologist_1.nbt │ │ │ ├── taiga │ │ │ └── houses │ │ │ │ └── taiga_climatologist_1.nbt │ │ │ ├── desert │ │ │ └── houses │ │ │ │ └── desert_climatologist_1.nbt │ │ │ ├── plains │ │ │ └── houses │ │ │ │ └── plains_climatologist_1.nbt │ │ │ └── savanna │ │ │ └── houses │ │ │ └── savanna_climatologist_1.nbt │ └── toughasnails.mixins.json │ └── java │ └── toughasnails │ ├── api │ ├── particle │ │ └── TANParticles.java │ ├── TANAPI.java │ ├── player │ │ └── ITANPlayer.java │ ├── crafting │ │ ├── TANRecipeBookCategories.java │ │ ├── TANRecipeTypes.java │ │ └── TANRecipeSerializers.java │ ├── container │ │ └── TANContainerTypes.java │ ├── temperature │ │ ├── IPlayerTemperatureModifier.java │ │ ├── IPositionalTemperatureModifier.java │ │ └── IProximityBlockModifier.java │ ├── potion │ │ ├── TANPotions.java │ │ └── TANEffects.java │ ├── block │ │ └── TANBlocks.java │ ├── blockentity │ │ └── TANBlockEntityTypes.java │ └── thirst │ │ └── WaterType.java │ ├── item │ ├── JuiceItem.java │ ├── PurifiedWaterBottleItem.java │ └── DirtyWaterBottleItem.java │ └── init │ └── ModApi.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .github └── ISSUE_TEMPLATE │ └── config.yml ├── README.md ├── .gitignore ├── fabric └── src │ └── main │ └── resources │ └── toughasnails.fabric.mixins.json ├── neoforge └── src │ └── main │ └── resources │ └── toughasnails.neoforge.mixins.json └── forge └── src └── main └── resources └── toughasnails.forge.mixins.json /LICENSE: -------------------------------------------------------------------------------- 1 | All rights reserved. -------------------------------------------------------------------------------- /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/20_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /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/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/item/hydration/90_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/purified_water_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/poison_chance/50_poison_chance_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /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/models/item/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/temperature_gauge" 3 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_effects.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:thirst" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_held_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:lava_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/item/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "toughasnails:block/rain_collector" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_consumed_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:ice_cream" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_consumed_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:charc_os" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/2_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:milk_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_held_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:powder_snow_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/30_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:milk_bucket" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/8_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:apple_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/toughasnails_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/toughasnails_logo.png -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/100_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:cactus_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/50_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:melon_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/60_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:pumpkin_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/70_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:apple_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/10_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:chorus_fruit_juice" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Resources used for Tough As Nails", 4 | "pack_format": 13 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:climatologist" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_front_active.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 1 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/poison_chance/100_poison_chance_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ominous_bottle" 4 | ] 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/charc_os.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/charc_os" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/tan_icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/tan_icon" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:hyperthermia", 4 | "toughasnails:thirst" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/ice_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/ice_cream" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/block/mineable/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:rain_collector", 4 | "toughasnails:water_purifier" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/tradeable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:thermal_tuning", 4 | "toughasnails:water_cleansing" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/treasure.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:thermal_tuning", 4 | "toughasnails:water_cleansing" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/apple_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/apple_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/cactus_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/cactus_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/melon_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/melon_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/pumpkin_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/pumpkin_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/block/mineable/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:thermoregulator", 4 | "toughasnails:temperature_gauge" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/enchantment/on_random_loot.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:thermal_tuning", 4 | "toughasnails:water_cleansing" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/7_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:cactus_juice", 4 | "toughasnails:melon_juice" 5 | ] 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:block/rain_collector" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/thermoregulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:block/thermoregulator" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/water_purifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:block/water_purifier" 5 | } 6 | } -------------------------------------------------------------------------------- /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/generated/resources/assets/toughasnails/items/chorus_fruit_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/chorus_fruit_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/dirty_water_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/dirty_water_bottle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_gold_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_gold_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_iron_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_iron_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/glow_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/glow_berry_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/gold_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/iron_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/sweet_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/sweet_berry_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:block/temperature_gauge" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/charc_os.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/charc_os" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/tan_icon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/tan_icon" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/damage_type/thirst.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "toughasnails.thirst", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/copper_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/copper_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_copper_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_copper_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/apple_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/apple_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/ice_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/ice_cream" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/melon_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/melon_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/passable_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:doors", 4 | "#minecraft:trapdoors", 5 | "minecraft:scaffolding" 6 | ] 7 | } -------------------------------------------------------------------------------- /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/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/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/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/wool_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/wool_boots.png -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/diamond_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_diamond_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_diamond_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_leather_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_leather_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/empty_netherite_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/empty_netherite_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/leather_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/netherite_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/netherite_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/purified_water_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/purified_water_bottle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/cactus_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/cactus_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/pumpkin_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/pumpkin_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/damage_type/hyperthermia.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.1, 3 | "message_id": "toughasnails.hyperthermia", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /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/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/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/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/mob_effect/thirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/thirst.png -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/gold_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/iron_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/glow_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/glow_berry_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_00.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_00" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_01.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_01" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_02.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_02" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_03.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_03" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_04" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_05.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_05" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_06.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_06" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_07.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_07" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_08.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_08" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_09.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_09" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_10.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_10" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_11.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_11" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_12" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_13.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_13" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_14.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_14" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_15.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_15" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_16.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_16" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_17.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_17" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_18.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_18" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_19.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_19" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/thermometer_20.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/thermometer_20" 5 | } 6 | } -------------------------------------------------------------------------------- /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_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/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/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_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_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/mob_effect/hydration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/hydration.png -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/copper_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/copper_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/diamond_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/gold_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/iron_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/leather_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/chorus_fruit_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/chorus_fruit_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/dirty_water_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/dirty_water_bottle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_gold_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_gold_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_iron_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_iron_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/gold_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/iron_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/sweet_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/sweet_berry_juice" 5 | } 6 | } -------------------------------------------------------------------------------- /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/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/generated/resources/assets/toughasnails/items/copper_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/copper_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/diamond_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/diamond_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/leather_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/leather_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/items/netherite_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/netherite_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/copper_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/copper_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/diamond_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/diamond_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_copper_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_copper_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_diamond_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_diamond_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_leather_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_leather_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leather_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leather_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/purified_water_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/purified_water_bottle" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/dirty_water_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:mangrove_swamp", 4 | "minecraft:mushroom_fields", 5 | "minecraft:swamp" 6 | ] 7 | } -------------------------------------------------------------------------------- /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_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/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_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/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_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/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_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/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/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_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_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/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_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/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/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/generated/resources/assets/toughasnails/items/netherite_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "model": { 3 | "type": "minecraft:model", 4 | "model": "toughasnails:item/netherite_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/empty_netherite_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/empty_netherite_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/netherite_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/netherite_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /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/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/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_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/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/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/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_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/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_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/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/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/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/internal_warmth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/mob_effect/internal_warmth.png -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: Glitchfiend Discord 4 | url: https://discord.gg/GyyzU6T 5 | about: Please ask general questions here instead of opening issues for them. -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/copper_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/copper_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/gold_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/iron_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/generated/resources/assets/toughasnails/models/item/diamond_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/diamond_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/gold_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/iron_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leather_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leather_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/6_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:glow_berry_juice", 4 | "toughasnails:pumpkin_juice", 5 | "toughasnails:sweet_berry_juice" 6 | ] 7 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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_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/generated/resources/assets/toughasnails/models/item/copper_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/copper_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/diamond_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/diamond_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leather_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leather_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/netherite_dirty_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/netherite_dirty_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /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_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/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/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/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/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/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/generated/resources/assets/toughasnails/models/item/netherite_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/netherite_purified_water_canteen" 5 | } 6 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/20_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:chorus_fruit_juice", 4 | "toughasnails:glow_berry_juice", 5 | "toughasnails:sweet_berry_juice" 6 | ] 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/atlases/gui.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources": [ 3 | { 4 | "type": "directory", 5 | "source": "gui/sprites", 6 | "prefix": "" 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_inverted_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_inverted_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_full.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_half.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/item/netherite_purified_water_canteen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/item/netherite_purified_water_canteen.png -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/cooling_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:leaf_helmet", 4 | "toughasnails:leaf_chestplate", 5 | "toughasnails:leaf_leggings", 6 | "toughasnails:leaf_boots" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/heating_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:wool_helmet", 4 | "toughasnails:wool_chestplate", 5 | "toughasnails:wool_leggings", 6 | "toughasnails:wool_boots" 7 | ] 8 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/leaf_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/leaf_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/wool_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid/wool_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/leaf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/leaf.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/wool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/wool.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/villager/profession/climatologist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/villager/profession/climatologist.png -------------------------------------------------------------------------------- /common/src/main/resources/data/toughasnails/structure/village/snowy/houses/snowy_climatologist_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/data/toughasnails/structure/village/snowy/houses/snowy_climatologist_1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/toughasnails/structure/village/taiga/houses/taiga_climatologist_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/data/toughasnails/structure/village/taiga/houses/taiga_climatologist_1.nbt -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/toughasnails/structure/village/desert/houses/desert_climatologist_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/data/toughasnails/structure/village/desert/houses/desert_climatologist_1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/toughasnails/structure/village/plains/houses/plains_climatologist_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/data/toughasnails/structure/village/plains/houses/plains_climatologist_1.nbt -------------------------------------------------------------------------------- /common/src/main/resources/data/toughasnails/structure/village/savanna/houses/savanna_climatologist_1.nbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/data/toughasnails/structure/village/savanna/houses/savanna_climatologist_1.nbt -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_top.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 30, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 1 10 | ] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/leaf_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/leaf_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/wool_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/equipment/humanoid_leggings/wool_overlay.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/entity/zombie_villager/profession/climatologist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/entity/zombie_villager/profession/climatologist.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_full_blinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_full_blinking.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_half_blinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_half_blinking.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_full.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_half.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
