├── 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 |

2 | 3 | **Tough As Nails** is a **Minecraft mod** that adds various features to increase the game's difficulty, including body temperature and thirst. 4 | 5 | © 2024 Glitchfiend. All rights reserved. 6 | -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/temperature_gauge_inverted_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/gui/sprites/hud/heart/overheated_hardcore_full_blinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_full_blinking.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_half_blinking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glitchfiend/ToughAsNails/HEAD/common/src/main/resources/assets/toughasnails/textures/gui/sprites/hud/heart/overheated_hardcore_half_blinking.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # eclipse 2 | bin 3 | *.launch 4 | .settings 5 | .metadata 6 | .classpath 7 | .project 8 | 9 | # idea 10 | out 11 | *.ipr 12 | *.iws 13 | *.iml 14 | .idea/* 15 | !.idea/scopes 16 | 17 | # gradle 18 | build 19 | .gradle 20 | 21 | # other 22 | eclipse 23 | run 24 | runs -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/4ff5308374b2e7729a466dfe56bd6182ead9b2c3: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3524921 Tags for minecraft:point_of_interest_type mod id toughasnails 2 | 7ccb22b62459a1c793d38a6fafc772b5d19837e0 data/minecraft/tags/point_of_interest_type/acquirable_job_site.json 3 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_daylight_detector", 3 | "textures": { 4 | "side": "toughasnails:block/temperature_gauge_side", 5 | "top": "toughasnails:block/temperature_gauge_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/heating_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fire", 4 | "minecraft:campfire", 5 | "minecraft:lantern", 6 | "minecraft:lava", 7 | "minecraft:magma_block", 8 | "minecraft:lava_cauldron" 9 | ] 10 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_cooling.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 15, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 2, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/textures/block/thermoregulator_side_heating.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": { 3 | "frametime": 15, 4 | "interpolate": true, 5 | "frames": [ 6 | 0, 7 | 1, 8 | 2, 9 | 2, 10 | 2, 11 | 1 12 | ] 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_cool.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "toughasnails:thermoregulator_cool_0", 4 | "toughasnails:thermoregulator_cool_1", 5 | "toughasnails:thermoregulator_cool_2", 6 | "toughasnails:thermoregulator_cool_3" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_warm.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "toughasnails:thermoregulator_warm_0", 4 | "toughasnails:thermoregulator_warm_1", 5 | "toughasnails:thermoregulator_warm_2", 6 | "toughasnails:thermoregulator_warm_3" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/ece1a0d38a152b7be1e86680691afdfd6d9fba1f: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.347491 Equipment Asset Definitions 2 | 4b2945d310c6084cdfa1731f33901d34d6ce4731 assets/toughasnails/equipment/leaf.json 3 | 192c8a743376167dc4e419443577552eb962ef7f assets/toughasnails/equipment/wool.json 4 | -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/models/block/temperature_gauge_inverted.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_daylight_detector", 3 | "textures": { 4 | "side": "toughasnails:block/temperature_gauge_side", 5 | "top": "toughasnails:block/temperature_gauge_inverted_top" 6 | } 7 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/particles/thermoregulator_neutral.json: -------------------------------------------------------------------------------- 1 | { 2 | "textures": [ 3 | "toughasnails:thermoregulator_neutral_0", 4 | "toughasnails:thermoregulator_neutral_1", 5 | "toughasnails:thermoregulator_neutral_2", 6 | "toughasnails:thermoregulator_neutral_3" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/block/cooling_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_fire", 4 | "minecraft:soul_campfire", 5 | "minecraft:soul_lantern", 6 | "minecraft:packed_ice", 7 | "minecraft:blue_ice", 8 | "minecraft:powder_snow_cauldron" 9 | ] 10 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "inverted=false": { 4 | "model": "toughasnails:block/temperature_gauge" 5 | }, 6 | "inverted=true": { 7 | "model": "toughasnails:block/temperature_gauge_inverted" 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_boots_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_boots", 5 | "layer1": "toughasnails:item/leaf_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_boots_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_boots", 5 | "layer1": "toughasnails:item/wool_boots_overlay", 6 | "layer2": "toughasnails:trims/items/boots_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_helmet_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_helmet", 5 | "layer1": "toughasnails:item/leaf_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_helmet_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_helmet", 5 | "layer1": "toughasnails:item/wool_helmet_overlay", 6 | "layer2": "toughasnails:trims/items/helmet_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_leggings_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_leggings", 5 | "layer1": "toughasnails:item/leaf_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_gold_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_gold" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_iron_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_iron" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_lapis_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_lapis" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_resin_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_resin" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_leggings_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_leggings", 5 | "layer1": "toughasnails:item/wool_leggings_overlay", 6 | "layer2": "toughasnails:trims/items/leggings_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_copper_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_copper" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_diamond_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_diamond" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_emerald_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_emerald" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_quartz_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_quartz" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/gold_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:gold_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:gold_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/iron_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:iron_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:iron_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/d5932a16d3f0544ba1e8cda3b77d0d46f353493b: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3494913 Tags for minecraft:damage_type mod id toughasnails 2 | 114a24c8e8dfc4dca5477ef3ceb9cdce6f35c49d data/minecraft/tags/damage_type/bypasses_armor.json 3 | 7bc5233723c7bfc14215cd1f26c7fd14f2da6c81 data/minecraft/tags/damage_type/bypasses_effects.json 4 | -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/leaf_chestplate_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/leaf_chestplate", 5 | "layer1": "toughasnails:item/leaf_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_amethyst_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_amethyst" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_netherite_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_netherite" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/models/item/wool_chestplate_redstone_trim.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "toughasnails:item/wool_chestplate", 5 | "layer1": "toughasnails:item/wool_chestplate_overlay", 6 | "layer2": "toughasnails:trims/items/chestplate_trim_redstone" 7 | } 8 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:leaves" 6 | }, 7 | "pattern": [ 8 | "X X", 9 | "X X" 10 | ], 11 | "result": { 12 | "count": 1, 13 | "id": "toughasnails:leaf_boots" 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:wool" 6 | }, 7 | "pattern": [ 8 | "X X", 9 | "X X" 10 | ], 11 | "result": { 12 | "count": 1, 13 | "id": "toughasnails:wool_boots" 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:wool" 6 | }, 7 | "pattern": [ 8 | "XXX", 9 | "X X" 10 | ], 11 | "result": { 12 | "count": 1, 13 | "id": "toughasnails:wool_helmet" 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/copper_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:copper_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:copper_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/diamond_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:diamond_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:diamond_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:leaves" 6 | }, 7 | "pattern": [ 8 | "XXX", 9 | "X X" 10 | ], 11 | "result": { 12 | "count": 1, 13 | "id": "toughasnails:leaf_helmet" 14 | } 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leather_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:leather_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:leather_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/237ed1d533e00e9b8d8148d6061ae61b82e960bb: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3419832 Tags for minecraft:trim_material mod id toughasnails 2 | 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/toughasnails/tags/trim_material/cooling_trims.json 3 | 35133e95f1c8fdd7a1c21afcc231fc0bffefb9a8 data/toughasnails/tags/trim_material/heating_trims.json 4 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/gold_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:gold_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:gold_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/iron_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:iron_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:iron_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:netherite_dirty_water_canteen" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:netherite_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/copper_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:copper_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:copper_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/diamond_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:diamond_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:diamond_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leather_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:leather_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:leather_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:wool" 6 | }, 7 | "pattern": [ 8 | "XXX", 9 | "X X", 10 | "X X" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:wool_leggings" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_netherite_canteen_smithing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smithing_transform", 3 | "addition": "minecraft:netherite_ingot", 4 | "base": "toughasnails:empty_diamond_canteen", 5 | "result": { 6 | "id": "toughasnails:empty_netherite_canteen" 7 | }, 8 | "template": "minecraft:netherite_upgrade_smithing_template" 9 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:leaves" 6 | }, 7 | "pattern": [ 8 | "X X", 9 | "XXX", 10 | "XXX" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:leaf_chestplate" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/leaf_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:leaves" 6 | }, 7 | "pattern": [ 8 | "XXX", 9 | "X X", 10 | "X X" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:leaf_leggings" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_purified_water_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:netherite_water_canteen" 6 | }, 7 | "purifytime": 200, 8 | "result": { 9 | "count": 1, 10 | "id": "toughasnails:netherite_purified_water_canteen" 11 | } 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_water_canteen_smithing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smithing_transform", 3 | "addition": "minecraft:netherite_ingot", 4 | "base": "toughasnails:diamond_water_canteen", 5 | "result": { 6 | "id": "toughasnails:netherite_water_canteen" 7 | }, 8 | "template": "minecraft:netherite_upgrade_smithing_template" 9 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/wool_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "X": "#minecraft:wool" 6 | }, 7 | "pattern": [ 8 | "X X", 9 | "XXX", 10 | "XXX" 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:wool_chestplate" 15 | } 16 | } -------------------------------------------------------------------------------- /fabric/src/main/resources/toughasnails.fabric.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "package": "toughasnails.fabric.mixin", 4 | "compatibilityLevel": "JAVA_17", 5 | "refmap": "toughasnails.refmap.json", 6 | "mixins": [ 7 | ], 8 | "client": [ 9 | "client.MixinGui" 10 | ], 11 | "injectors": { 12 | "defaultRequire": 1 13 | }, 14 | "minVersion": "0.8.4" 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_gold_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:gold_ingot" 6 | }, 7 | "pattern": [ 8 | " # ", 9 | "# #", 10 | " # " 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:empty_gold_canteen" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_iron_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:iron_ingot" 6 | }, 7 | "pattern": [ 8 | " # ", 9 | "# #", 10 | " # " 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:empty_iron_canteen" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/hot_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:nether_wastes", 4 | "minecraft:crimson_forest", 5 | "minecraft:warped_forest", 6 | "minecraft:basalt_deltas", 7 | "minecraft:desert", 8 | "minecraft:badlands", 9 | "minecraft:wooded_badlands", 10 | "minecraft:eroded_badlands" 11 | ] 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/apple_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:apple" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:apple_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_copper_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:copper_ingot" 6 | }, 7 | "pattern": [ 8 | " # ", 9 | "# #", 10 | " # " 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:empty_copper_canteen" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_diamond_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:diamond" 6 | }, 7 | "pattern": [ 8 | " # ", 9 | "# #", 10 | " # " 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:empty_diamond_canteen" 15 | } 16 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/empty_leather_canteen.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:leather" 6 | }, 7 | "pattern": [ 8 | " # ", 9 | "# #", 10 | " # " 11 | ], 12 | "result": { 13 | "count": 1, 14 | "id": "toughasnails:empty_leather_canteen" 15 | } 16 | } -------------------------------------------------------------------------------- /neoforge/src/main/resources/toughasnails.neoforge.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "package": "toughasnails.neoforge.mixin", 4 | "compatibilityLevel": "JAVA_17", 5 | "refmap": "toughasnails.refmap.json", 6 | "mixins": [ 7 | ], 8 | "client": [ 9 | "client.MixinGui" 10 | ], 11 | "injectors": { 12 | "defaultRequire": 1 13 | }, 14 | "minVersion": "0.8.4" 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/minecraft/tags/item/dyeable.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:leaf_helmet", 4 | "toughasnails:leaf_chestplate", 5 | "toughasnails:leaf_leggings", 6 | "toughasnails:leaf_boots", 7 | "toughasnails:wool_helmet", 8 | "toughasnails:wool_chestplate", 9 | "toughasnails:wool_leggings", 10 | "toughasnails:wool_boots" 11 | ] 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/cactus_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:cactus" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:cactus_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/melon_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:melon_slice" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:melon_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_dirty_water_canteen_smithing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smithing_transform", 3 | "addition": "minecraft:netherite_ingot", 4 | "base": "toughasnails:diamond_dirty_water_canteen", 5 | "result": { 6 | "id": "toughasnails:netherite_dirty_water_canteen" 7 | }, 8 | "template": "minecraft:netherite_upgrade_smithing_template" 9 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/pumpkin_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:pumpkin" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:pumpkin_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/netherite_purified_water_canteen_smithing.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:smithing_transform", 3 | "addition": "minecraft:netherite_ingot", 4 | "base": "toughasnails:diamond_purified_water_canteen", 5 | "result": { 6 | "id": "toughasnails:netherite_purified_water_canteen" 7 | }, 8 | "template": "minecraft:netherite_upgrade_smithing_template" 9 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/particle/TANParticles.java: -------------------------------------------------------------------------------- 1 | package toughasnails.api.particle; 2 | 3 | import net.minecraft.core.particles.SimpleParticleType; 4 | 5 | public class TANParticles 6 | { 7 | public static SimpleParticleType THERMOREGULATOR_COOL; 8 | public static SimpleParticleType THERMOREGULATOR_WARM; 9 | public static SimpleParticleType THERMOREGULATOR_NEUTRAL; 10 | } 11 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "S": "minecraft:string", 6 | "W": "#minecraft:planks" 7 | }, 8 | "pattern": [ 9 | "WSW", 10 | "W W", 11 | "WWW" 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "toughasnails:rain_collector" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/chorus_fruit_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:chorus_fruit" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:chorus_fruit_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/glow_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:glow_berries" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:glow_berry_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/sweet_berry_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shapeless", 3 | "category": "misc", 4 | "group": "juice", 5 | "ingredients": [ 6 | "toughasnails:purified_water_bottle", 7 | "minecraft:sugar", 8 | "minecraft:sweet_berries" 9 | ], 10 | "result": { 11 | "count": 1, 12 | "id": "toughasnails:sweet_berry_juice" 13 | } 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/thermometer.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "equipment", 4 | "key": { 5 | "#": "minecraft:copper_ingot", 6 | "X": "minecraft:redstone" 7 | }, 8 | "pattern": [ 9 | " # ", 10 | "#X#", 11 | " # " 12 | ], 13 | "result": { 14 | "count": 1, 15 | "id": "toughasnails:thermometer" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/3_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:potion", 4 | "toughasnails:leather_water_canteen", 5 | "toughasnails:copper_water_canteen", 6 | "toughasnails:iron_water_canteen", 7 | "toughasnails:gold_water_canteen", 8 | "toughasnails:diamond_water_canteen", 9 | "toughasnails:netherite_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/toughasnails/blockstates/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "level=0": { "model": "toughasnails:block/rain_collector" }, 4 | "level=1": { "model": "toughasnails:block/rain_collector_level1" }, 5 | "level=2": { "model": "toughasnails:block/rain_collector_level2" }, 6 | "level=3": { "model": "toughasnails:block/rain_collector_level3" } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/40_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:potion", 4 | "toughasnails:leather_water_canteen", 5 | "toughasnails:copper_water_canteen", 6 | "toughasnails:iron_water_canteen", 7 | "toughasnails:gold_water_canteen", 8 | "toughasnails:diamond_water_canteen", 9 | "toughasnails:netherite_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/TANAPI.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2023, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api; 6 | 7 | public class TANAPI 8 | { 9 | public static final String MOD_ID = "toughasnails"; 10 | } 11 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/player/ITANPlayer.java: -------------------------------------------------------------------------------- 1 | package toughasnails.api.player; 2 | 3 | import toughasnails.api.temperature.ITemperature; 4 | import toughasnails.api.thirst.IThirst; 5 | 6 | public interface ITANPlayer 7 | { 8 | ITemperature getTemperatureData(); 9 | IThirst getThirstData(); 10 | boolean getClimateClemencyGranted(); 11 | void setClimateClemencyGranted(boolean value); 12 | } 13 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/charc_os.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "#": "minecraft:charcoal", 6 | "B": "minecraft:bowl", 7 | "S": "minecraft:sugar" 8 | }, 9 | "pattern": [ 10 | " # ", 11 | "#S#", 12 | " B " 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "toughasnails:charc_os" 17 | } 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/ice_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "#": "minecraft:snowball", 6 | "B": "minecraft:bowl", 7 | "S": "minecraft:sugar" 8 | }, 9 | "pattern": [ 10 | " # ", 11 | "#S#", 12 | " B " 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "toughasnails:ice_cream" 17 | } 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/poison_chance/25_poison_chance_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:potion", 4 | "toughasnails:leather_water_canteen", 5 | "toughasnails:copper_water_canteen", 6 | "toughasnails:iron_water_canteen", 7 | "toughasnails:gold_water_canteen", 8 | "toughasnails:diamond_water_canteen", 9 | "toughasnails:netherite_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/1edd1aa8a5f5209e40be6ce639ab3fdd92079a0c: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3534926 Tags for minecraft:enchantment mod id vanilla 2 | 0ef1512d105fb2b8c0f389b6cc5fffd07ba5c820 data/minecraft/tags/enchantment/on_random_loot.json 3 | 0ef1512d105fb2b8c0f389b6cc5fffd07ba5c820 data/minecraft/tags/enchantment/tradeable.json 4 | 0ef1512d105fb2b8c0f389b6cc5fffd07ba5c820 data/minecraft/tags/enchantment/treasure.json 5 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_cooling_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:ice_cream", 4 | "minecraft:ice", 5 | "minecraft:packed_ice", 6 | "minecraft:blue_ice", 7 | "minecraft:breeze_rod", 8 | "minecraft:wind_charge", 9 | "minecraft:snowball", 10 | "minecraft:snow", 11 | "minecraft:snow_block", 12 | "minecraft:powder_snow_bucket" 13 | ] 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thermoregulator_heating_fuel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:charc_os", 4 | "minecraft:magma_block", 5 | "minecraft:magma_cream", 6 | "minecraft:blaze_powder", 7 | "minecraft:blaze_rod", 8 | "minecraft:fire_charge", 9 | "minecraft:coal", 10 | "minecraft:charcoal", 11 | "minecraft:coal_block", 12 | "minecraft:lava_bucket" 13 | ] 14 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/potion.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "count": 1, 5 | "id": "toughasnails:dirty_water_bottle" 6 | }, 7 | "purifytime": 400, 8 | "result": { 9 | "components": { 10 | "minecraft:potion_contents": { 11 | "potion": "minecraft:water" 12 | } 13 | }, 14 | "count": 1, 15 | "id": "minecraft:potion" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/water_purifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "C": "minecraft:copper_ingot", 6 | "G": "minecraft:glass", 7 | "W": "#minecraft:planks" 8 | }, 9 | "pattern": [ 10 | "GCG", 11 | "C C", 12 | "WWW" 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "toughasnails:water_purifier" 17 | } 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/thermoregulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "misc", 4 | "key": { 5 | "I": "minecraft:iron_ingot", 6 | "S": "minecraft:smooth_stone", 7 | "T": "toughasnails:thermometer" 8 | }, 9 | "pattern": [ 10 | "SIS", 11 | "ITI", 12 | "SIS" 13 | ], 14 | "result": { 15 | "count": 1, 16 | "id": "toughasnails:thermoregulator" 17 | } 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/purified_water_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "toughasnails:water_purifying", 3 | "input": { 4 | "components": { 5 | "minecraft:potion_contents": { 6 | "potion": "minecraft:water" 7 | } 8 | }, 9 | "count": 1, 10 | "id": "minecraft:potion" 11 | }, 12 | "purifytime": 200, 13 | "result": { 14 | "count": 1, 15 | "id": "toughasnails:purified_water_bottle" 16 | } 17 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/poison_chance/75_poison_chance_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:dirty_water_bottle", 4 | "toughasnails:leather_dirty_water_canteen", 5 | "toughasnails:copper_dirty_water_canteen", 6 | "toughasnails:iron_dirty_water_canteen", 7 | "toughasnails:gold_dirty_water_canteen", 8 | "toughasnails:diamond_dirty_water_canteen", 9 | "toughasnails:netherite_dirty_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/103d9f3f36b01595f1aa5172191e60eff02e6924: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3484912 Registries 2 | 55b6780cec82f4d4f609e750902d114649d4a8ad data/toughasnails/damage_type/hyperthermia.json 3 | eae6d7bc6de6b808206268351a4eb97746f013bf data/toughasnails/damage_type/thirst.json 4 | 0b83414be2d208b5f29e5575e1b11fe45ee59319 data/toughasnails/enchantment/thermal_tuning.json 5 | 776078f24c4c010fd0186baa0a3b13d7cef2ac12 data/toughasnails/enchantment/water_cleansing.json 6 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/5_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:purified_water_bottle", 4 | "toughasnails:leather_purified_water_canteen", 5 | "toughasnails:copper_purified_water_canteen", 6 | "toughasnails:iron_purified_water_canteen", 7 | "toughasnails:gold_purified_water_canteen", 8 | "toughasnails:diamond_purified_water_canteen", 9 | "toughasnails:netherite_purified_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/icy_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ice_spikes", 4 | "minecraft:snowy_taiga", 5 | "minecraft:snowy_plains", 6 | "minecraft:snowy_slopes", 7 | "minecraft:grove", 8 | "minecraft:jagged_peaks", 9 | "minecraft:frozen_peaks", 10 | "minecraft:snowy_beach", 11 | "minecraft:frozen_river", 12 | "minecraft:frozen_ocean", 13 | "minecraft:deep_frozen_ocean" 14 | ] 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/recipe/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:crafting_shaped", 3 | "category": "redstone", 4 | "key": { 5 | "B": "minecraft:brick_slab", 6 | "G": "minecraft:glass", 7 | "Q": "minecraft:quartz", 8 | "T": "toughasnails:thermometer" 9 | }, 10 | "pattern": [ 11 | "GGG", 12 | "QTQ", 13 | "BBB" 14 | ], 15 | "result": { 16 | "count": 1, 17 | "id": "toughasnails:temperature_gauge" 18 | } 19 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/80_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:purified_water_bottle", 4 | "toughasnails:leather_purified_water_canteen", 5 | "toughasnails:copper_purified_water_canteen", 6 | "toughasnails:iron_purified_water_canteen", 7 | "toughasnails:gold_purified_water_canteen", 8 | "toughasnails:diamond_purified_water_canteen", 9 | "toughasnails:netherite_purified_water_canteen" 10 | ] 11 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/warm_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:soul_sand_valley", 4 | "minecraft:lush_caves", 5 | "minecraft:mangrove_swamp", 6 | "minecraft:jungle", 7 | "minecraft:sparse_jungle", 8 | "minecraft:bamboo_jungle", 9 | "minecraft:savanna", 10 | "minecraft:savanna_plateau", 11 | "minecraft:windswept_savanna", 12 | "minecraft:warm_ocean", 13 | "minecraft:mushroom_fields" 14 | ] 15 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/thirst/1_thirst_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:dirty_water_bottle", 4 | "toughasnails:leather_dirty_water_canteen", 5 | "toughasnails:copper_dirty_water_canteen", 6 | "toughasnails:iron_dirty_water_canteen", 7 | "toughasnails:gold_dirty_water_canteen", 8 | "toughasnails:diamond_dirty_water_canteen", 9 | "toughasnails:netherite_dirty_water_canteen", 10 | "minecraft:ominous_bottle" 11 | ] 12 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/item/hydration/10_hydration_drinks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "toughasnails:dirty_water_bottle", 4 | "toughasnails:leather_dirty_water_canteen", 5 | "toughasnails:copper_dirty_water_canteen", 6 | "toughasnails:iron_dirty_water_canteen", 7 | "toughasnails:gold_dirty_water_canteen", 8 | "toughasnails:diamond_dirty_water_canteen", 9 | "toughasnails:netherite_dirty_water_canteen", 10 | "minecraft:ominous_bottle" 11 | ] 12 | } -------------------------------------------------------------------------------- /forge/src/main/resources/toughasnails.forge.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "package": "toughasnails.forge.mixin", 4 | "compatibilityLevel": "JAVA_17", 5 | "refmap": "toughasnails.refmap.json", 6 | "mixins": [ 7 | "MixinTemperatureHelperImpl", 8 | "MixinThermoregulatorBlockEntity", 9 | "MixinWaterPurifierBlockEntity" 10 | ], 11 | "client": [ 12 | "client.MixinGui" 13 | ], 14 | "injectors": { 15 | "defaultRequire": 1 16 | }, 17 | "minVersion": "0.8.4" 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/59eb3dbb5f86130e09b3c62d89b9525ee01cf52d: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3479918 Loot Tables 2 | 8fca2e50f9df3893ec7ecb84fb15e5f83b33508a data/toughasnails/loot_table/blocks/rain_collector.json 3 | 5b982875ef4148c8acb507e82e690b7ffd814749 data/toughasnails/loot_table/blocks/temperature_gauge.json 4 | 3014cc41e7b43922f50ec3eb6c2eb83fbf3201d2 data/toughasnails/loot_table/blocks/thermoregulator.json 5 | 1410cb58946442b13107a7153298bdcdc8ccaacc data/toughasnails/loot_table/blocks/water_purifier.json 6 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/enchantment/thermal_tuning.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "translate": "enchantment.toughasnails.thermal_tuning" 5 | }, 6 | "max_cost": { 7 | "base": 75, 8 | "per_level_above_first": 25 9 | }, 10 | "max_level": 1, 11 | "min_cost": { 12 | "base": 25, 13 | "per_level_above_first": 25 14 | }, 15 | "slots": [ 16 | "chest" 17 | ], 18 | "supported_items": "#minecraft:enchantable/chest_armor", 19 | "weight": 2 20 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/enchantment/water_cleansing.json: -------------------------------------------------------------------------------- 1 | { 2 | "anvil_cost": 4, 3 | "description": { 4 | "translate": "enchantment.toughasnails.water_cleansing" 5 | }, 6 | "max_cost": { 7 | "base": 75, 8 | "per_level_above_first": 25 9 | }, 10 | "max_level": 1, 11 | "min_cost": { 12 | "base": 25, 13 | "per_level_above_first": 25 14 | }, 15 | "slots": [ 16 | "mainhand" 17 | ], 18 | "supported_items": "#toughasnails:enchantable/canteen", 19 | "weight": 2 20 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeBookCategories.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2024, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.crafting; 6 | 7 | import net.minecraft.world.item.crafting.RecipeBookCategory; 8 | 9 | public class TANRecipeBookCategories 10 | { 11 | public static RecipeBookCategory WATER_PURIFYING; 12 | } 13 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/container/TANContainerTypes.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.container; 6 | 7 | import net.minecraft.world.inventory.MenuType; 8 | 9 | public class TANContainerTypes 10 | { 11 | public static MenuType WATER_PURIFIER; 12 | public static MenuType THERMOREGULATOR; 13 | } 14 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IPlayerTemperatureModifier.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.temperature; 6 | 7 | import net.minecraft.world.entity.player.Player; 8 | 9 | public interface IPlayerTemperatureModifier 10 | { 11 | TemperatureLevel modify(Player player, TemperatureLevel current); 12 | } 13 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/rain_collector.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "bonus_rolls": 0.0, 6 | "conditions": [ 7 | { 8 | "condition": "minecraft:survives_explosion" 9 | } 10 | ], 11 | "entries": [ 12 | { 13 | "type": "minecraft:item", 14 | "name": "toughasnails:rain_collector" 15 | } 16 | ], 17 | "rolls": 1.0 18 | } 19 | ], 20 | "random_sequence": "toughasnails:blocks/rain_collector" 21 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/thermoregulator.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "bonus_rolls": 0.0, 6 | "conditions": [ 7 | { 8 | "condition": "minecraft:survives_explosion" 9 | } 10 | ], 11 | "entries": [ 12 | { 13 | "type": "minecraft:item", 14 | "name": "toughasnails:thermoregulator" 15 | } 16 | ], 17 | "rolls": 1.0 18 | } 19 | ], 20 | "random_sequence": "toughasnails:blocks/thermoregulator" 21 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/water_purifier.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "bonus_rolls": 0.0, 6 | "conditions": [ 7 | { 8 | "condition": "minecraft:survives_explosion" 9 | } 10 | ], 11 | "entries": [ 12 | { 13 | "type": "minecraft:item", 14 | "name": "toughasnails:water_purifier" 15 | } 16 | ], 17 | "rolls": 1.0 18 | } 19 | ], 20 | "random_sequence": "toughasnails:blocks/water_purifier" 21 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/loot_table/blocks/temperature_gauge.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:block", 3 | "pools": [ 4 | { 5 | "bonus_rolls": 0.0, 6 | "conditions": [ 7 | { 8 | "condition": "minecraft:survives_explosion" 9 | } 10 | ], 11 | "entries": [ 12 | { 13 | "type": "minecraft:item", 14 | "name": "toughasnails:temperature_gauge" 15 | } 16 | ], 17 | "rolls": 1.0 18 | } 19 | ], 20 | "random_sequence": "toughasnails:blocks/temperature_gauge" 21 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/potion/TANPotions.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.potion; 6 | 7 | import net.minecraft.core.Holder; 8 | import net.minecraft.world.item.alchemy.Potion; 9 | 10 | public class TANPotions 11 | { 12 | public static Holder ICE_RESISTANCE; 13 | public static Holder LONG_ICE_RESISTANCE; 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/JuiceItem.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.item; 6 | 7 | public class JuiceItem extends DrinkItem 8 | { 9 | public JuiceItem(Properties properties) 10 | { 11 | super(properties); 12 | } 13 | 14 | @Override 15 | public boolean canAlwaysDrink() 16 | { 17 | return false; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/block/TANBlocks.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.block; 6 | 7 | import net.minecraft.world.level.block.Block; 8 | 9 | public class TANBlocks 10 | { 11 | public static Block THERMOREGULATOR; 12 | public static Block TEMPERATURE_GAUGE; 13 | public static Block RAIN_COLLECTOR; 14 | public static Block WATER_PURIFIER; 15 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IPositionalTemperatureModifier.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.temperature; 6 | 7 | import net.minecraft.core.BlockPos; 8 | import net.minecraft.world.level.Level; 9 | 10 | public interface IPositionalTemperatureModifier 11 | { 12 | TemperatureLevel modify(Level level, BlockPos pos, TemperatureLevel current); 13 | } 14 | -------------------------------------------------------------------------------- /common/src/generated/resources/.cache/d6a68f98580d9908a43dbfe9cc754bc0c1ac14b0: -------------------------------------------------------------------------------- 1 | // 1.21.11 2025-12-14T21:33:41.3439903 Tags for minecraft:block mod id toughasnails 2 | bffb0fdf09ac6cfbed64666a723e8a78cb784bbd data/minecraft/tags/block/mineable/axe.json 3 | 0342cd45a4d6f790afda91090de45871d9b0ef63 data/minecraft/tags/block/mineable/pickaxe.json 4 | eed9ca8217c04724f67008aba1a0a5edde5697c2 data/toughasnails/tags/block/cooling_blocks.json 5 | 658fab0118eb1ac9896e1b9ab89f2d5ed055a967 data/toughasnails/tags/block/heating_blocks.json 6 | e31d0ccf1dd374df5d89a102ae1829d4411012f6 data/toughasnails/tags/block/passable_blocks.json 7 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/cold_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:the_end", 4 | "minecraft:small_end_islands", 5 | "minecraft:end_midlands", 6 | "minecraft:end_highlands", 7 | "minecraft:end_barrens", 8 | "minecraft:deep_dark", 9 | "minecraft:taiga", 10 | "minecraft:old_growth_spruce_taiga", 11 | "minecraft:old_growth_pine_taiga", 12 | "minecraft:windswept_hills", 13 | "minecraft:windswept_forest", 14 | "minecraft:windswept_gravelly_hills", 15 | "minecraft:cold_ocean", 16 | "minecraft:deep_cold_ocean" 17 | ] 18 | } -------------------------------------------------------------------------------- /common/src/generated/resources/assets/toughasnails/equipment/wool.json: -------------------------------------------------------------------------------- 1 | { 2 | "layers": { 3 | "humanoid": [ 4 | { 5 | "dyeable": { 6 | "color_when_undyed": -6265536 7 | }, 8 | "texture": "toughasnails:wool" 9 | }, 10 | { 11 | "texture": "toughasnails:wool_overlay" 12 | } 13 | ], 14 | "humanoid_leggings": [ 15 | { 16 | "dyeable": { 17 | "color_when_undyed": -6265536 18 | }, 19 | "texture": "toughasnails:wool" 20 | }, 21 | { 22 | "texture": "toughasnails:wool_overlay" 23 | } 24 | ] 25 | } 26 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/PurifiedWaterBottleItem.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.item; 6 | 7 | public class PurifiedWaterBottleItem extends DrinkItem 8 | { 9 | public PurifiedWaterBottleItem(Properties properties) 10 | { 11 | super(properties); 12 | } 13 | 14 | @Override 15 | public boolean canAlwaysDrink() 16 | { 17 | return false; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/blockentity/TANBlockEntityTypes.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.blockentity; 6 | 7 | import net.minecraft.world.level.block.entity.BlockEntityType; 8 | 9 | public class TANBlockEntityTypes 10 | { 11 | public static BlockEntityType WATER_PURIFIER; 12 | public static BlockEntityType TEMPERATURE_GAUGE; 13 | public static BlockEntityType THERMOREGULATOR; 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeTypes.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.crafting; 6 | 7 | import net.minecraft.world.item.crafting.Recipe; 8 | import net.minecraft.world.item.crafting.RecipeType; 9 | import net.minecraft.world.item.crafting.SingleRecipeInput; 10 | 11 | public class TANRecipeTypes 12 | { 13 | public static RecipeType> WATER_PURIFYING; 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/crafting/TANRecipeSerializers.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.crafting; 6 | 7 | import net.minecraft.world.item.crafting.Recipe; 8 | import net.minecraft.world.item.crafting.RecipeSerializer; 9 | import net.minecraft.world.item.crafting.SingleRecipeInput; 10 | 11 | public class TANRecipeSerializers 12 | { 13 | public static RecipeSerializer> WATER_PURIFYING; 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/thirst/WaterType.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.thirst; 6 | 7 | public enum WaterType 8 | { 9 | NORMAL(0.5F), DIRTY(1.0F), PURIFIED(0.0F); 10 | 11 | private float poisonChance; 12 | 13 | WaterType(float poisonChance) 14 | { 15 | this.poisonChance = poisonChance; 16 | } 17 | 18 | public float getPoisonChance() 19 | { 20 | return this.poisonChance; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/item/DirtyWaterBottleItem.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.item; 6 | 7 | import net.minecraft.world.item.Item; 8 | 9 | public class DirtyWaterBottleItem extends DrinkItem 10 | { 11 | public DirtyWaterBottleItem(Item.Properties properties) 12 | { 13 | super(properties); 14 | } 15 | 16 | @Override 17 | public boolean canAlwaysDrink() 18 | { 19 | return false; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /common/src/main/resources/toughasnails.mixins.json: -------------------------------------------------------------------------------- 1 | { 2 | "required": true, 3 | "package": "toughasnails.mixin", 4 | "compatibilityLevel": "JAVA_17", 5 | "refmap": "toughasnails.refmap.json", 6 | "mixins": [ 7 | "MixinFoodData", 8 | "MixinLivingEntity", 9 | "MixinPlayer", 10 | "MixinPotionBrewing", 11 | "MixinRecipeManager", 12 | "MixinServerLevel", 13 | "MixinServerPlayer" 14 | ], 15 | "client": [ 16 | "client.MixinGui", 17 | "client.MixinItemStack", 18 | "client.MixinLocalPlayer", 19 | "client.MixinRangeSelectItemModelProperties" 20 | ], 21 | "injectors": { 22 | "defaultRequire": 1 23 | }, 24 | "minVersion": "0.8.4" 25 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/temperature/IProximityBlockModifier.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.temperature; 6 | 7 | import net.minecraft.core.BlockPos; 8 | import net.minecraft.world.level.Level; 9 | import net.minecraft.world.level.block.state.BlockState; 10 | 11 | public interface IProximityBlockModifier { 12 | 13 | Type getProximityType(Level level, BlockPos pos, BlockState state); 14 | 15 | enum Type 16 | { 17 | HEATING, COOLING, NONE 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/api/potion/TANEffects.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.api.potion; 6 | 7 | import net.minecraft.core.Holder; 8 | import net.minecraft.world.effect.MobEffect; 9 | 10 | public class TANEffects 11 | { 12 | public static Holder THIRST; 13 | public static Holder ICE_RESISTANCE; 14 | public static Holder CLIMATE_CLEMENCY; 15 | public static Holder INTERNAL_WARMTH; 16 | public static Holder INTERNAL_CHILL; 17 | } 18 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/tags/worldgen/biome/neutral_biomes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:the_void", 4 | "minecraft:dripstone_caves", 5 | "minecraft:swamp", 6 | "minecraft:plains", 7 | "minecraft:sunflower_plains", 8 | "minecraft:dark_forest", 9 | "minecraft:birch_forest", 10 | "minecraft:old_growth_birch_forest", 11 | "minecraft:forest", 12 | "minecraft:flower_forest", 13 | "minecraft:meadow", 14 | "minecraft:cherry_grove", 15 | "minecraft:stony_peaks", 16 | "minecraft:stony_shore", 17 | "minecraft:beach", 18 | "minecraft:river", 19 | "minecraft:ocean", 20 | "minecraft:deep_ocean", 21 | "minecraft:lukewarm_ocean", 22 | "minecraft:deep_lukewarm_ocean" 23 | ] 24 | } -------------------------------------------------------------------------------- /common/src/main/java/toughasnails/init/ModApi.java: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * Copyright 2021, the Glitchfiend Team. 3 | * All rights reserved. 4 | ******************************************************************************/ 5 | package toughasnails.init; 6 | 7 | import toughasnails.api.temperature.TemperatureHelper; 8 | import toughasnails.api.thirst.ThirstHelper; 9 | import toughasnails.temperature.TemperatureHelperImpl; 10 | import toughasnails.thirst.ThirstHelperImpl; 11 | 12 | public class ModApi 13 | { 14 | public static void init() 15 | { 16 | ThirstHelper.Impl.INSTANCE = new ThirstHelperImpl(); 17 | TemperatureHelper.Impl.INSTANCE = new TemperatureHelperImpl(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_the_recipe": { 5 | "conditions": { 6 | "recipe": "toughasnails:wool_boots" 7 | }, 8 | "trigger": "minecraft:recipe_unlocked" 9 | }, 10 | "has_wool": { 11 | "conditions": { 12 | "items": [ 13 | { 14 | "items": "#minecraft:wool" 15 | } 16 | ] 17 | }, 18 | "trigger": "minecraft:inventory_changed" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_wool" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:wool_boots" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_leaves": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "#minecraft:leaves" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:leaf_boots" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_leaves" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:leaf_boots" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_the_recipe": { 5 | "conditions": { 6 | "recipe": "toughasnails:wool_helmet" 7 | }, 8 | "trigger": "minecraft:recipe_unlocked" 9 | }, 10 | "has_wool": { 11 | "conditions": { 12 | "items": [ 13 | { 14 | "items": "#minecraft:wool" 15 | } 16 | ] 17 | }, 18 | "trigger": "minecraft:inventory_changed" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_wool" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:wool_helmet" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/apple_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_apple": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:apple" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:apple_juice" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_apple" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:apple_juice" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/charc_os.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_charcoal": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:charcoal" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:charc_os" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_charcoal" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:charc_os" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/ice_cream.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_snowball": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:snowball" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:ice_cream" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_snowball" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:ice_cream" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_leaves": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "#minecraft:leaves" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:leaf_helmet" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_leaves" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:leaf_helmet" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_the_recipe": { 5 | "conditions": { 6 | "recipe": "toughasnails:wool_leggings" 7 | }, 8 | "trigger": "minecraft:recipe_unlocked" 9 | }, 10 | "has_wool": { 11 | "conditions": { 12 | "items": [ 13 | { 14 | "items": "#minecraft:wool" 15 | } 16 | ] 17 | }, 18 | "trigger": "minecraft:inventory_changed" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_wool" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:wool_leggings" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/cactus_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_cactus": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:cactus" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:cactus_juice" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_cactus" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:cactus_juice" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_leaves": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "#minecraft:leaves" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:leaf_leggings" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_leaves" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:leaf_leggings" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/wool_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_the_recipe": { 5 | "conditions": { 6 | "recipe": "toughasnails:wool_chestplate" 7 | }, 8 | "trigger": "minecraft:recipe_unlocked" 9 | }, 10 | "has_wool": { 11 | "conditions": { 12 | "items": [ 13 | { 14 | "items": "#minecraft:wool" 15 | } 16 | ] 17 | }, 18 | "trigger": "minecraft:inventory_changed" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_wool" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:wool_chestplate" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/food/pumpkin_juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_pumpkin": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:pumpkin" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:pumpkin_juice" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_pumpkin" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:pumpkin_juice" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/tools/thermometer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_redstone": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "minecraft:redstone" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:thermometer" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_redstone" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:thermometer" 30 | ] 31 | } 32 | } -------------------------------------------------------------------------------- /common/src/generated/resources/data/toughasnails/advancement/recipes/combat/leaf_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:recipes/root", 3 | "criteria": { 4 | "has_leaves": { 5 | "conditions": { 6 | "items": [ 7 | { 8 | "items": "#minecraft:leaves" 9 | } 10 | ] 11 | }, 12 | "trigger": "minecraft:inventory_changed" 13 | }, 14 | "has_the_recipe": { 15 | "conditions": { 16 | "recipe": "toughasnails:leaf_chestplate" 17 | }, 18 | "trigger": "minecraft:recipe_unlocked" 19 | } 20 | }, 21 | "requirements": [ 22 | [ 23 | "has_the_recipe", 24 | "has_leaves" 25 | ] 26 | ], 27 | "rewards": { 28 | "recipes": [ 29 | "toughasnails:leaf_chestplate" 30 | ] 31 | } 32 | } --------------------------------------------------------------------------------