├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── workflows │ └── publish.yaml ├── .gitignore ├── build.gradle ├── changelog.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs ├── EnhancedAI-2.5.3-mc1.20.1.jar ├── MobsPropertiesRandomness-4.10.14-mc1.20.1.jar ├── Shields+-1.11.6-mc1.20.1.jar ├── Stamina-1.1.1.jar ├── insanelib-1.21.2.jar └── nohunger-1.0.1-slim.jar ├── settings.gradle └── src ├── generated └── resources │ ├── .cache │ ├── 0a9cd3254885bc951db21a2406ae8334cd131181 │ ├── 160518045a05912254b3561c1d40fb06da40ccb3 │ ├── 776e9b3deb1740ab3db4fec16358aabd4a392c3b │ ├── 821edac5319b93224ec4c35f49e334c7f95f99a4 │ ├── df0e64b5e82c40fb1aed493282d1cd928fb00778 │ ├── e0c56e6b0b89eeff2866b96dcd1370b463c0ff9f │ └── f3a493741f6b5324540cc9007d388d5afa957294 │ ├── assets │ └── iguanatweaksreborn │ │ ├── blockstates │ │ ├── cyan_flower.json │ │ ├── solanum_neorossii.json │ │ ├── soul_sand_hellish_coal_ore.json │ │ └── soul_soil_hellish_coal_ore.json │ │ └── models │ │ ├── block │ │ ├── cyan_flower.json │ │ ├── potted_cyan_flower.json │ │ ├── potted_solanum_neorossii.json │ │ ├── solanum_neorossii.json │ │ ├── soul_sand_hellish_coal_ore.json │ │ └── soul_soil_hellish_coal_ore.json │ │ └── item │ │ ├── biome_compass.json │ │ ├── brown_mushroom_stew.json │ │ ├── carrot_seeds.json │ │ ├── charcoal_layer.json │ │ ├── cloth.json │ │ ├── copper_powered_rail.json │ │ ├── cyan_flower.json │ │ ├── firestarter.json │ │ ├── flint_axe.json │ │ ├── flint_hoe.json │ │ ├── flint_pickaxe.json │ │ ├── flint_shield.json │ │ ├── flint_shovel.json │ │ ├── flint_sword.json │ │ ├── golden_powered_rail.json │ │ ├── half_heart_texture.json │ │ ├── hellish_coal.json │ │ ├── netherized_stew.json │ │ ├── over_easy_egg.json │ │ ├── pumpkin_pulp.json │ │ ├── red_mushroom_stew.json │ │ ├── respawn_obelisk.json │ │ ├── rice_seeds.json │ │ ├── rooted_onion.json │ │ ├── rooted_potato.json │ │ ├── solanum_neorossii.json │ │ ├── soul_sand_hellish_coal_ore.json │ │ ├── soul_soil_hellish_coal_ore.json │ │ └── sweet_berry_seeds.json │ └── data │ ├── iguanatweaksreborn │ └── tags │ │ ├── blocks │ │ ├── aspen_leaves.json │ │ ├── aspen_logs.json │ │ ├── attached_blocks.json │ │ ├── azalea_leaves.json │ │ ├── break_on_fall.json │ │ ├── can_scythe.json │ │ ├── depth_multiplier_blacklist.json │ │ ├── grass_blocks.json │ │ ├── harder_crops.json │ │ ├── hardness_blacklist.json │ │ ├── laurel_leaves.json │ │ ├── maple_leaves.json │ │ ├── morado_leaves.json │ │ ├── oak_log_leaves.json │ │ ├── obsidians.json │ │ ├── plants_to_dead_bush.json │ │ ├── plants_to_decay.json │ │ ├── plum_leaves.json │ │ ├── portal_corners.json │ │ ├── structures │ │ │ └── respawn_obelisk │ │ │ │ └── blocks_to_rot.json │ │ ├── tall_grass.json │ │ ├── timber_trunks.json │ │ ├── trumpet_leaves.json │ │ └── wisteria_leaves.json │ │ ├── damage_type │ │ ├── doesnt_spawn_grave.json │ │ ├── doesnt_trigger_piercing.json │ │ └── piercing_damage_type.json │ │ ├── entity_types │ │ ├── cats.json │ │ ├── enchanting │ │ │ ├── bane_of_sssss.json │ │ │ └── smite.json │ │ ├── explosion_entity_blacklist.json │ │ ├── milkable.json │ │ ├── parrots.json │ │ ├── passive_regen.json │ │ ├── pets.json │ │ ├── prevent_breeding.json │ │ └── wolves.json │ │ └── items │ │ ├── chicken_food_items.json │ │ ├── enchanting │ │ ├── accepts_damage_enchantments.json │ │ ├── accepts_fire_aspect.json │ │ ├── accepts_knockback.json │ │ ├── accepts_luck.json │ │ └── accepts_sweeping_edge.json │ │ ├── energy_boost.json │ │ ├── hellish_coal_ores.json │ │ ├── hud │ │ ├── biome.json │ │ ├── cardinal_direction.json │ │ ├── depth.json │ │ ├── season.json │ │ └── time.json │ │ ├── no_stack_size_changes.json │ │ ├── no_timber.json │ │ ├── not_unbreakable.json │ │ ├── raw_food.json │ │ ├── snow_slowdown_ignore.json │ │ ├── spawner_reactivator.json │ │ └── world_immune.json │ └── minecraft │ └── tags │ ├── blocks │ ├── fall_damage_resetting.json │ ├── mineable │ │ ├── hoe.json │ │ ├── pickaxe.json │ │ └── shovel.json │ ├── needs_iron_tool.json │ ├── rails.json │ └── replaceable_by_trees.json │ ├── damage_type │ ├── bypasses_armor.json │ ├── bypasses_cooldown.json │ ├── bypasses_effects.json │ ├── bypasses_enchantments.json │ ├── bypasses_invulnerability.json │ ├── bypasses_resistance.json │ ├── bypasses_shield.json │ └── no_impact.json │ └── items │ ├── axes.json │ ├── flowers.json │ ├── hoes.json │ ├── pickaxes.json │ ├── shovels.json │ └── swords.json └── main ├── java └── insane96mcp │ └── iguanatweaksreborn │ ├── InsaneSO.java │ ├── command │ └── ISOCommand.java │ ├── data │ ├── ISOMobEffectInstance.java │ ├── condition │ │ ├── BlockTagCondition.java │ │ ├── FedCondition.java │ │ ├── KilledByKilledPlayerCondition.java │ │ ├── KillerHasAdvancementCondition.java │ │ ├── LivestockAgeCondition.java │ │ ├── LivingEntityCondition.java │ │ ├── LootItemCurrentSeasonCondition.java │ │ └── NonPlayerArisedDropCondition.java │ ├── criterion │ │ ├── ActivateRespawnObeliskTrigger.java │ │ ├── AnvilRepairTrigger.java │ │ ├── ISOTriggers.java │ │ ├── MakeRichFarmlandTrigger.java │ │ ├── SeasonChangedTrigger.java │ │ └── UnfairOneShotTrigger.java │ ├── function │ │ └── EnchantWithTreasureFunction.java │ ├── generator │ │ ├── ISOBlockTagsProvider.java │ │ ├── ISODamageTypeTagsProvider.java │ │ ├── ISOEntityTypeTagsProvider.java │ │ ├── ISOItemTagsProvider.java │ │ └── client │ │ │ ├── ISOBlockModelsProvider.java │ │ │ ├── ISOBlockStatesProvider.java │ │ │ └── ISOItemModelsProvider.java │ └── lootmodifier │ │ ├── DisenchantModifier.java │ │ ├── DropMultiplierModifier.java │ │ ├── LootPurgerModifier.java │ │ └── ReplaceLootModifier.java │ ├── entity │ └── ISOFallingBlockEntity.java │ ├── event │ ├── EnchantmentBonusEfficiencyEvent.java │ ├── HookTickToHookLureEvent.java │ ├── ISOEventFactory.java │ ├── ISOLivingAttackEvent.java │ ├── LivingHurtPreAbsorptionEvent.java │ └── StackMaxDamageEvent.java │ ├── integration │ ├── CuriosIntegration.java │ ├── EnhancedAIIntegration.java │ ├── NoHungerIntegration.java │ ├── TConstruct.java │ ├── ToolBeltIntegration.java │ └── emi │ │ ├── EmiAnvilRepairRecipe.java │ │ └── ISOEmiPlugin.java │ ├── mixin │ ├── AbstractArrowMixin.java │ ├── AbstractMinecartMixin.java │ ├── AnimalMixin.java │ ├── AnvilMenuMixin.java │ ├── ApplyBonusCountMixin.java │ ├── ApplyBonusCountOreDropsMixin.java │ ├── ArrowInfiniteEnchantmentMixin.java │ ├── ArrowItemMixin.java │ ├── BaseSpawnerMixin.java │ ├── BeehiveBlockMixin.java │ ├── BellBlockEntityMixin.java │ ├── BlockBehaviourMixin.java │ ├── BoatMixin.java │ ├── BonusLevelTableConditionMixin.java │ ├── BowItemMixin.java │ ├── BreakEventMixin.java │ ├── BreedGoalMixin.java │ ├── CampfireBlockEntityMixin.java │ ├── CampfireBlockMixin.java │ ├── ChunkMap$TrackedEntityMixin.java │ ├── CombatRulesMixin.java │ ├── ConduitBlockEntityMixin.java │ ├── CrossbowItemMixin.java │ ├── DigDurabilityEnchantmentMixin.java │ ├── DiggerItemMixin.java │ ├── EnchantRandomlyFunctionMixin.java │ ├── EnchantmentAccessor.java │ ├── EnchantmentHelperMixin.java │ ├── EnchantmentMixin.java │ ├── EnderManMixin.java │ ├── EntityMixin.java │ ├── ExplosionMixin.java │ ├── FallingBlockEntityMixin.java │ ├── FarmBlockMixin.java │ ├── FireBlockMixin.java │ ├── FishingHookMixin.java │ ├── FlowingFluidMixin.java │ ├── FluidTypeMixin.java │ ├── FoodDataMixin.java │ ├── FoodPropertiesMixin.java │ ├── ForgeHooksMixin.java │ ├── GuardianAttackGoalMixin.java │ ├── HoneyBottleItemMixin.java │ ├── IronGolemMixin.java │ ├── ItemEntityMixin.java │ ├── ItemMixin.java │ ├── ItemStackMixin.java │ ├── LavaFluidMixin.java │ ├── LeavesBlockMixin.java │ ├── LevelStorageSourceMixin.java │ ├── LivingEntityAccessor.java │ ├── LivingEntityMixin.java │ ├── MerchantOfferMixin.java │ ├── MilkBucketItemMixin.java │ ├── MobAccessor.java │ ├── MobEffectMixin.java │ ├── MobMixin.java │ ├── MultiplayerGameModeMixin.java │ ├── NaturalSpawnerMixin.java │ ├── OreVeinifierMixin.java │ ├── PathfinderMobMixin.java │ ├── PistonBaseBlockMixin.java │ ├── PistonMovingBlockEntityMixin.java │ ├── Player2Mixin.java │ ├── PlayerListMixin.java │ ├── PlayerMixin.java │ ├── PotionItemMixin.java │ ├── ProtectionEnchantmentMixin.java │ ├── PufferfishMixin.java │ ├── PumpkinBlockMixin.java │ ├── ServerLevelAccessor.java │ ├── ServerLevelMixin.java │ ├── ShearsItemMixin.java │ ├── SheepMixin.java │ ├── SmeltItemFunctionMixin.java │ ├── SpongeBlockMixin.java │ ├── SpringFeatureMixin.java │ ├── ThornsEnchantmentMixin.java │ ├── ThrowablePotionItemMixin.java │ ├── ThrownEggMixin.java │ ├── ThrownExperienceBottleMixin.java │ ├── TieredItemAccessor.java │ ├── TurtleMixin.java │ ├── VillagerMixin.java │ ├── WanderingTraderMixin.java │ ├── WaterFluidMixin.java │ ├── WolfMixin.java │ ├── ZombieMixin.java │ ├── client │ │ ├── AnvilScreenMixin.java │ │ ├── CameraMixin.java │ │ ├── ClientLevelMixin.java │ │ ├── ClientPacketListenerMixin.java │ │ ├── DeathScreenMixin.java │ │ ├── EntityRendererMixin.java │ │ ├── GameRendererMixin.java │ │ ├── GuiAccessor.java │ │ ├── GuiMixin.java │ │ ├── LevelRendererMixin.java │ │ ├── LightTextureMixin.java │ │ ├── LocalPlayerMixin.java │ │ ├── OptionsMixin.java │ │ └── VanillaGuiOverlayMixin.java │ ├── integration │ │ ├── appleskin │ │ │ └── HUDOverlayHandlerMixin.java │ │ ├── cavernsandchasms │ │ │ └── CCEntityTypesMixin.java │ │ ├── globalgamerules │ │ │ └── WorldEventsMixin.java │ │ ├── tinkersconstruct │ │ │ └── ToolAttackUtilMixin.java │ │ └── villagercomfort │ │ │ └── ComfortHelperMixin.java │ └── plugin │ │ └── ModLoadedPlugin.java │ ├── modifier │ ├── AgeModifier.java │ ├── BiomeModifier.java │ ├── FedModifier.java │ ├── Modifier.java │ ├── Modifiers.java │ ├── NightTimeModifier.java │ ├── SeasonModifier.java │ └── SunlightModifier.java │ ├── module │ ├── ClientModules.java │ ├── Modules.java │ ├── client │ │ ├── Death.java │ │ ├── Fog.java │ │ ├── Light.java │ │ ├── Misc.java │ │ ├── Sound.java │ │ ├── WorldBorder.java │ │ └── hudinfos │ │ │ ├── HudInfos.java │ │ │ └── SereneSeasonsIntegration.java │ ├── combat │ │ ├── AbsorptionArmor.java │ │ ├── ArmorRework.java │ │ ├── AttackInvincibility.java │ │ ├── Knockback.java │ │ ├── MiscStats.java │ │ ├── PiercingDamage.java │ │ ├── PlayerStats.java │ │ ├── RegeneratingAbsorption.java │ │ ├── Shields.java │ │ ├── ShieldsPlus.java │ │ ├── Snowballs.java │ │ ├── UnfairOneShot.java │ │ ├── bows │ │ │ ├── Bows.java │ │ │ └── ShortbowItem.java │ │ └── criticalhits │ │ │ ├── CriticalEnchantment.java │ │ │ └── CriticalRework.java │ ├── experience │ │ ├── DroppedExperience.java │ │ ├── PlayerExperience.java │ │ ├── anvils │ │ │ ├── AnvilRepair.java │ │ │ ├── AnvilRepairReloadListener.java │ │ │ └── Anvils.java │ │ └── enchantments │ │ │ ├── EnchantmentsFeature.java │ │ │ ├── enchantment │ │ │ ├── FireAspect.java │ │ │ ├── IAttributeEnchantment.java │ │ │ ├── Knockback.java │ │ │ ├── Luck.java │ │ │ ├── damage │ │ │ │ ├── BaneOfSSSS.java │ │ │ │ ├── BonusDamageEnchantment.java │ │ │ │ ├── Sharpness.java │ │ │ │ ├── Smite.java │ │ │ │ └── SweepingEdge.java │ │ │ └── protection │ │ │ │ ├── BlastProtection.java │ │ │ │ ├── FeatherFalling.java │ │ │ │ ├── FireProtection.java │ │ │ │ ├── IProtectionEnchantment.java │ │ │ │ ├── ISOProtectionEnchantment.java │ │ │ │ ├── OverallProtection.java │ │ │ │ └── ProjectileProtection.java │ │ │ └── integration │ │ │ └── Allurement.java │ ├── farming │ │ ├── bonemeal │ │ │ ├── BoneMeal.java │ │ │ ├── FarmersDelightIntegration.java │ │ │ ├── RichFarmlandBlock.java │ │ │ ├── SereneSeasonsIntegration.java │ │ │ └── SupplementariesIntegration.java │ │ ├── crops │ │ │ ├── Crops.java │ │ │ ├── SeedsBlockItem.java │ │ │ ├── WildCropBlock.java │ │ │ └── integration │ │ │ │ └── FarmersDelightIntegration.java │ │ ├── hoes │ │ │ ├── HoeDefinition.java │ │ │ ├── Hoes.java │ │ │ └── IHoeCooldownModifier.java │ │ ├── livestock │ │ │ ├── ISOEatBlock.java │ │ │ ├── Livestock.java │ │ │ ├── LivestockData.java │ │ │ ├── LivestockDataReloadListener.java │ │ │ └── PehkuiIntegration.java │ │ └── plantsgrowth │ │ │ ├── PlantGrowthMultiplier.java │ │ │ ├── PlantsGrowth.java │ │ │ └── PlantsGrowthReloadListener.java │ ├── hungerhealth │ │ ├── Exhaustion.java │ │ ├── fooddrinks │ │ │ ├── CustomFoodProperties.java │ │ │ └── FoodDrinks.java │ │ └── healthregen │ │ │ └── HealthRegenHunger.java │ ├── items │ │ ├── DisabledItems.java │ │ ├── EcologicWood.java │ │ ├── NameTags.java │ │ ├── StackSizes.java │ │ ├── ToolBeltIntegrationFeature.java │ │ ├── flintexpansion │ │ │ ├── FlintExpansion.java │ │ │ ├── GroundFlintBlock.java │ │ │ └── GroundRockBlock.java │ │ ├── misc │ │ │ ├── ItemDefinition.java │ │ │ ├── ItemDefinitionsReloadListener.java │ │ │ └── MiscItem.java │ │ └── unbreakableitems │ │ │ ├── ShieldsPlusIntegration.java │ │ │ └── UnbreakableItems.java │ ├── mining │ │ ├── Gold.java │ │ ├── MaterialsAndOres.java │ │ ├── MiningMisc.java │ │ ├── blockdefinition │ │ │ ├── BlockDefinition.java │ │ │ ├── BlockDefinitionFeature.java │ │ │ └── BlockDefinitionReloadListener.java │ │ └── blockhardness │ │ │ ├── BlockHardness.java │ │ │ ├── DepthHardnessDimension.java │ │ │ └── DimensionHardnessMultiplier.java │ ├── misc │ │ ├── DataPacks.java │ │ ├── Nerfs.java │ │ ├── beaconconduit │ │ │ ├── BeaconConduit.java │ │ │ ├── ISOBeaconBlock.java │ │ │ ├── ISOBeaconBlockEntity.java │ │ │ ├── ISOBeaconMenu.java │ │ │ ├── ISOBeaconRenderer.java │ │ │ └── ISOBeaconScreen.java │ │ ├── debuffs │ │ │ ├── DeBuff.java │ │ │ └── DeBuffs.java │ │ └── tweaks │ │ │ ├── ScuteBlock.java │ │ │ └── Tweaks.java │ ├── mobs │ │ ├── EnhancedAI.java │ │ ├── MiscMobs.java │ │ ├── StatsBuffs.java │ │ ├── equipment │ │ │ ├── Equipment.java │ │ │ └── EquipmentDropChance.java │ │ ├── spawning │ │ │ ├── EchoLanternBlock.java │ │ │ ├── SeasonSpawning.java │ │ │ └── Spawning.java │ │ └── villager │ │ │ ├── SerializableTrade.java │ │ │ ├── villagers │ │ │ ├── VillagerTrade.java │ │ │ ├── VillagerTradesReloadListener.java │ │ │ └── Villagers.java │ │ │ └── wanderingtrader │ │ │ └── WanderingTrades.java │ ├── movement │ │ ├── BackwardsSlowdown.java │ │ ├── BetterClimbable.java │ │ ├── Boats.java │ │ ├── ElytraNerf.java │ │ ├── NoPillaring.java │ │ ├── Swimming.java │ │ ├── Tagging.java │ │ ├── TerrainSlowdown.java │ │ ├── minecarts │ │ │ ├── ISOPoweredRail.java │ │ │ └── Minecarts.java │ │ └── weightedequipment │ │ │ ├── ArmorEnchantmentWeight.java │ │ │ └── WeightedArmor.java │ ├── sleeprespawn │ │ ├── Cloth.java │ │ ├── Sleeping.java │ │ ├── SleepingEffects.java │ │ ├── death │ │ │ ├── Death.java │ │ │ ├── GraveBlock.java │ │ │ └── GraveBlockEntity.java │ │ ├── respawn │ │ │ ├── Respawn.java │ │ │ └── RespawnObeliskBlock.java │ │ └── tiredness │ │ │ ├── EnergyBoostItem.java │ │ │ ├── Tiredness.java │ │ │ ├── TirednessEffect.java │ │ │ └── TirednessHandler.java │ └── world │ │ ├── Berries.java │ │ ├── BiomeCompass.java │ │ ├── CyanFlower.java │ │ ├── Fluids.java │ │ ├── Nether.java │ │ ├── coalfire │ │ ├── CoalFire.java │ │ ├── FirestarterItem.java │ │ ├── HellishCoalOreBlock.java │ │ ├── PilableFallingLayerEntity.java │ │ ├── PilableLayerBlock.java │ │ └── SimpleFuelItem.java │ │ ├── explosionoverhaul │ │ ├── ExplosionOverhaul.java │ │ ├── ISOExplosion.java │ │ └── ISOExplosionCreatedEvent.java │ │ ├── leaves │ │ ├── LeafDecayScheduledTick.java │ │ └── Leaves.java │ │ ├── seasons │ │ ├── Seasons.java │ │ └── TimeControlIntegration.java │ │ ├── spawners │ │ ├── SpawnerStatusSync.java │ │ ├── Spawners.java │ │ └── capability │ │ │ ├── ISpawnerData.java │ │ │ ├── SpawnerData.java │ │ │ ├── SpawnerDataAttacher.java │ │ │ └── SpawnerDataImpl.java │ │ ├── timber │ │ ├── TimberTrees.java │ │ └── TreeInfo.java │ │ └── weather │ │ ├── ClientWeather.java │ │ ├── Foggy.java │ │ ├── Weather.java │ │ └── WeatherSavedData.java │ ├── network │ ├── ClientNetworkHandler.java │ ├── NetworkHandler.java │ ├── NetworkHelper.java │ └── message │ │ ├── AnvilRepairSync.java │ │ ├── BackwardsSlowdownUpdate.java │ │ ├── BlockDefinitionSync.java │ │ ├── BreakWithNoSound.java │ │ ├── ExhaustionSync.java │ │ ├── ExplodeParticles.java │ │ ├── FoggyEnabledSync.java │ │ ├── FoggySync.java │ │ ├── ForgeDataIntSync.java │ │ ├── GlobalHardnessSync.java │ │ ├── InvulnerableTimeMessageSync.java │ │ ├── ItemDefinitionsSync.java │ │ ├── RegenAbsorptionSync.java │ │ ├── SaturationSync.java │ │ ├── SetITRBeaconEffects.java │ │ ├── StackSizesSync.java │ │ ├── SyncDiscreteNameTags.java │ │ ├── SyncExperienceFeature.java │ │ ├── TirednessSync.java │ │ └── UnfairOneShotActivation.java │ ├── setup │ ├── ISOCommonConfig.java │ ├── ISORegistries.java │ ├── client │ │ ├── ClientSetup.java │ │ └── ISOClientConfig.java │ └── registry │ │ └── SimpleBlockWithItem.java │ ├── utils │ ├── ISOLogHelper.java │ └── MCUtils.java │ └── world │ ├── item │ └── DurabilityModifier.java │ └── level │ └── levelgen │ └── structure │ └── templatesystem │ └── RandomBlockTagMatchTest.java └── resources ├── META-INF ├── accesstransformer.cfg └── mods.toml ├── assets ├── iguanatweaksreborn │ ├── blockstates │ │ ├── beacon.json │ │ ├── charcoal_layer.json │ │ ├── copper_powered_rail.json │ │ ├── echo_lantern.json │ │ ├── flint_rock.json │ │ ├── golden_powered_rail.json │ │ ├── grave.json │ │ ├── potted_cyan_flower.json │ │ ├── potted_solanum_neorossii.json │ │ ├── respawn_obelisk.json │ │ ├── rich_farmland.json │ │ ├── scute.json │ │ ├── wild_beetroots.json │ │ ├── wild_carrots.json │ │ ├── wild_potatoes.json │ │ └── wild_wheat.json │ ├── lang │ │ ├── en_us.json │ │ └── it_it.json │ ├── models │ │ ├── block │ │ │ ├── beacon.json │ │ │ ├── charcoal_layer │ │ │ │ ├── height_10.json │ │ │ │ ├── height_12.json │ │ │ │ ├── height_14.json │ │ │ │ ├── height_16.json │ │ │ │ ├── height_2.json │ │ │ │ ├── height_4.json │ │ │ │ ├── height_6.json │ │ │ │ └── height_8.json │ │ │ ├── copper_powered_rail │ │ │ │ ├── copper_powered_rail.json │ │ │ │ ├── copper_powered_rail_on.json │ │ │ │ ├── copper_powered_rail_on_raised_ne.json │ │ │ │ ├── copper_powered_rail_on_raised_sw.json │ │ │ │ ├── copper_powered_rail_raised_ne.json │ │ │ │ └── copper_powered_rail_raised_sw.json │ │ │ ├── echo_lantern.json │ │ │ ├── echo_lantern_hanging.json │ │ │ ├── flint_rock.json │ │ │ ├── golden_powered_rail │ │ │ │ ├── golden_powered_rail.json │ │ │ │ ├── golden_powered_rail_on.json │ │ │ │ ├── golden_powered_rail_on_raised_ne.json │ │ │ │ ├── golden_powered_rail_on_raised_sw.json │ │ │ │ ├── golden_powered_rail_raised_ne.json │ │ │ │ └── golden_powered_rail_raised_sw.json │ │ │ ├── grave.json │ │ │ ├── respawn_obelisk_disabled.json │ │ │ ├── respawn_obelisk_enabled.json │ │ │ ├── rich_farmland.json │ │ │ ├── rich_farmland_moist.json │ │ │ ├── scute │ │ │ │ ├── scute_1.json │ │ │ │ ├── scute_10.json │ │ │ │ ├── scute_11.json │ │ │ │ ├── scute_12.json │ │ │ │ ├── scute_13.json │ │ │ │ ├── scute_14.json │ │ │ │ ├── scute_15.json │ │ │ │ ├── scute_16.json │ │ │ │ ├── scute_2.json │ │ │ │ ├── scute_3.json │ │ │ │ ├── scute_4.json │ │ │ │ ├── scute_5.json │ │ │ │ ├── scute_6.json │ │ │ │ ├── scute_7.json │ │ │ │ ├── scute_8.json │ │ │ │ └── scute_9.json │ │ │ ├── wild_beetroots.json │ │ │ ├── wild_carrots.json │ │ │ ├── wild_potatoes.json │ │ │ └── wild_wheat.json │ │ └── item │ │ │ ├── beacon.json │ │ │ ├── echo_lantern.json │ │ │ ├── flint_rock.json │ │ │ ├── grave.json │ │ │ ├── rich_farmland.json │ │ │ ├── shortbow.json │ │ │ ├── shortbow_pulling_0.json │ │ │ ├── shortbow_pulling_1.json │ │ │ └── shortbow_pulling_2.json │ ├── sounds.json │ ├── sounds │ │ ├── absorption_hit1.ogg │ │ ├── absorption_hit2.ogg │ │ └── unfair_one_shot.ogg │ └── textures │ │ ├── attribute │ │ ├── piercing_damage.png │ │ ├── regenerating_absorption.png │ │ └── regenerating_absorption_speed.png │ │ ├── block │ │ ├── charcoal_layer.png │ │ ├── copper_powered_rail.png │ │ ├── copper_powered_rail_on.png │ │ ├── cyan_flower.png │ │ ├── echo_lantern.png │ │ ├── grave.png │ │ ├── respawn_obelisk_bottom.png │ │ ├── respawn_obelisk_side_disabled.png │ │ ├── respawn_obelisk_side_enabled.png │ │ ├── rich_farmland.png │ │ ├── rich_farmland_moist.png │ │ ├── solanum_neorossii.png │ │ ├── soul_sand_hellish_coal_ore.png │ │ ├── soul_soil_hellish_coal_ore.png │ │ ├── wild_beetroots.png │ │ ├── wild_carrots.png │ │ ├── wild_potatoes.png │ │ └── wild_wheat.png │ │ ├── entity │ │ └── shield │ │ │ ├── flint_shield.png │ │ │ └── flint_shield_nopattern.png │ │ ├── gui │ │ ├── absorption.png │ │ ├── container │ │ │ └── beacon.png │ │ └── icons.png │ │ ├── item │ │ ├── biome_compass.png │ │ ├── brown_mushroom_stew.png │ │ ├── carrot_seeds.png │ │ ├── cloth.png │ │ ├── echo_lantern.png │ │ ├── firestarter.png │ │ ├── flint_axe.png │ │ ├── flint_hoe.png │ │ ├── flint_pickaxe.png │ │ ├── flint_shovel.png │ │ ├── flint_sword.png │ │ ├── half_heart_texture.png │ │ ├── hellish_coal.png │ │ ├── milk_bottle.png │ │ ├── netherized_stew.png │ │ ├── over_easy_egg.png │ │ ├── pumpkin_pulp.png │ │ ├── red_mushroom_stew.png │ │ ├── rice_seeds.png │ │ ├── rooted_onion.png │ │ ├── rooted_potato.png │ │ ├── shortbow.png │ │ ├── shortbow_pulling_0.png │ │ ├── shortbow_pulling_1.png │ │ ├── shortbow_pulling_2.png │ │ └── sweet_berry_seeds.png │ │ └── mob_effect │ │ ├── block_reach.png │ │ ├── energy_boost.pdn │ │ ├── energy_boost.png │ │ ├── entity_reach.png │ │ ├── injured.png │ │ ├── regenerating_absorption.png │ │ ├── tired.png │ │ ├── vigour.png │ │ └── well_fed.png ├── minecraft │ └── lang │ │ ├── en_us.json │ │ └── it_it.json ├── quark │ └── attribute_tooltips.json └── tconstruct │ └── book │ └── encyclopedia │ └── en_us │ └── upgrades │ └── damage │ └── iguanatweaksreborn_critical.json ├── data ├── hangglider │ └── recipes │ │ └── glider_wing.json ├── iguanatweaksreborn │ ├── anvil_repairs │ │ ├── bow.json │ │ ├── brush.json │ │ ├── chainmail │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── helmet.json │ │ │ └── leggings.json │ │ ├── cleaver_of_beheading.json │ │ ├── crossbow.json │ │ ├── diamond │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── firestarter.json │ │ ├── fishing_rod.json │ │ ├── flint │ │ │ ├── axe.json │ │ │ ├── hammer.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── flint_and_steel.json │ │ ├── forgotten │ │ │ └── helmet.json │ │ ├── golden │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── hang_glider.json │ │ ├── iron │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shears.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ ├── sword.json │ │ │ └── vanilla_shield.json │ │ ├── leather │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── helmet.json │ │ │ └── leggings.json │ │ ├── mask_of_dishonesty.json │ │ ├── necromium │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── netherite │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── sanguine │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── helmet.json │ │ │ └── leggings.json │ │ ├── shortbow.json │ │ ├── silver │ │ │ ├── axe.json │ │ │ ├── boots.json │ │ │ ├── chestplate.json │ │ │ ├── hammer.json │ │ │ ├── helmet.json │ │ │ ├── hoe.json │ │ │ ├── leggings.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── snail_shell │ │ │ └── chestplate.json │ │ ├── stone │ │ │ ├── axe.json │ │ │ ├── hammer.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ │ ├── trident.json │ │ ├── turtle │ │ │ └── helmet.json │ │ └── wooden │ │ │ ├── axe.json │ │ │ ├── hammer.json │ │ │ ├── hoe.json │ │ │ ├── pickaxe.json │ │ │ ├── shield.json │ │ │ ├── shovel.json │ │ │ └── sword.json │ ├── damage_type │ │ ├── collide_with_wall.json │ │ ├── old_age.json │ │ ├── piercing_mob_attack.json │ │ └── piercing_player_attack.json │ ├── forge │ │ └── biome_modifier │ │ │ ├── cyan_flower.json │ │ │ └── silverfish_everywhere.json │ ├── functions │ │ └── setup_worldborder.mcfunction │ ├── loot_tables │ │ ├── blocks │ │ │ ├── beacon.json │ │ │ ├── charcoal_layer.json │ │ │ ├── copper_powered_rail.json │ │ │ ├── cyan_flower.json │ │ │ ├── echo_lantern.json │ │ │ ├── flint_rock.json │ │ │ ├── golden_powered_rail.json │ │ │ ├── grave.json │ │ │ ├── rich_farmland.json │ │ │ ├── scute.json │ │ │ ├── solanum_neorossii.json │ │ │ ├── soul_sand_hellish_coal_ore.json │ │ │ ├── soul_soil_hellish_coal_ore.json │ │ │ ├── wild_beetroots.json │ │ │ ├── wild_carrots.json │ │ │ ├── wild_potatoes.json │ │ │ └── wild_wheat.json │ │ ├── empowered_spawner.json │ │ ├── pumpkin_shear.json │ │ └── test.json │ ├── recipes │ │ ├── biome_compass.json │ │ ├── brown_mushroom_stew.json │ │ ├── cyan_dye_from_cyan_flower.json │ │ ├── echo_lantern.json │ │ ├── grave.json │ │ ├── netherized_stew.json │ │ ├── over_easy_egg_from_campfire.json │ │ ├── over_easy_egg_from_smelting.json │ │ ├── over_easy_egg_from_smoking.json │ │ ├── purple_dye_from_nerossii.json │ │ ├── red_mushroom_stew.json │ │ └── shortbow.json │ ├── tags │ │ ├── entity_types │ │ │ ├── blacklisted_spawners.json │ │ │ ├── breedable_animals.json │ │ │ ├── chickens.json │ │ │ ├── cows.json │ │ │ ├── explosion_knockback_blacklist.json │ │ │ ├── killer_blacklist.json │ │ │ └── sheep.json │ │ ├── items │ │ │ ├── equipment │ │ │ │ ├── armor │ │ │ │ │ ├── chainmail.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── golden.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── leather.json │ │ │ │ │ └── netherite.json │ │ │ │ ├── hand │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── flint.json │ │ │ │ │ ├── golden.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── stone.json │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── diamond.json │ │ │ │ │ │ ├── flint.json │ │ │ │ │ │ ├── golden.json │ │ │ │ │ │ ├── iron.json │ │ │ │ │ │ ├── netherite.json │ │ │ │ │ │ ├── stone.json │ │ │ │ │ │ └── wooden.json │ │ │ │ │ └── wooden.json │ │ │ │ └── netherite.json │ │ │ ├── horse_armors.json │ │ │ └── minecarts.json │ │ └── worldgen │ │ │ ├── biome │ │ │ └── disabled.json │ │ │ └── structure │ │ │ ├── desert_pyramid.json │ │ │ ├── igloo.json │ │ │ ├── jungle_pyramid.json │ │ │ └── trail_ruins.json │ └── worldgen │ │ ├── configured_feature │ │ └── cyan_flower.json │ │ └── placed_feature │ │ ├── cyan_flower.json │ │ └── silverfish_everywhere.json └── minecraft │ ├── advancements │ └── story │ │ └── smelt_iron.json │ └── tags │ └── damage_types │ └── bypasses_shield.json ├── integrated_packs ├── actual_redstone_components │ ├── data │ │ ├── atmospheric │ │ │ └── recipes │ │ │ │ ├── aspen_button.json │ │ │ │ ├── aspen_pressure_plate.json │ │ │ │ ├── grimwood_button.json │ │ │ │ ├── grimwood_pressure_plate.json │ │ │ │ ├── kousa_button.json │ │ │ │ ├── kousa_pressure_plate.json │ │ │ │ ├── laurel_button.json │ │ │ │ ├── laurel_pressure_plate.json │ │ │ │ ├── morado_button.json │ │ │ │ ├── morado_pressure_plate.json │ │ │ │ ├── rosewood_button.json │ │ │ │ ├── rosewood_pressure_plate.json │ │ │ │ ├── yucca_button.json │ │ │ │ └── yucca_pressure_plate.json │ │ ├── autumnity │ │ │ └── recipes │ │ │ │ ├── maple_button.json │ │ │ │ └── maple_pressure_plate.json │ │ ├── betterarcheology │ │ │ └── recipes │ │ │ │ └── rotten_pressure_plate.json │ │ ├── caverns_and_chasms │ │ │ └── recipes │ │ │ │ ├── azalea_button.json │ │ │ │ ├── azalea_pressure_plate.json │ │ │ │ └── medium_weighted_pressure_plate.json │ │ ├── cinchsbetterdeepslate │ │ │ └── recipes │ │ │ │ ├── polished_deepslate_button.json │ │ │ │ └── polished_deepslate_pressure_plate.json │ │ ├── environmental │ │ │ └── recipes │ │ │ │ ├── pine_button.json │ │ │ │ ├── pine_pressure_plate.json │ │ │ │ ├── plum_button.json │ │ │ │ ├── plum_pressure_plate.json │ │ │ │ ├── willow_button.json │ │ │ │ ├── willow_pressure_plate.json │ │ │ │ ├── wisteria_button.json │ │ │ │ └── wisteria_pressure_plate.json │ │ ├── minecraft │ │ │ └── recipes │ │ │ │ ├── acacia_button.json │ │ │ │ ├── acacia_pressure_plate.json │ │ │ │ ├── bamboo_button.json │ │ │ │ ├── bamboo_pressure_plate.json │ │ │ │ ├── birch_button.json │ │ │ │ ├── birch_pressure_plate.json │ │ │ │ ├── cherry_button.json │ │ │ │ ├── cherry_pressure_plate.json │ │ │ │ ├── crimson_button.json │ │ │ │ ├── crimson_pressure_plate.json │ │ │ │ ├── dark_oak_button.json │ │ │ │ ├── dark_oak_pressure_plate.json │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ ├── jungle_button.json │ │ │ │ ├── jungle_pressure_plate.json │ │ │ │ ├── lever.json │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ ├── mangrove_button.json │ │ │ │ ├── mangrove_pressure_plate.json │ │ │ │ ├── oak_button.json │ │ │ │ ├── oak_pressure_plate.json │ │ │ │ ├── polished_blackstone_button.json │ │ │ │ ├── polished_blackstone_pressure_plate.json │ │ │ │ ├── spruce_button.json │ │ │ │ ├── spruce_pressure_plate.json │ │ │ │ ├── stone_button.json │ │ │ │ ├── stone_pressure_plate.json │ │ │ │ ├── warped_button.json │ │ │ │ └── warped_pressure_plate.json │ │ ├── quark │ │ │ └── recipes │ │ │ │ ├── automation │ │ │ │ └── crafting │ │ │ │ │ └── obsidian_pressure_plate.json │ │ │ │ └── world │ │ │ │ └── crafting │ │ │ │ └── woodsets │ │ │ │ ├── ancient │ │ │ │ ├── button.json │ │ │ │ └── pressure_plate.json │ │ │ │ ├── azalea │ │ │ │ ├── button.json │ │ │ │ └── pressure_plate.json │ │ │ │ └── blossom │ │ │ │ ├── button.json │ │ │ │ └── pressure_plate.json │ │ └── upgrade_aquatic │ │ │ └── recipes │ │ │ ├── driftwood_button.json │ │ │ ├── driftwood_pressure_plate.json │ │ │ ├── river_button.json │ │ │ └── river_pressure_plate.json │ └── pack.mcmeta ├── advancements │ ├── data │ │ ├── iguanatweaksreborn │ │ │ └── advancements │ │ │ │ └── story │ │ │ │ ├── anvil_fix.json │ │ │ │ ├── biometer.json │ │ │ │ ├── campfire.json │ │ │ │ ├── furnace.json │ │ │ │ ├── golden_pickaxe.json │ │ │ │ ├── ores │ │ │ │ ├── coal.json │ │ │ │ ├── copper.json │ │ │ │ ├── diamond.json │ │ │ │ ├── emerald.json │ │ │ │ ├── gold.json │ │ │ │ ├── iron.json │ │ │ │ ├── lapis.json │ │ │ │ └── redstone.json │ │ │ │ ├── rich_farmland.json │ │ │ │ ├── seeds.json │ │ │ │ ├── spawner.json │ │ │ │ ├── toolbelt.json │ │ │ │ ├── toolbelt_upgrade.json │ │ │ │ ├── torch.json │ │ │ │ ├── unfair_oneshot.json │ │ │ │ └── winter_is_coming.json │ │ └── minecraft │ │ │ └── advancements │ │ │ ├── adventure │ │ │ ├── adventuring_time.json │ │ │ ├── arbalistic.json │ │ │ ├── kill_all_mobs.json │ │ │ ├── sniper_duel.json │ │ │ ├── trim_with_all_exclusive_armor_patterns.json │ │ │ └── two_birds_one_arrow.json │ │ │ ├── end │ │ │ └── levitate.json │ │ │ ├── husbandry │ │ │ ├── balanced_diet.json │ │ │ ├── bred_all_animals.json │ │ │ └── obtain_netherite_hoe.json │ │ │ ├── nether │ │ │ ├── all_effects.json │ │ │ ├── all_potions.json │ │ │ ├── charge_respawn_anchor.json │ │ │ ├── explore_nether.json │ │ │ ├── fast_travel.json │ │ │ ├── obtain_crying_obsidian.json │ │ │ ├── return_to_sender.json │ │ │ └── uneasy_alliance.json │ │ │ └── story │ │ │ ├── deflect_arrow.json │ │ │ ├── enter_the_nether.json │ │ │ ├── form_obsidian.json │ │ │ └── mine_stone.json │ └── pack.mcmeta ├── assets_override │ ├── assets │ │ ├── iguanatweaksreborn │ │ │ └── lang │ │ │ │ ├── en_us.json │ │ │ │ └── it_it.json │ │ └── minecraft │ │ │ ├── lang │ │ │ ├── en_us.json │ │ │ └── it_it.json │ │ │ └── textures │ │ │ ├── block │ │ │ └── spawner.png │ │ │ ├── entity │ │ │ └── projectiles │ │ │ │ └── arrow.png │ │ │ └── item │ │ │ └── arrow.png │ └── pack.mcmeta ├── attack_invincibility │ ├── data │ │ └── minecraft │ │ │ └── tags │ │ │ └── damage_type │ │ │ └── bypasses_cooldown.json │ └── pack.mcmeta ├── autumnity_integration │ ├── data │ │ └── autumnity │ │ │ └── loot_tables │ │ │ └── entities │ │ │ └── turkey.json │ └── pack.mcmeta ├── berries │ ├── data │ │ └── minecraft │ │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ └── sweet_berry_bush.json │ │ │ └── worldgen │ │ │ └── configured_feature │ │ │ └── patch_berry_bush.json │ └── pack.mcmeta ├── berries_berry_good │ ├── data │ │ ├── autumnity │ │ │ ├── loot_tables │ │ │ │ └── blocks │ │ │ │ │ ├── foul_berry_bush.json │ │ │ │ │ └── tall_foul_berry_bush.json │ │ │ └── recipes │ │ │ │ └── foul_berry_pips.json │ │ ├── berry_good │ │ │ ├── modifiers │ │ │ │ └── loot_tables │ │ │ │ │ └── cave_vines.json │ │ │ └── recipes │ │ │ │ └── sweet_berry_pips.json │ │ └── minecraft │ │ │ └── worldgen │ │ │ └── configured_feature │ │ │ └── patch_berry_bush.json │ └── pack.mcmeta ├── better_beacon │ ├── data │ │ └── minecraft │ │ │ └── recipes │ │ │ └── beacon.json │ └── pack.mcmeta ├── better_loot │ ├── data │ │ └── minecraft │ │ │ └── loot_tables │ │ │ ├── archaeology │ │ │ └── trail_ruins_common.json │ │ │ └── chests │ │ │ ├── abandoned_mineshaft.json │ │ │ ├── buried_treasure.json │ │ │ ├── desert_pyramid.json │ │ │ ├── end_city_treasure.json │ │ │ ├── jungle_temple.json │ │ │ ├── pillager_outpost.json │ │ │ ├── shipwreck_treasure.json │ │ │ ├── simple_dungeon.json │ │ │ └── stronghold_library.json │ └── pack.mcmeta ├── better_rails │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── advancements │ │ │ │ └── recipes │ │ │ │ │ └── transportation │ │ │ │ │ └── copper_powered_rail.json │ │ │ ├── loot_modifiers │ │ │ │ └── minecarts │ │ │ │ │ └── replace_vanilla_powered_rails.json │ │ │ └── recipes │ │ │ │ └── copper_powered_rail.json │ │ └── minecraft │ │ │ ├── advancements │ │ │ └── recipes │ │ │ │ └── transportation │ │ │ │ ├── activator_rail.json │ │ │ │ ├── detector_rail.json │ │ │ │ ├── powered_rail.json │ │ │ │ └── rail.json │ │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ └── powered_rail.json │ │ │ └── recipes │ │ │ ├── activator_rail.json │ │ │ ├── detector_rail.json │ │ │ ├── powered_rail.json │ │ │ └── rail.json │ └── pack.mcmeta ├── block_data │ ├── data │ │ └── iguanatweaksreborn │ │ │ └── block_definitions │ │ │ ├── bone_meal_fail_chance │ │ │ ├── cave_vines.json │ │ │ ├── saplings.json │ │ │ └── sweet_berry_bush.json │ │ │ ├── crops │ │ │ ├── beetroots.json │ │ │ ├── beetroots_grown.json │ │ │ ├── carrots.json │ │ │ ├── carrots_grown.json │ │ │ ├── potatoes.json │ │ │ ├── potatoes_grown.json │ │ │ ├── wheat.json │ │ │ └── wheat_grown.json │ │ │ ├── custom_hardness │ │ │ ├── ancient_debris.json │ │ │ ├── budding_amethyst.json │ │ │ ├── deepslate │ │ │ │ ├── coal.json │ │ │ │ ├── copper.json │ │ │ │ ├── diamond.json │ │ │ │ ├── emerald.json │ │ │ │ ├── gold.json │ │ │ │ ├── iron.json │ │ │ │ ├── lapis.json │ │ │ │ └── redstone.json │ │ │ ├── ender_chest.json │ │ │ ├── leaves.json │ │ │ ├── netherrack.json │ │ │ ├── nylium.json │ │ │ ├── obsidians.json │ │ │ ├── powder_snow.json │ │ │ ├── spawner.json │ │ │ ├── stone │ │ │ │ ├── coal.json │ │ │ │ ├── copper.json │ │ │ │ ├── diamond.json │ │ │ │ ├── emerald.json │ │ │ │ ├── gold.json │ │ │ │ ├── iron.json │ │ │ │ ├── lapis.json │ │ │ │ └── redstone.json │ │ │ └── trapdoors.json │ │ │ └── experience │ │ │ ├── amethyst_cluster.json │ │ │ ├── copper_ores.json │ │ │ ├── gold_ores.json │ │ │ ├── iron_ores.json │ │ │ └── sculk_catalyst.json │ └── pack.mcmeta ├── caverns_and_chasms_integration │ ├── data │ │ └── caverns_and_chasms │ │ │ ├── forge │ │ │ └── biome_modifier │ │ │ │ └── add_feature │ │ │ │ └── base_ores.json │ │ │ ├── item_definitions │ │ │ ├── armor │ │ │ │ ├── necromium │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ ├── sanguine │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ └── silver │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ ├── materials │ │ │ │ ├── necromium_tools.json │ │ │ │ └── silver_tools.json │ │ │ └── piercing_pickaxes │ │ │ │ ├── necromium.json │ │ │ │ └── silver.json │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── deeper.json │ │ │ │ └── peeper.json │ │ │ ├── tags │ │ │ └── items │ │ │ │ ├── equipment │ │ │ │ ├── armor │ │ │ │ │ ├── necromium.json │ │ │ │ │ ├── sanguine.json │ │ │ │ │ └── silver.json │ │ │ │ └── hand │ │ │ │ │ ├── necromium.json │ │ │ │ │ ├── silver.json │ │ │ │ │ └── tools │ │ │ │ │ ├── necromium.json │ │ │ │ │ └── silver.json │ │ │ │ ├── experience_boost_items.json │ │ │ │ ├── magic_damage_items.json │ │ │ │ └── slowness_inflicting_items.json │ │ │ └── worldgen │ │ │ └── configured_feature │ │ │ ├── ore_gold_buried.json │ │ │ ├── ore_silver_buried.json │ │ │ └── ore_spinel_buried.json │ └── pack.mcmeta ├── cheaper_chains │ ├── data │ │ ├── minecraft │ │ │ └── recipes │ │ │ │ └── chain.json │ │ └── tconstruct │ │ │ └── recipes │ │ │ └── smeltery │ │ │ └── melting │ │ │ └── metal │ │ │ └── iron │ │ │ └── chain.json │ └── pack.mcmeta ├── cloth │ ├── data │ │ ├── caverns_and_chasms │ │ │ └── recipes │ │ │ │ └── living_flesh.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── advancements │ │ │ │ ├── adventure │ │ │ │ │ ├── bundle.json │ │ │ │ │ ├── chainmail.json │ │ │ │ │ └── cloth.json │ │ │ │ └── recipes │ │ │ │ │ ├── combat │ │ │ │ │ ├── chainmail_boots.json │ │ │ │ │ ├── chainmail_chestplate.json │ │ │ │ │ ├── chainmail_helmet.json │ │ │ │ │ └── chainmail_leggings.json │ │ │ │ │ └── decorations │ │ │ │ │ ├── black_bed.json │ │ │ │ │ ├── blue_bed.json │ │ │ │ │ ├── brown_bed.json │ │ │ │ │ ├── cyan_bed.json │ │ │ │ │ ├── gray_bed.json │ │ │ │ │ ├── green_bed.json │ │ │ │ │ ├── light_blue_bed.json │ │ │ │ │ ├── light_gray_bed.json │ │ │ │ │ ├── lime_bed.json │ │ │ │ │ ├── magenta_bed.json │ │ │ │ │ ├── orange_bed.json │ │ │ │ │ ├── pink_bed.json │ │ │ │ │ ├── purple_bed.json │ │ │ │ │ ├── red_bed.json │ │ │ │ │ ├── white_bed.json │ │ │ │ │ └── yellow_bed.json │ │ │ ├── loot_modifiers │ │ │ │ ├── cloth_from_drowned.json │ │ │ │ ├── cloth_from_husk.json │ │ │ │ ├── cloth_from_zombie.json │ │ │ │ ├── cloth_from_zombie_villager.json │ │ │ │ ├── cloth_from_zombified_piglin.json │ │ │ │ └── replace_rotten_flesh.json │ │ │ ├── loot_tables │ │ │ │ └── entities │ │ │ │ │ └── cloth_from_zombies.json │ │ │ └── recipes │ │ │ │ ├── chainmail_boots.json │ │ │ │ ├── chainmail_chestplate.json │ │ │ │ ├── chainmail_helmet.json │ │ │ │ └── chainmail_leggings.json │ │ └── minecraft │ │ │ ├── advancements │ │ │ ├── adventure │ │ │ │ └── sleep_in_bed.json │ │ │ └── recipes │ │ │ │ └── tools │ │ │ │ └── bundle.json │ │ │ └── recipes │ │ │ ├── black_bed.json │ │ │ ├── blue_bed.json │ │ │ ├── brown_bed.json │ │ │ ├── bundle.json │ │ │ ├── cyan_bed.json │ │ │ ├── gray_bed.json │ │ │ ├── green_bed.json │ │ │ ├── light_blue_bed.json │ │ │ ├── light_gray_bed.json │ │ │ ├── lime_bed.json │ │ │ ├── magenta_bed.json │ │ │ ├── orange_bed.json │ │ │ ├── pink_bed.json │ │ │ ├── purple_bed.json │ │ │ ├── red_bed.json │ │ │ ├── white_bed.json │ │ │ └── yellow_bed.json │ └── pack.mcmeta ├── coal_fire │ ├── data │ │ ├── clayworks │ │ │ └── recipes │ │ │ │ └── charcoal_from_baking.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── advancements │ │ │ │ ├── nether │ │ │ │ │ └── hellish_coal.json │ │ │ │ ├── recipes │ │ │ │ │ └── tools │ │ │ │ │ │ └── firestarter.json │ │ │ │ └── story │ │ │ │ │ ├── charcoal.json │ │ │ │ │ └── firestarter.json │ │ │ ├── forge │ │ │ │ └── biome_modifier │ │ │ │ │ └── hellish_coal_ore.json │ │ │ ├── loot_modifiers │ │ │ │ └── coal_fire │ │ │ │ │ └── replace_flint_and_steel.json │ │ │ ├── recipes │ │ │ │ └── firestarter.json │ │ │ └── worldgen │ │ │ │ ├── configured_feature │ │ │ │ └── hellish_coal.json │ │ │ │ └── placed_feature │ │ │ │ └── hellish_coal.json │ │ └── minecraft │ │ │ ├── recipes │ │ │ ├── charcoal.json │ │ │ └── flint_and_steel.json │ │ │ └── tags │ │ │ └── blocks │ │ │ └── needs_iron_tool.json │ └── pack.mcmeta ├── combat_rework │ ├── data │ │ └── iguanatweaksreborn │ │ │ ├── item_definitions │ │ │ ├── armor │ │ │ │ ├── chainmail │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ ├── diamond │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ ├── golden │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ ├── iron │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ ├── leather │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ │ └── netherite │ │ │ │ │ ├── boots.json │ │ │ │ │ ├── chestplate.json │ │ │ │ │ ├── helmet.json │ │ │ │ │ ├── leggings.json │ │ │ │ │ └── set.json │ │ │ ├── hoes │ │ │ │ ├── medium_radius_scythe.json │ │ │ │ └── small_radius_scythe.json │ │ │ ├── materials │ │ │ │ ├── diamond_tools.json │ │ │ │ ├── flint_tools.json │ │ │ │ ├── golden_tools.json │ │ │ │ ├── iron_tools.json │ │ │ │ ├── netherite_tools.json │ │ │ │ ├── stone_tools.json │ │ │ │ └── wooden_tools.json │ │ │ ├── piercing_pickaxes │ │ │ │ ├── diamond.json │ │ │ │ ├── golden.json │ │ │ │ ├── iron.json │ │ │ │ ├── netherite.json │ │ │ │ ├── stone.json │ │ │ │ └── wooden.json │ │ │ └── tools │ │ │ │ ├── autumnity │ │ │ │ └── snail_shell_chestplate.json │ │ │ │ ├── axes.json │ │ │ │ ├── bow.json │ │ │ │ ├── carrot_on_a_stick.json │ │ │ │ ├── crossbow.json │ │ │ │ ├── elytra.json │ │ │ │ ├── fishing_rod.json │ │ │ │ ├── flint_and_steel.json │ │ │ │ ├── hangglider │ │ │ │ ├── hang_glider.json │ │ │ │ └── reinforced_hang_glider.json │ │ │ │ ├── hoes.json │ │ │ │ ├── pickaxes.json │ │ │ │ ├── quark │ │ │ │ └── forgotten_hat.json │ │ │ │ ├── shears.json │ │ │ │ ├── shield.json │ │ │ │ ├── shovels.json │ │ │ │ ├── swords.json │ │ │ │ └── trident.json │ │ │ └── tags │ │ │ └── items │ │ │ ├── medium_radius_scythe.json │ │ │ └── small_radius_scythe.json │ └── pack.mcmeta ├── copper_furnace │ ├── data │ │ ├── iguanatweaksreborn │ │ │ ├── advancements │ │ │ │ └── recipes │ │ │ │ │ └── copper_ingot_from_campfire.json │ │ │ └── recipes │ │ │ │ └── copper_ingot_from_campfire.json │ │ └── minecraft │ │ │ └── recipes │ │ │ └── furnace.json │ └── pack.mcmeta ├── create_integration │ ├── data │ │ └── create │ │ │ ├── forge │ │ │ └── biome_modifier │ │ │ │ └── extra_zinc_ore.json │ │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ ├── extra_zinc_ore.json │ │ │ └── zinc_ore.json │ │ │ └── placed_feature │ │ │ ├── extra_zinc_ore.json │ │ │ └── zinc_ore.json │ └── pack.mcmeta ├── crops │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── forge │ │ │ │ └── biome_modifier │ │ │ │ │ ├── wild_beetroots.json │ │ │ │ │ ├── wild_carrots.json │ │ │ │ │ ├── wild_potatoes.json │ │ │ │ │ └── wild_wheat.json │ │ │ ├── loot_modifiers │ │ │ │ ├── no_seeds_from_fern.json │ │ │ │ ├── no_seeds_from_grass.json │ │ │ │ ├── no_seeds_from_large_fern.json │ │ │ │ ├── no_seeds_from_tall_grass.json │ │ │ │ ├── replace_baked_potato_from_husk.json │ │ │ │ ├── replace_baked_potato_from_zombie.json │ │ │ │ ├── replace_baked_potato_from_zombie_villager.json │ │ │ │ ├── replace_carrot_from_husk.json │ │ │ │ ├── replace_carrot_from_zombie.json │ │ │ │ ├── replace_carrot_from_zombie_villager.json │ │ │ │ ├── replace_iron_ingot_from_husk.json │ │ │ │ ├── replace_iron_ingot_from_zombie_villager.json │ │ │ │ ├── replace_potato_from_husk.json │ │ │ │ ├── replace_potato_from_zombie.json │ │ │ │ └── replace_potato_from_zombie_villager.json │ │ │ └── worldgen │ │ │ │ ├── configured_feature │ │ │ │ ├── wild_beetroots.json │ │ │ │ ├── wild_carrots.json │ │ │ │ ├── wild_potatoes.json │ │ │ │ └── wild_wheat.json │ │ │ │ └── placed_feature │ │ │ │ ├── wild_beetroots.json │ │ │ │ ├── wild_carrots.json │ │ │ │ ├── wild_potatoes.json │ │ │ │ └── wild_wheat.json │ │ ├── minecraft │ │ │ ├── loot_tables │ │ │ │ └── blocks │ │ │ │ │ ├── beetroots.json │ │ │ │ │ ├── carrots.json │ │ │ │ │ ├── cocoa.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── melon_stem.json │ │ │ │ │ ├── potatoes.json │ │ │ │ │ ├── pumpkin_stem.json │ │ │ │ │ └── wheat.json │ │ │ └── recipes │ │ │ │ ├── melon_seeds.json │ │ │ │ └── pumpkin_seeds.json │ │ └── upgrade_aquatic │ │ │ └── loot_tables │ │ │ └── blocks │ │ │ ├── beachgrass.json │ │ │ └── tall_beachgrass.json │ └── pack.mcmeta ├── disable_long_noses │ ├── data │ │ └── minecraft │ │ │ └── worldgen │ │ │ └── structure_set │ │ │ ├── pillager_outposts.json │ │ │ └── villages.json │ └── pack.mcmeta ├── disable_stone_tools │ ├── data │ │ ├── c │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── hidden_from_recipe_viewers.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksexpanded │ │ │ └── recipes │ │ │ │ └── stone_hammer.json │ │ ├── iguanatweaksreborn │ │ │ └── loot_modifiers │ │ │ │ ├── replace_stone_axe_with_flint.json │ │ │ │ ├── replace_stone_hammer_with_flint.json │ │ │ │ ├── replace_stone_hoe_with_flint.json │ │ │ │ ├── replace_stone_pickaxe_with_flint.json │ │ │ │ ├── replace_stone_shovel_with_flint.json │ │ │ │ └── replace_stone_sword_with_flint.json │ │ ├── minecraft │ │ │ ├── advancements │ │ │ │ └── story │ │ │ │ │ └── upgrade_tools.json │ │ │ └── recipes │ │ │ │ ├── stone_axe.json │ │ │ │ ├── stone_hoe.json │ │ │ │ ├── stone_pickaxe.json │ │ │ │ ├── stone_shovel.json │ │ │ │ └── stone_sword.json │ │ └── quark │ │ │ └── recipes │ │ │ └── tweaks │ │ │ └── crafting │ │ │ └── utility │ │ │ └── tools │ │ │ ├── stone_axe.json │ │ │ ├── stone_hoe.json │ │ │ ├── stone_pickaxe.json │ │ │ ├── stone_shovel.json │ │ │ └── stone_sword.json │ └── pack.mcmeta ├── environmental_integration │ ├── data │ │ ├── environmental │ │ │ └── loot_tables │ │ │ │ └── entities │ │ │ │ ├── deer.json │ │ │ │ ├── duck.json │ │ │ │ ├── reindeer.json │ │ │ │ ├── yak.json │ │ │ │ └── zebra.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ └── iguanatweaksreborn │ │ │ └── loot_modifiers │ │ │ └── no_seeds_from_giant_tall_grass.json │ └── pack.mcmeta ├── farmable_iron │ ├── data │ │ ├── iguanatweaksreborn │ │ │ └── advancements │ │ │ │ └── story │ │ │ │ └── iron_nugget.json │ │ └── minecraft │ │ │ └── loot_tables │ │ │ ├── blocks │ │ │ └── stone.json │ │ │ └── entities │ │ │ └── silverfish.json │ └── pack.mcmeta ├── farmers_delight_integration │ ├── data │ │ ├── c │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── hidden_from_recipe_viewers.json │ │ ├── farmersdelight │ │ │ ├── advancements │ │ │ │ └── main │ │ │ │ │ ├── craft_knife.json │ │ │ │ │ ├── get_ham.json │ │ │ │ │ ├── get_mushroom_colony.json │ │ │ │ │ ├── harvest_straw.json │ │ │ │ │ ├── master_chef.json │ │ │ │ │ ├── obtain_netherite_knife.json │ │ │ │ │ ├── place_organic_compost.json │ │ │ │ │ ├── place_skillet.json │ │ │ │ │ ├── use_cutting_board.json │ │ │ │ │ └── use_skillet.json │ │ │ ├── block_definitions │ │ │ │ ├── budding_tomatoes.json │ │ │ │ ├── cabbages.json │ │ │ │ ├── cabbages_grown.json │ │ │ │ ├── onions.json │ │ │ │ ├── onions_grown.json │ │ │ │ ├── rice.json │ │ │ │ ├── rice_panicles.json │ │ │ │ ├── rice_panicles_grown.json │ │ │ │ ├── tomatoes.json │ │ │ │ ├── tomatoes_grown.json │ │ │ │ ├── wild_cabbages.json │ │ │ │ ├── wild_onions.json │ │ │ │ ├── wild_rice.json │ │ │ │ └── wild_tomatoes.json │ │ │ ├── item_definitions │ │ │ │ └── cakes.json │ │ │ ├── loot_tables │ │ │ │ ├── blocks │ │ │ │ │ ├── budding_tomatoes.json │ │ │ │ │ ├── cabbages.json │ │ │ │ │ ├── onions.json │ │ │ │ │ ├── rice.json │ │ │ │ │ ├── rice_panicles.json │ │ │ │ │ ├── tomatoes.json │ │ │ │ │ ├── wild_beetroots.json │ │ │ │ │ ├── wild_cabbages.json │ │ │ │ │ ├── wild_carrots.json │ │ │ │ │ ├── wild_onions.json │ │ │ │ │ ├── wild_potatoes.json │ │ │ │ │ ├── wild_rice.json │ │ │ │ │ └── wild_tomatoes.json │ │ │ │ └── chests │ │ │ │ │ ├── fd_abandoned_mineshaft.json │ │ │ │ │ ├── fd_bastion_hoglin_stable.json │ │ │ │ │ ├── fd_bastion_treasure.json │ │ │ │ │ ├── fd_end_city_treasure.json │ │ │ │ │ ├── fd_pillager_outpost.json │ │ │ │ │ ├── fd_ruined_portal.json │ │ │ │ │ ├── fd_shipwreck_supply.json │ │ │ │ │ ├── fd_simple_dungeon.json │ │ │ │ │ ├── fd_village_butcher.json │ │ │ │ │ ├── fd_village_desert_house.json │ │ │ │ │ ├── fd_village_plains_house.json │ │ │ │ │ ├── fd_village_savanna_house.json │ │ │ │ │ ├── fd_village_snowy_house.json │ │ │ │ │ └── fd_village_taiga_house.json │ │ │ ├── recipes │ │ │ │ ├── cutting │ │ │ │ │ ├── wild_onions.json │ │ │ │ │ └── wild_rice.json │ │ │ │ ├── diamond_knife.json │ │ │ │ ├── flint_knife.json │ │ │ │ ├── golden_knife.json │ │ │ │ ├── honey_glazed_ham_block.json │ │ │ │ ├── integration │ │ │ │ │ └── create │ │ │ │ │ │ └── milling │ │ │ │ │ │ ├── wild_onions.json │ │ │ │ │ │ └── wild_rice.json │ │ │ │ ├── iron_knife.json │ │ │ │ ├── netherite_knife_smithing.json │ │ │ │ ├── pumpkin_seeds_from_slice.json │ │ │ │ ├── skillet.json │ │ │ │ ├── smoked_ham.json │ │ │ │ └── tomato_seeds.json │ │ │ ├── tags │ │ │ │ └── blocks │ │ │ │ │ ├── rice_crops.json │ │ │ │ │ └── tomato_crops.json │ │ │ └── worldgen │ │ │ │ ├── configured_feature │ │ │ │ ├── patch_wild_cabbages.json │ │ │ │ ├── patch_wild_onions.json │ │ │ │ ├── patch_wild_rice.json │ │ │ │ └── patch_wild_tomatoes.json │ │ │ │ └── placed_feature │ │ │ │ ├── patch_wild_beetroots.json │ │ │ │ ├── patch_wild_carrots.json │ │ │ │ └── patch_wild_potatoes.json │ │ ├── iguanatweaksreborn │ │ │ ├── plant_growth_modifiers │ │ │ │ ├── brown_mushroom_colony.json │ │ │ │ ├── cabbages.json │ │ │ │ ├── onions.json │ │ │ │ ├── red_mushroom_colony.json │ │ │ │ ├── rice.json │ │ │ │ └── tomatoes.json │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── cakes_and_pies.json │ │ └── minecraft │ │ │ └── recipes │ │ │ ├── beetroot_soup.json │ │ │ ├── mushroom_stew.json │ │ │ ├── rabbit_stew_from_brown_mushroom.json │ │ │ └── rabbit_stew_from_red_mushroom.json │ └── pack.mcmeta ├── fishing_loot_changes │ ├── data │ │ └── minecraft │ │ │ └── loot_tables │ │ │ └── gameplay │ │ │ ├── fishing.json │ │ │ └── fishing │ │ │ ├── fish.json │ │ │ └── treasure.json │ └── pack.mcmeta ├── flint_expansion │ ├── data │ │ └── iguanatweaksreborn │ │ │ ├── advancements │ │ │ └── recipes │ │ │ │ ├── combat │ │ │ │ └── flint_sword.json │ │ │ │ ├── misc │ │ │ │ └── flint_from_gravel.json │ │ │ │ └── tools │ │ │ │ ├── flint_axe.json │ │ │ │ ├── flint_hoe.json │ │ │ │ ├── flint_pickaxe.json │ │ │ │ └── flint_shovel.json │ │ │ ├── forge │ │ │ └── biome_modifier │ │ │ │ └── flint_rock.json │ │ │ ├── recipes │ │ │ ├── flint_axe.json │ │ │ ├── flint_from_gravel.json │ │ │ ├── flint_hoe.json │ │ │ ├── flint_pickaxe.json │ │ │ ├── flint_shovel.json │ │ │ └── flint_sword.json │ │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ └── flint_rock.json │ │ │ └── placed_feature │ │ │ └── flint_rock.json │ └── pack.mcmeta ├── hardcore_loot │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ └── iguanatweaksreborn │ │ │ └── loot_modifiers │ │ │ └── chests │ │ │ ├── abandoned_mineshaft.json │ │ │ ├── desert_pyramid.json │ │ │ ├── igloo_chest.json │ │ │ ├── jungle_temple.json │ │ │ ├── pillager_outpost.json │ │ │ ├── ruined_portal.json │ │ │ ├── shipwreck_map.json │ │ │ ├── shipwreck_treasure.json │ │ │ ├── spawn_bonus_chest.json │ │ │ └── village │ │ │ ├── village_armorer.json │ │ │ ├── village_butcher.json │ │ │ ├── village_cartographer.json │ │ │ ├── village_desert_house.json │ │ │ ├── village_fisher.json │ │ │ ├── village_fletcher.json │ │ │ ├── village_mason.json │ │ │ ├── village_plains_house.json │ │ │ ├── village_savanna_house.json │ │ │ ├── village_shepherd.json │ │ │ ├── village_snowy_house.json │ │ │ ├── village_taiga_house.json │ │ │ ├── village_tannery.json │ │ │ ├── village_temple.json │ │ │ ├── village_toolsmith.json │ │ │ └── village_weaponsmith.json │ └── pack.mcmeta ├── hardcore_torches │ ├── data │ │ ├── caverns_and_chasms │ │ │ └── recipes │ │ │ │ └── cupric_torch.json │ │ ├── iguanatweaksreborn │ │ │ ├── advancements │ │ │ │ └── recipes │ │ │ │ │ ├── torch.json │ │ │ │ │ ├── torch_from_campfire.json │ │ │ │ │ └── torch_with_cloth.json │ │ │ └── recipes │ │ │ │ ├── torch.json │ │ │ │ ├── torch_from_campfire.json │ │ │ │ └── torch_with_cloth.json │ │ └── minecraft │ │ │ ├── advancements │ │ │ └── recipes │ │ │ │ └── decorations │ │ │ │ └── torch.json │ │ │ └── recipes │ │ │ ├── soul_torch.json │ │ │ └── torch.json │ └── pack.mcmeta ├── increased_end_cities │ ├── data │ │ └── minecraft │ │ │ └── worldgen │ │ │ └── structure_set │ │ │ └── end_cities.json │ └── pack.mcmeta ├── item_stacks │ ├── data │ │ └── iguanatweaksreborn │ │ │ └── item_definitions │ │ │ └── stacks │ │ │ ├── honey_bottle.json │ │ │ ├── horse_armors.json │ │ │ ├── minecarts.json │ │ │ ├── potion.json │ │ │ ├── saddle.json │ │ │ └── snowball.json │ └── pack.mcmeta ├── livestock_changes │ ├── data │ │ ├── buzzier_bees │ │ │ └── loot_tables │ │ │ │ └── entities │ │ │ │ └── moobloom.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── livestock_data │ │ │ │ ├── breedable_animals.json │ │ │ │ ├── chickens.json │ │ │ │ ├── live_death │ │ │ │ │ ├── high_lifespan.json │ │ │ │ │ ├── low_lifespan.json │ │ │ │ │ ├── medium_lifespan.json │ │ │ │ │ ├── really_high_lifespan.json │ │ │ │ │ └── really_low_lifespan.json │ │ │ │ ├── milkable.json │ │ │ │ ├── sheep.json │ │ │ │ └── villager.json │ │ │ ├── loot_modifiers │ │ │ │ └── livestock_drops_adult.json │ │ │ └── tags │ │ │ │ └── entity_types │ │ │ │ ├── high_lifespan.json │ │ │ │ ├── low_lifespan.json │ │ │ │ ├── medium_lifespan.json │ │ │ │ ├── really_high_lifespan.json │ │ │ │ └── really_low_lifespan.json │ │ └── minecraft │ │ │ └── loot_tables │ │ │ └── entities │ │ │ ├── chicken.json │ │ │ ├── cod.json │ │ │ ├── cow.json │ │ │ ├── hoglin.json │ │ │ ├── mooshroom.json │ │ │ ├── pig.json │ │ │ ├── pufferfish.json │ │ │ ├── rabbit.json │ │ │ ├── salmon.json │ │ │ ├── sheep.json │ │ │ ├── sheep │ │ │ ├── black.json │ │ │ ├── blue.json │ │ │ ├── brown.json │ │ │ ├── cyan.json │ │ │ ├── gray.json │ │ │ ├── green.json │ │ │ ├── light_blue.json │ │ │ ├── light_gray.json │ │ │ ├── lime.json │ │ │ ├── magenta.json │ │ │ ├── orange.json │ │ │ ├── pink.json │ │ │ ├── purple.json │ │ │ ├── red.json │ │ │ ├── white.json │ │ │ └── yellow.json │ │ │ └── tropical_fish.json │ └── pack.mcmeta ├── misc_tweaks │ ├── data │ │ ├── atmospheric │ │ │ └── recipes │ │ │ │ ├── arid_sandstone.json │ │ │ │ └── red_arid_sandstone.json │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── loot_modifiers │ │ │ │ └── replace_saddles.json │ │ │ └── recipes │ │ │ │ ├── clay_balls_from_block.json │ │ │ │ ├── dispenser_from_dropper.json │ │ │ │ ├── iron_doors_smelting.json │ │ │ │ ├── saddle.json │ │ │ │ └── sticky_piston_with_honey.json │ │ └── minecraft │ │ │ ├── advancements │ │ │ ├── nether │ │ │ │ └── use_lodestone.json │ │ │ └── recipes │ │ │ │ └── decorations │ │ │ │ └── lodestone.json │ │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ └── cake.json │ │ │ ├── recipes │ │ │ ├── dark_prismarine.json │ │ │ ├── lead.json │ │ │ ├── lodestone.json │ │ │ ├── red_sandstone.json │ │ │ └── sandstone.json │ │ │ └── tags │ │ │ └── blocks │ │ │ └── mineable │ │ │ ├── hoe.json │ │ │ └── pickaxe.json │ └── pack.mcmeta ├── mob_loot_changes │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ ├── iguanatweaksreborn │ │ │ ├── loot_modifiers │ │ │ │ └── reduced_no_player_kill_drop.json │ │ │ └── tags │ │ │ │ ├── entity_types │ │ │ │ └── reduced_drop_no_player_kill_blacklist.json │ │ │ │ └── items │ │ │ │ └── reduced_drop_no_player_kill_blacklist.json │ │ ├── minecraft │ │ │ └── loot_tables │ │ │ │ └── entities │ │ │ │ ├── blaze.json │ │ │ │ ├── cave_spider.json │ │ │ │ ├── creeper.json │ │ │ │ ├── elder_guardian.json │ │ │ │ ├── enderman.json │ │ │ │ ├── ghast.json │ │ │ │ ├── guardian.json │ │ │ │ ├── magma_cube.json │ │ │ │ ├── phantom.json │ │ │ │ ├── pillager.json │ │ │ │ ├── skeleton.json │ │ │ │ ├── slime.json │ │ │ │ ├── spider.json │ │ │ │ ├── stray.json │ │ │ │ ├── witch.json │ │ │ │ ├── wither_skeleton.json │ │ │ │ └── zombified_piglin.json │ │ └── savage_and_ravage │ │ │ └── loot_tables │ │ │ └── entities │ │ │ └── skeleton_villager.json │ └── pack.mcmeta ├── mobs_buffs │ ├── data │ │ ├── enhancedai │ │ │ └── tags │ │ │ │ └── entity_types │ │ │ │ ├── can_be_miner.json │ │ │ │ └── change_wolves.json │ │ └── iguanatweaksreborn │ │ │ ├── mobs_properties_randomness │ │ │ ├── mobs │ │ │ │ ├── attack_speed_nerf.json │ │ │ │ ├── drowneds.json │ │ │ │ ├── follow_range_bonus.json │ │ │ │ ├── fuck_vexes.json │ │ │ │ ├── fuck_vindicators.json │ │ │ │ ├── iron_golems.json │ │ │ │ ├── mobs.json │ │ │ │ ├── movement_speed_bonus.json │ │ │ │ ├── overworld_skeletons.json │ │ │ │ ├── overworld_zombies_equipment.json │ │ │ │ ├── pehkui │ │ │ │ │ ├── bees.json │ │ │ │ │ ├── phantoms.json │ │ │ │ │ ├── sea_creatures.json │ │ │ │ │ ├── skeletons.json │ │ │ │ │ ├── spiders.json │ │ │ │ │ ├── vexes.json │ │ │ │ │ └── zombies.json │ │ │ │ ├── small_animals.json │ │ │ │ ├── speed_nerf.json │ │ │ │ ├── spiders.json │ │ │ │ ├── wolves │ │ │ │ │ ├── skeleton_wolf.json │ │ │ │ │ ├── wolves.json │ │ │ │ │ └── zombie_wolf.json │ │ │ │ └── zombies.json │ │ │ └── presets │ │ │ │ ├── chained_copper_armor.json │ │ │ │ ├── chainmail_armor.json │ │ │ │ ├── diamond_armor.json │ │ │ │ ├── durium_armor.json │ │ │ │ ├── golden_armor.json │ │ │ │ ├── iron_armor.json │ │ │ │ └── leather_armor.json │ │ │ └── tags │ │ │ └── entity_types │ │ │ ├── attack_speed_nerf.json │ │ │ ├── follow_range_bonus.json │ │ │ ├── horses.json │ │ │ ├── hostiles.json │ │ │ ├── hostiles_no_zombies.json │ │ │ ├── hostiles_with_equip.json │ │ │ ├── mobs_no_bosses.json │ │ │ ├── mobs_no_bosses_no_zombies.json │ │ │ ├── movement_speed_bonus.json │ │ │ ├── overworld_skeletons.json │ │ │ ├── overworld_zombies.json │ │ │ ├── passive.json │ │ │ ├── sea_creatures.json │ │ │ ├── skeletons.json │ │ │ ├── small_animals.json │ │ │ ├── speed_nerf.json │ │ │ ├── wolves.json │ │ │ └── zombies.json │ └── pack.mcmeta ├── nether_tweaks │ ├── data │ │ └── minecraft │ │ │ └── dimension_type │ │ │ └── the_nether.json │ └── pack.mcmeta ├── no_food_in_furnace │ ├── data │ │ ├── atmospheric │ │ │ └── recipes │ │ │ │ └── roasted_yucca_fruit.json │ │ ├── autumnity │ │ │ └── recipes │ │ │ │ ├── cooked_turkey.json │ │ │ │ ├── cooked_turkey_piece.json │ │ │ │ └── syrup_bottle.json │ │ ├── berry_good │ │ │ └── recipes │ │ │ │ └── sweet_berry_meatballs.json │ │ ├── environmental │ │ │ └── recipes │ │ │ │ ├── cooked_duck.json │ │ │ │ └── cooked_venison.json │ │ ├── farmersdelight │ │ │ └── recipes │ │ │ │ ├── beef_patty.json │ │ │ │ ├── bread_from_smelting.json │ │ │ │ ├── cooked_bacon.json │ │ │ │ ├── cooked_chicken_cuts.json │ │ │ │ ├── cooked_cod_slice.json │ │ │ │ ├── cooked_mutton_chops.json │ │ │ │ ├── cooked_salmon_slice.json │ │ │ │ └── fried_egg.json │ │ ├── iguanatweaksexpanded │ │ │ └── recipes │ │ │ │ ├── cheese_slice_from_smelting.json │ │ │ │ └── over_easy_egg_from_smelting.json │ │ ├── incubation │ │ │ └── recipes │ │ │ │ └── fried_egg.json │ │ ├── minecraft │ │ │ └── recipes │ │ │ │ ├── baked_potato.json │ │ │ │ ├── cooked_beef.json │ │ │ │ ├── cooked_chicken.json │ │ │ │ ├── cooked_cod.json │ │ │ │ ├── cooked_mutton.json │ │ │ │ ├── cooked_porkchop.json │ │ │ │ ├── cooked_rabbit.json │ │ │ │ ├── cooked_salmon.json │ │ │ │ ├── dried_kelp_from_smelting.json │ │ │ │ └── smoker.json │ │ ├── quark │ │ │ └── recipes │ │ │ │ └── mobs │ │ │ │ └── smelting │ │ │ │ └── cooked_crab_leg.json │ │ └── upgrade_aquatic │ │ │ └── recipes │ │ │ ├── boiled_pickerelweed.json │ │ │ ├── cooked_lionfish.json │ │ │ ├── cooked_perch.json │ │ │ └── cooked_pike.json │ └── pack.mcmeta ├── no_saplings_in_winter │ ├── data │ │ ├── forge │ │ │ └── loot_modifiers │ │ │ │ └── global_loot_modifiers.json │ │ └── iguanatweaksreborn │ │ │ └── loot_modifiers │ │ │ └── seasons │ │ │ └── no_saplings_in_winter.json │ └── pack.mcmeta ├── ocean_guardians │ ├── data │ │ └── iguanatweaksreborn │ │ │ └── forge │ │ │ └── biome_modifier │ │ │ └── guardians.json │ └── pack.mcmeta ├── ore_generation │ ├── data │ │ ├── iguanatweaksreborn │ │ │ ├── forge │ │ │ │ └── biome_modifier │ │ │ │ │ ├── ore_coal_lower.json │ │ │ │ │ ├── ore_coal_upper.json │ │ │ │ │ ├── ore_copper.json │ │ │ │ │ ├── ore_diamond.json │ │ │ │ │ ├── ore_diamond_buried.json │ │ │ │ │ ├── ore_diamond_large.json │ │ │ │ │ ├── ore_diamond_medium.json │ │ │ │ │ ├── ore_iron_middle.json │ │ │ │ │ ├── ore_iron_small.json │ │ │ │ │ ├── ore_iron_upper.json │ │ │ │ │ ├── ore_lapis.json │ │ │ │ │ ├── ore_lapis_buried.json │ │ │ │ │ ├── ore_redstone.json │ │ │ │ │ └── ore_redstone_lower.json │ │ │ ├── tags │ │ │ │ └── worldgen │ │ │ │ │ └── biome │ │ │ │ │ ├── has_more_iron_ore.json │ │ │ │ │ └── is_non_snowy_plains.json │ │ │ └── worldgen │ │ │ │ ├── configured_feature │ │ │ │ ├── ore_coal.json │ │ │ │ ├── ore_coal_buried.json │ │ │ │ ├── ore_copper_small.json │ │ │ │ ├── ore_diamond_buried.json │ │ │ │ ├── ore_diamond_large.json │ │ │ │ ├── ore_diamond_medium.json │ │ │ │ ├── ore_diamond_small.json │ │ │ │ ├── ore_iron.json │ │ │ │ ├── ore_iron_small.json │ │ │ │ ├── ore_lapis.json │ │ │ │ ├── ore_lapis_buried.json │ │ │ │ └── ore_redstone.json │ │ │ │ └── placed_feature │ │ │ │ ├── ore_coal_lower.json │ │ │ │ ├── ore_coal_upper.json │ │ │ │ ├── ore_copper.json │ │ │ │ ├── ore_diamond.json │ │ │ │ ├── ore_diamond_buried.json │ │ │ │ ├── ore_diamond_large.json │ │ │ │ ├── ore_diamond_medium.json │ │ │ │ ├── ore_iron_middle.json │ │ │ │ ├── ore_iron_small.json │ │ │ │ ├── ore_iron_upper.json │ │ │ │ ├── ore_lapis.json │ │ │ │ ├── ore_lapis_buried.json │ │ │ │ ├── ore_redstone.json │ │ │ │ └── ore_redstone_lower.json │ │ └── minecraft │ │ │ ├── forge │ │ │ └── biome_modifier │ │ │ │ └── ore_diamond_medium.json │ │ │ └── worldgen │ │ │ ├── configured_feature │ │ │ ├── ore_coal.json │ │ │ ├── ore_coal_buried.json │ │ │ ├── ore_copper_large.json │ │ │ ├── ore_copper_small.json │ │ │ ├── ore_diamond_buried.json │ │ │ ├── ore_diamond_large.json │ │ │ ├── ore_diamond_medium.json │ │ │ ├── ore_diamond_small.json │ │ │ ├── ore_emerald.json │ │ │ ├── ore_gold.json │ │ │ ├── ore_gold_buried.json │ │ │ ├── ore_gold_extra.json │ │ │ ├── ore_iron.json │ │ │ ├── ore_iron_small.json │ │ │ ├── ore_lapis.json │ │ │ ├── ore_lapis_buried.json │ │ │ └── ore_redstone.json │ │ │ └── placed_feature │ │ │ ├── ore_copper_large.json │ │ │ └── ore_diamond_medium.json │ └── pack.mcmeta ├── ore_smelting │ ├── data │ │ ├── caverns_and_chasms │ │ │ └── recipes │ │ │ │ ├── silver_ingot_from_blasting_deepslate_silver_ore.json │ │ │ │ ├── silver_ingot_from_blasting_raw_silver.json │ │ │ │ ├── silver_ingot_from_blasting_silver_ore.json │ │ │ │ ├── silver_ingot_from_blasting_soul_silver_ore.json │ │ │ │ ├── silver_ingot_from_smelting_deepslate_silver_ore.json │ │ │ │ ├── silver_ingot_from_smelting_raw_silver.json │ │ │ │ ├── silver_ingot_from_smelting_silver_ore.json │ │ │ │ ├── silver_ingot_from_smelting_soul_silver_ore.json │ │ │ │ ├── spinel_from_blasting_deepslate_spinel_ore.json │ │ │ │ ├── spinel_from_blasting_spinel_ore.json │ │ │ │ ├── spinel_from_smelting_deepslate_spinel_ore.json │ │ │ │ └── spinel_from_smelting_spinel_ore.json │ │ └── minecraft │ │ │ └── recipes │ │ │ ├── copper_ingot_from_smelting_copper_ore.json │ │ │ ├── copper_ingot_from_smelting_deepslate_copper_ore.json │ │ │ ├── copper_ingot_from_smelting_raw_copper.json │ │ │ ├── diamond_from_smelting_deepslate_diamond_ore.json │ │ │ ├── diamond_from_smelting_diamond_ore.json │ │ │ ├── emerald_from_smelting_deepslate_emerald_ore.json │ │ │ ├── emerald_from_smelting_emerald_ore.json │ │ │ ├── gold_ingot_from_blasting_deepslate_gold_ore.json │ │ │ ├── gold_ingot_from_blasting_gold_ore.json │ │ │ ├── gold_ingot_from_blasting_nether_gold_ore.json │ │ │ ├── gold_ingot_from_blasting_raw_gold.json │ │ │ ├── gold_ingot_from_smelting_deepslate_gold_ore.json │ │ │ ├── gold_ingot_from_smelting_gold_ore.json │ │ │ ├── gold_ingot_from_smelting_nether_gold_ore.json │ │ │ ├── gold_ingot_from_smelting_raw_gold.json │ │ │ ├── iron_ingot_from_blasting_deepslate_iron_ore.json │ │ │ ├── iron_ingot_from_blasting_iron_ore.json │ │ │ ├── iron_ingot_from_blasting_raw_iron.json │ │ │ ├── iron_ingot_from_smelting_deepslate_iron_ore.json │ │ │ ├── iron_ingot_from_smelting_iron_ore.json │ │ │ ├── iron_ingot_from_smelting_raw_iron.json │ │ │ ├── lapis_lazuli_from_smelting_deepslate_lapis_ore.json │ │ │ ├── lapis_lazuli_from_smelting_lapis_ore.json │ │ │ ├── netherite_scrap.json │ │ │ ├── netherite_scrap_from_blasting.json │ │ │ ├── quartz.json │ │ │ ├── redstone_from_smelting_deepslate_redstone_ore.json │ │ │ └── redstone_from_smelting_redstone_ore.json │ └── pack.mcmeta ├── plant_growth_modifiers │ ├── data │ │ └── iguanatweaksreborn │ │ │ └── plant_growth_modifiers │ │ │ ├── bamboo.json │ │ │ ├── cactus.json │ │ │ ├── chorus_flower.json │ │ │ ├── cocoa.json │ │ │ ├── crops │ │ │ ├── beetroots.json │ │ │ ├── carrots.json │ │ │ ├── melon_stem.json │ │ │ ├── pitcher_crop.json │ │ │ ├── potatoes.json │ │ │ ├── pumpkin_stem.json │ │ │ ├── torchflower_crop.json │ │ │ └── wheat.json │ │ │ ├── dragon_roots.json │ │ │ ├── foul_berry.json │ │ │ ├── kelp.json │ │ │ ├── mulberry.json │ │ │ ├── nether_wart.json │ │ │ ├── saplings.json │ │ │ ├── sugar_cane.json │ │ │ ├── sweet_berry_bush.json │ │ │ └── tall_foul_berry.json │ └── pack.mcmeta ├── quark_integration │ ├── data │ │ └── quark │ │ │ ├── loot_tables │ │ │ └── entities │ │ │ │ ├── crab.json │ │ │ │ └── foxhound.json │ │ │ └── recipes │ │ │ └── automation │ │ │ └── crafting │ │ │ └── furnaces │ │ │ ├── blackstone_blast_furnace.json │ │ │ ├── blackstone_furnace.json │ │ │ ├── blackstone_smoker.json │ │ │ ├── cobblestone_furnace.json │ │ │ ├── deepslate_blast_furnace.json │ │ │ ├── deepslate_furnace.json │ │ │ ├── deepslate_smoker.json │ │ │ └── mixed_furnace.json │ └── pack.mcmeta ├── respawn_obelisk │ ├── data │ │ └── iguanatweaksreborn │ │ │ ├── advancements │ │ │ └── adventure │ │ │ │ ├── activate_respawn_obelisk.json │ │ │ │ └── respawn_obelisk.json │ │ │ ├── structures │ │ │ ├── respawn_obelisk_birch.nbt │ │ │ ├── respawn_obelisk_deepslate.nbt │ │ │ ├── respawn_obelisk_desert.nbt │ │ │ ├── respawn_obelisk_jungle.nbt │ │ │ ├── respawn_obelisk_ocean.nbt │ │ │ ├── respawn_obelisk_snow.nbt │ │ │ └── respawn_obelisk_stonebrick.nbt │ │ │ ├── tags │ │ │ └── worldgen │ │ │ │ ├── biome │ │ │ │ ├── is_birch_forest.json │ │ │ │ └── is_snowy_no_water.json │ │ │ │ └── structure │ │ │ │ └── respawn_obelisk.json │ │ │ └── worldgen │ │ │ ├── structure │ │ │ ├── respawn_obelisk_birch.json │ │ │ ├── respawn_obelisk_deepslate.json │ │ │ ├── respawn_obelisk_desert.json │ │ │ ├── respawn_obelisk_jungle.json │ │ │ ├── respawn_obelisk_ocean.json │ │ │ ├── respawn_obelisk_snow.json │ │ │ └── respawn_obelisk_stonebrick.json │ │ │ ├── structure_set │ │ │ └── respawn_obelisk.json │ │ │ └── template_pool │ │ │ ├── respawn_obelisk_birch.json │ │ │ ├── respawn_obelisk_deepslate.json │ │ │ ├── respawn_obelisk_desert.json │ │ │ ├── respawn_obelisk_jungle.json │ │ │ ├── respawn_obelisk_ocean.json │ │ │ ├── respawn_obelisk_snow.json │ │ │ └── respawn_obelisk_stonebrick.json │ └── pack.mcmeta ├── serene_seasons_changes │ ├── data │ │ └── sereneseasons │ │ │ └── tags │ │ │ └── blocks │ │ │ └── greenhouse_glass.json │ └── pack.mcmeta ├── shieldsplus_integration │ ├── data │ │ └── iguanatweaksreborn │ │ │ ├── item_definitions │ │ │ ├── diamond_shield.json │ │ │ ├── flint_shield.json │ │ │ ├── golden_shield.json │ │ │ ├── iron_shield.json │ │ │ ├── netherite_shield.json │ │ │ ├── stone_shield.json │ │ │ └── wooden_shield.json │ │ │ ├── recipes │ │ │ └── flint_shield.json │ │ │ └── shield_definitions │ │ │ └── flint_shield.json │ └── pack.mcmeta ├── supplementaries_integration │ ├── data │ │ ├── iguanatweaksreborn │ │ │ ├── block_definitions │ │ │ │ └── crops │ │ │ │ │ ├── flax.json │ │ │ │ │ └── flax_grown.json │ │ │ ├── livestock_data │ │ │ │ └── live_death │ │ │ │ │ ├── snail.json │ │ │ │ │ └── turkey.json │ │ │ └── plant_growth_modifiers │ │ │ │ └── flax.json │ │ └── supplementaries │ │ │ ├── block_definitions │ │ │ └── wild_flax.json │ │ │ ├── loot_tables │ │ │ └── blocks │ │ │ │ └── flax.json │ │ │ └── worldgen │ │ │ └── placed_feature │ │ │ └── wild_flax.json │ └── pack.mcmeta ├── tconstruct_integration │ ├── data │ │ ├── forge │ │ │ └── tags │ │ │ │ └── items │ │ │ │ └── tools │ │ │ │ └── knives.json │ │ ├── iguanatweaksreborn │ │ │ ├── recipes │ │ │ │ ├── smeltery │ │ │ │ │ └── melting │ │ │ │ │ │ └── metal │ │ │ │ │ │ └── iron │ │ │ │ │ │ └── grave.json │ │ │ │ └── tools │ │ │ │ │ └── modifiers │ │ │ │ │ └── upgrade │ │ │ │ │ └── critical.json │ │ │ ├── tags │ │ │ │ └── items │ │ │ │ │ ├── disabled.json │ │ │ │ │ ├── no_equip.json │ │ │ │ │ └── vanilla_armors.json │ │ │ └── tinkering │ │ │ │ └── modifiers │ │ │ │ └── critical.json │ │ ├── tconstruct │ │ │ ├── recipes │ │ │ │ └── tools │ │ │ │ │ └── modifiers │ │ │ │ │ └── ability │ │ │ │ │ ├── luck_level_1.json │ │ │ │ │ ├── luck_level_2.json │ │ │ │ │ └── luck_level_3.json │ │ │ ├── tags │ │ │ │ └── enchantment │ │ │ │ │ └── modifier_like │ │ │ │ │ ├── bane_of_sssss.json │ │ │ │ │ ├── blast_protection.json │ │ │ │ │ ├── feather_falling.json │ │ │ │ │ ├── fiery.json │ │ │ │ │ ├── fire_protection.json │ │ │ │ │ ├── knockback.json │ │ │ │ │ ├── luck.json │ │ │ │ │ ├── projectile_protection.json │ │ │ │ │ ├── protection.json │ │ │ │ │ ├── sharpness.json │ │ │ │ │ ├── smite.json │ │ │ │ │ └── sweeping_edge.json │ │ │ └── tinkering │ │ │ │ ├── enchantments_to_modifiers.json │ │ │ │ ├── materials │ │ │ │ └── stats │ │ │ │ │ └── copper.json │ │ │ │ ├── modifiers │ │ │ │ ├── luck.json │ │ │ │ └── power.json │ │ │ │ ├── tags │ │ │ │ └── modifiers │ │ │ │ │ └── upgrades │ │ │ │ │ └── damage.json │ │ │ │ └── tool_definitions │ │ │ │ ├── battlesign.json │ │ │ │ ├── dagger.json │ │ │ │ ├── earth_staff.json │ │ │ │ ├── ender_staff.json │ │ │ │ ├── ichor_staff.json │ │ │ │ ├── kama.json │ │ │ │ ├── melting_pan.json │ │ │ │ ├── plate_shield.json │ │ │ │ ├── scythe.json │ │ │ │ ├── sky_staff.json │ │ │ │ └── travelers_shield.json │ │ └── tinkers_things │ │ │ └── tinkering │ │ │ └── tool_definitions │ │ │ └── laminar_shield.json │ └── pack.mcmeta ├── toolbelt_integration │ ├── data │ │ └── toolbelt │ │ │ └── recipes │ │ │ └── belt.json │ └── pack.mcmeta ├── villager_trades │ ├── data │ │ └── minecraft │ │ │ └── villager_trades │ │ │ └── librarian.json │ └── pack.mcmeta └── yung_better_fortresses │ ├── data │ └── betterfortresses │ │ └── worldgen │ │ └── structures │ │ └── fortress.json │ └── pack.mcmeta ├── logo.afphoto ├── logo.png ├── logo_extra.png ├── mixins.iguanatweaksreborn.json └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable autocrlf on generated files, they always generate with LF 2 | # Add any extra files or paths here to make git stop saying they 3 | # are changed when only line endings change. 4 | src/generated/**/.cache/cache text eol=lf 5 | src/generated/**/*.json text eol=lf 6 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | // Here your suggestion 11 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question 3 | about: Please, prefer using discord for questions 4 | title: Please, prefer using discord for questions 5 | labels: question 6 | assignees: '' 7 | 8 | --- 9 | 10 | // Please, prefer using discord for questions 11 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip 4 | networkTimeout=10000 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/gradlew -------------------------------------------------------------------------------- /libs/EnhancedAI-2.5.3-mc1.20.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/EnhancedAI-2.5.3-mc1.20.1.jar -------------------------------------------------------------------------------- /libs/MobsPropertiesRandomness-4.10.14-mc1.20.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/MobsPropertiesRandomness-4.10.14-mc1.20.1.jar -------------------------------------------------------------------------------- /libs/Shields+-1.11.6-mc1.20.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/Shields+-1.11.6-mc1.20.1.jar -------------------------------------------------------------------------------- /libs/Stamina-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/Stamina-1.1.1.jar -------------------------------------------------------------------------------- /libs/insanelib-1.21.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/insanelib-1.21.2.jar -------------------------------------------------------------------------------- /libs/nohunger-1.0.1-slim.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/libs/nohunger-1.0.1-slim.jar -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/blockstates/cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/cyan_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/blockstates/solanum_neorossii.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/solanum_neorossii" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/blockstates/soul_sand_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/soul_sand_hellish_coal_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/blockstates/soul_soil_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/soul_soil_hellish_coal_ore" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "iguanatweaksreborn:block/cyan_flower" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/potted_cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "plant": "iguanatweaksreborn:block/cyan_flower" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/potted_solanum_neorossii.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/flower_pot_cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "plant": "iguanatweaksreborn:block/solanum_neorossii" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/solanum_neorossii.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cross", 3 | "render_type": "minecraft:cutout", 4 | "textures": { 5 | "cross": "iguanatweaksreborn:block/solanum_neorossii" 6 | } 7 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/soul_sand_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "iguanatweaksreborn:block/soul_sand_hellish_coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/block/soul_soil_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "iguanatweaksreborn:block/soul_soil_hellish_coal_ore" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/biome_compass.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/biome_compass" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/brown_mushroom_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/brown_mushroom_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/carrot_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/carrot_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/charcoal_layer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:block/charcoal_layer/height_2" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/cloth.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/cloth" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/copper_powered_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:block/copper_powered_rail" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:block/cyan_flower" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/firestarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/firestarter" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/flint_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/flint_axe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/flint_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/flint_hoe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/flint_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/flint_pickaxe" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/flint_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/flint_shovel" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/flint_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/handheld", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/flint_sword" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/golden_powered_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/powered_rail" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/half_heart_texture.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/half_heart_texture" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/hellish_coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/hellish_coal" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/netherized_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/netherized_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/over_easy_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/over_easy_egg" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/pumpkin_pulp.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/pumpkin_pulp" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/red_mushroom_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/red_mushroom_stew" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/respawn_obelisk.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:block/respawn_obelisk_disabled" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/rice_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/rice_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/rooted_onion.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/rooted_onion" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/rooted_potato.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/rooted_potato" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/solanum_neorossii.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:block/solanum_neorossii" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/soul_sand_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:block/soul_sand_hellish_coal_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/soul_soil_hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:block/soul_soil_hellish_coal_ore" 3 | } -------------------------------------------------------------------------------- /src/generated/resources/assets/iguanatweaksreborn/models/item/sweet_berry_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/sweet_berry_seeds" 5 | } 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/aspen_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "atmospheric:aspen_leaves", 5 | "required": false 6 | }, 7 | { 8 | "id": "atmospheric:green_aspen_leaves", 9 | "required": false 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/aspen_logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "atmospheric:aspen_log", 5 | "required": false 6 | }, 7 | { 8 | "id": "atmospheric:watchful_aspen_log", 9 | "required": false 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/attached_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:beehive", 4 | "minecraft:bee_nest" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/azalea_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:azalea_leaves", 4 | "minecraft:flowering_azalea_leaves" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/break_on_fall.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#forge:glass", 4 | "#minecraft:leaves" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/can_scythe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:tall_grass", 4 | "#minecraft:flowers" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/depth_multiplier_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ender_chest", 4 | "#iguanatweaksreborn:obsidians" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/grass_blocks.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass_block", 4 | "minecraft:podzol", 5 | "minecraft:mycelium" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/hardness_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:ender_chest", 4 | "#iguanatweaksreborn:obsidians" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/oak_log_leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:oak_leaves", 4 | "#iguanatweaksreborn:azalea_leaves" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/obsidians.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:obsidian", 4 | "minecraft:crying_obsidian" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/plants_to_dead_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:saplings" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/portal_corners.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:crying_obsidian" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/blocks/tall_grass.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:grass", 4 | "minecraft:tall_grass", 5 | "minecraft:fern", 6 | "minecraft:large_fern", 7 | "minecraft:dead_bush" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/damage_type/doesnt_spawn_grave.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:out_of_world" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/damage_type/doesnt_trigger_piercing.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:piercing_damage_type" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/damage_type/piercing_damage_type.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:piercing_mob_attack", 4 | "iguanatweaksreborn:piercing_player_attack" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/entity_types/explosion_entity_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "caverns_and_chasms:tmt", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/entity_types/passive_regen.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:pets", 4 | "minecraft:villager", 5 | "#minecraft:raiders" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/entity_types/pets.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:fox", 4 | "minecraft:ocelot", 5 | "#iguanatweaksreborn:wolves", 6 | "#iguanatweaksreborn:cats", 7 | "#iguanatweaksreborn:parrots" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/chicken_food_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:melon_seeds", 4 | "minecraft:pumpkin_seeds", 5 | "minecraft:torchflower_seeds" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/enchanting/accepts_fire_aspect.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:enchanting/accepts_damage_enchantments" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/enchanting/accepts_knockback.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:enchanting/accepts_damage_enchantments" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/enchanting/accepts_luck.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:enchanting/accepts_damage_enchantments", 4 | "minecraft:fishing_rod", 5 | "minecraft:bow", 6 | "iguanatweaksreborn:shortbow" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/enchanting/accepts_sweeping_edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:hoes" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/hellish_coal_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:soul_sand_hellish_coal_ore", 4 | "iguanatweaksreborn:soul_soil_hellish_coal_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/hud/biome.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:biome_compass" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/hud/cardinal_direction.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:compass" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/hud/season.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "sereneseasons:calendar", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/hud/time.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:clock" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/no_timber.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | { 4 | "id": "tconstruct:broad_axe", 5 | "required": false 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/snow_slowdown_ignore.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:leather_boots", 4 | { 5 | "id": "tconstruct:travelers_boots", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/spawner_reactivator.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:echo_shard" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/iguanatweaksreborn/tags/items/world_immune.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:netherite_block", 4 | "minecraft:netherite_ingot", 5 | { 6 | "id": "#iguanatweaksreborn:equipment/netherite", 7 | "required": false 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/fall_damage_resetting.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:cobweb" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:wild_wheat", 4 | "iguanatweaksreborn:wild_carrots", 5 | "iguanatweaksreborn:wild_potatoes", 6 | "iguanatweaksreborn:wild_beetroots" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:grave", 4 | "iguanatweaksreborn:beacon", 5 | "iguanatweaksreborn:echo_lantern", 6 | "iguanatweaksreborn:flint_rock" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/mineable/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:rich_farmland", 4 | "iguanatweaksreborn:charcoal_layer", 5 | "iguanatweaksreborn:soul_sand_hellish_coal_ore", 6 | "iguanatweaksreborn:soul_soil_hellish_coal_ore" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:soul_sand_hellish_coal_ore", 4 | "iguanatweaksreborn:soul_soil_hellish_coal_ore" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/rails.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:copper_powered_rail", 4 | "iguanatweaksreborn:golden_powered_rail" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/blocks/replaceable_by_trees.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_rock" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_armor.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:collide_with_wall", 4 | "#iguanatweaksreborn:piercing_damage_type", 5 | "iguanatweaksreborn:old_age" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_cooldown.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:collide_with_wall", 4 | "#iguanatweaksreborn:piercing_damage_type", 5 | "iguanatweaksreborn:old_age" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_effects.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:old_age" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_enchantments.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:old_age" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_invulnerability.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:old_age" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_resistance.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:old_age" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/bypasses_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:collide_with_wall", 4 | "#iguanatweaksreborn:piercing_damage_type", 5 | "iguanatweaksreborn:old_age" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/damage_type/no_impact.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:collide_with_wall", 4 | "#iguanatweaksreborn:piercing_damage_type", 5 | "minecraft:wither", 6 | "iguanatweaksreborn:old_age" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/axes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_axe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/flowers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:cyan_flower" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/hoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_hoe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/pickaxes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_pickaxe" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/shovels.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_shovel" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/tags/items/swords.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:flint_sword" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/java/insane96mcp/iguanatweaksreborn/world/item/DurabilityModifier.java: -------------------------------------------------------------------------------- 1 | package insane96mcp.iguanatweaksreborn.world.item; 2 | 3 | import net.minecraft.world.item.ItemStack; 4 | 5 | public interface DurabilityModifier { 6 | float getDurabilityMultiplier(ItemStack stack); 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/beacon" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/potted_cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/potted_cyan_flower" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/potted_solanum_neorossii.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/potted_solanum_neorossii" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/wild_beetroots.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/wild_beetroots" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/wild_carrots.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/wild_carrots" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/wild_potatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/wild_potatoes" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/blockstates/wild_wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "variants": { 3 | "": { 4 | "model": "iguanatweaksreborn:block/wild_wheat" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/charcoal_layer/height_16.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cube_all", 3 | "textures": { 4 | "all": "iguanatweaksreborn:block/charcoal_layer" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/rail_flat", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/rail_flat", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail_on" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail_on_raised_ne.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_rail_raised_ne", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail_on" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail_on_raised_sw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_rail_raised_sw", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail_on" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail_raised_ne.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_rail_raised_ne", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/copper_powered_rail/copper_powered_rail_raised_sw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_rail_raised_sw", 3 | "render_type": "cutout", 4 | "textures": { 5 | "rail": "iguanatweaksreborn:block/copper_powered_rail" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/echo_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_lantern", 3 | "render_type": "cutout", 4 | "textures": { 5 | "lantern": "iguanatweaksreborn:block/echo_lantern" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/echo_lantern_hanging.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_hanging_lantern", 3 | "render_type": "cutout", 4 | "textures": { 5 | "lantern": "iguanatweaksreborn:block/echo_lantern" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail_on.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail_on", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail_on_raised_ne.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail_on_raised_ne", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail_on_raised_sw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail_on_raised_sw", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail_raised_ne.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail_raised_ne", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/golden_powered_rail/golden_powered_rail_raised_sw.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/powered_rail_raised_sw", 3 | "render_type": "cutout" 4 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/rich_farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_farmland", 3 | "textures": { 4 | "dirt": "minecraft:block/dirt", 5 | "top": "iguanatweaksreborn:block/rich_farmland" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/rich_farmland_moist.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/template_farmland", 3 | "textures": { 4 | "dirt": "minecraft:block/dirt", 5 | "top": "iguanatweaksreborn:block/rich_farmland_moist" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/wild_beetroots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "render_type": "cutout", 4 | "textures": { 5 | "crop": "iguanatweaksreborn:block/wild_beetroots" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/wild_carrots.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "render_type": "cutout", 4 | "textures": { 5 | "crop": "iguanatweaksreborn:block/wild_carrots" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/wild_potatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "render_type": "cutout", 4 | "textures": { 5 | "crop": "iguanatweaksreborn:block/wild_potatoes" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/block/wild_wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/crop", 3 | "render_type": "cutout", 4 | "textures": { 5 | "crop": "iguanatweaksreborn:block/wild_wheat" 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/beacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/beacon" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/echo_lantern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/generated", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/echo_lantern" 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/rich_farmland.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:block/rich_farmland" 3 | } -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/shortbow_pulling_0.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:item/shortbow", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/shortbow_pulling_0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/shortbow_pulling_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:item/shortbow", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/shortbow_pulling_1" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/models/item/shortbow_pulling_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "iguanatweaksreborn:item/shortbow", 3 | "textures": { 4 | "layer0": "iguanatweaksreborn:item/shortbow_pulling_2" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/sounds/absorption_hit1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/sounds/absorption_hit1.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/sounds/absorption_hit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/sounds/absorption_hit2.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/sounds/unfair_one_shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/sounds/unfair_one_shot.ogg -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/attribute/piercing_damage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/attribute/piercing_damage.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/attribute/regenerating_absorption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/attribute/regenerating_absorption.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/attribute/regenerating_absorption_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/attribute/regenerating_absorption_speed.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/charcoal_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/charcoal_layer.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/copper_powered_rail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/copper_powered_rail.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/copper_powered_rail_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/copper_powered_rail_on.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/cyan_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/cyan_flower.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/echo_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/echo_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/grave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/grave.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_bottom.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_side_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_side_disabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_side_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/respawn_obelisk_side_enabled.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/rich_farmland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/rich_farmland.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/rich_farmland_moist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/rich_farmland_moist.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/solanum_neorossii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/solanum_neorossii.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/soul_sand_hellish_coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/soul_sand_hellish_coal_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/soul_soil_hellish_coal_ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/soul_soil_hellish_coal_ore.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/wild_beetroots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/wild_beetroots.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/wild_carrots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/wild_carrots.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/wild_potatoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/wild_potatoes.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/block/wild_wheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/block/wild_wheat.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/entity/shield/flint_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/entity/shield/flint_shield.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/entity/shield/flint_shield_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/entity/shield/flint_shield_nopattern.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/gui/absorption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/gui/absorption.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/gui/container/beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/gui/container/beacon.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/gui/icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/biome_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/biome_compass.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/brown_mushroom_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/brown_mushroom_stew.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/carrot_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/carrot_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/cloth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/cloth.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/echo_lantern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/echo_lantern.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/firestarter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/firestarter.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/flint_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/flint_axe.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/flint_hoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/flint_hoe.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/flint_pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/flint_pickaxe.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/flint_shovel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/flint_shovel.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/flint_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/flint_sword.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/half_heart_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/half_heart_texture.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/hellish_coal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/hellish_coal.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/milk_bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/milk_bottle.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/netherized_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/netherized_stew.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/over_easy_egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/over_easy_egg.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/pumpkin_pulp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/pumpkin_pulp.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/red_mushroom_stew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/red_mushroom_stew.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/rice_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/rice_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/rooted_onion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/rooted_onion.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/rooted_potato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/rooted_potato.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_0.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_1.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/shortbow_pulling_2.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/item/sweet_berry_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/item/sweet_berry_seeds.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/block_reach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/block_reach.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/energy_boost.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/energy_boost.pdn -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/energy_boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/energy_boost.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/entity_reach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/entity_reach.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/injured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/injured.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/regenerating_absorption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/regenerating_absorption.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/tired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/tired.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/vigour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/vigour.png -------------------------------------------------------------------------------- /src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/well_fed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/assets/iguanatweaksreborn/textures/mob_effect/well_fed.png -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "minecraft:bow", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:string" 7 | }, 8 | "amount": 3, 9 | "cost_multiplier": 3 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/brush.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "minecraft:brush", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:feather" 7 | }, 8 | "amount": 1 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/chainmail/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:chainmail_boots" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:chain" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/chainmail/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:chainmail_chestplate" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:chain" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/chainmail/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:chainmail_helmet" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:chain" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/chainmail/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:chainmail_leggings" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:chain" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_axe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_boots" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_chestplate" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 6 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksexpanded:diamond_hammer" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_helmet" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_hoe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_leggings" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 5.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_pickaxe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "shieldsplus:diamond_shield" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_shovel" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 0.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/diamond/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:diamond_sword" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:diamond" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/firestarter.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "iguanatweaksreborn:firestarter", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:iron_nugget" 7 | }, 8 | "amount": 6.75 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/fishing_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "minecraft:fishing_rod", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:string" 7 | }, 8 | "amount": 2 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_axe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:stone_hammer" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_hoe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_pickaxe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_shield" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_shovel" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 0.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/flint/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksreborn:flint_sword" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:flint" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/hang_glider.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "hangglider:hang_glider", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:phantom_membrane" 7 | }, 8 | "amount": 6 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/shortbow.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": "iguanatweaksreborn:shortbow", 3 | "repair": [ 4 | { 5 | "repair_material": { 6 | "id": "minecraft:string" 7 | }, 8 | "amount": 2, 9 | "cost_multiplier": 2 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/stone/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:stone_axe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:stone_tool_materials" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/stone/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:stone_hoe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:stone_tool_materials" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/stone/shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "shieldsplus:stone_shield" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:stone_tool_materials" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/stone/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:stone_shovel" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:stone_tool_materials" 9 | }, 10 | "amount": 0.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/stone/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:stone_sword" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:stone_tool_materials" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/turtle/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:turtle_helmet" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "id": "minecraft:scute" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:wooden_axe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "iguanatweaksexpanded:wooden_hammer" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 3.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:wooden_hoe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:wooden_pickaxe" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 2.25 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "shieldsplus:wooden_shield" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 3 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:wooden_shovel" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 0.75 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/anvil_repairs/wooden/sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "item_to_repair": { 3 | "id": "minecraft:wooden_sword" 4 | }, 5 | "repair": [ 6 | { 7 | "repair_material": { 8 | "tag": "minecraft:planks" 9 | }, 10 | "amount": 1.5 11 | } 12 | ] 13 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/damage_type/collide_with_wall.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "collideWithWall", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/damage_type/old_age.json: -------------------------------------------------------------------------------- 1 | { 2 | "exhaustion": 0.0, 3 | "message_id": "oldAge", 4 | "scaling": "when_caused_by_living_non_player" 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/damage_type/piercing_mob_attack.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "mob", 3 | "exhaustion": 0.1, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/damage_type/piercing_player_attack.json: -------------------------------------------------------------------------------- 1 | { 2 | "message_id": "player", 3 | "exhaustion": 0.1, 4 | "scaling": "when_caused_by_living_non_player" 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/forge/biome_modifier/cyan_flower.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_snowy", 4 | "features": "iguanatweaksreborn:cyan_flower", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/forge/biome_modifier/silverfish_everywhere.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_overworld", 4 | "features": "iguanatweaksreborn:silverfish_everywhere", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/functions/setup_worldborder.mcfunction: -------------------------------------------------------------------------------- 1 | worldborder set 3 2 | execute align xz run worldborder center ~.5 ~.5 3 | worldborder warning distance 0 -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/entity_types/blacklisted_spawners.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/entity_types/chickens.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:chicken", 5 | { 6 | "required": false, 7 | "id": "environmental:duck" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/entity_types/explosion_knockback_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:ender_dragon", 5 | "minecraft:wither" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/entity_types/killer_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#forge:bosses" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/entity_types/sheep.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:sheep", 5 | { 6 | "id": "environmental:yak", 7 | "required": false 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/armor/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:diamond_helmet", 5 | "minecraft:diamond_chestplate", 6 | "minecraft:diamond_leggings", 7 | "minecraft:diamond_boots" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/armor/golden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:golden_helmet", 5 | "minecraft:golden_chestplate", 6 | "minecraft:golden_leggings", 7 | "minecraft:golden_boots" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/armor/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:iron_helmet", 5 | "minecraft:iron_chestplate", 6 | "minecraft:iron_leggings", 7 | "minecraft:iron_boots" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/armor/leather.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:leather_helmet", 5 | "minecraft:leather_chestplate", 6 | "minecraft:leather_leggings", 7 | "minecraft:leather_boots" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/diamond", 5 | "minecraft:diamond_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/flint.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/flint", 5 | "iguanatweaksreborn:flint_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/golden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/golden", 5 | "minecraft:golden_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/iron", 5 | "minecraft:iron_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/netherite.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/netherite", 5 | "minecraft:netherite_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/stone", 5 | "minecraft:stone_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/tools/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:diamond_pickaxe", 5 | "minecraft:diamond_axe", 6 | "minecraft:diamond_shovel", 7 | "minecraft:diamond_hoe" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/tools/golden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:golden_pickaxe", 5 | "minecraft:golden_axe", 6 | "minecraft:golden_shovel", 7 | "minecraft:golden_hoe" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/tools/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:iron_pickaxe", 5 | "minecraft:iron_axe", 6 | "minecraft:iron_shovel", 7 | "minecraft:iron_hoe" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/tools/stone.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:stone_pickaxe", 5 | "minecraft:stone_axe", 6 | "minecraft:stone_shovel", 7 | "minecraft:stone_hoe" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/tools/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:wooden_pickaxe", 5 | "minecraft:wooden_axe", 6 | "minecraft:wooden_shovel", 7 | "minecraft:wooden_hoe" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/hand/wooden.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/hand/tools/wooden", 5 | "minecraft:wooden_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/equipment/netherite.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#iguanatweaksreborn:equipment/armor/netherite", 5 | "#iguanatweaksreborn:equipment/hand/netherite" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/items/minecarts.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:minecart", 5 | "minecraft:chest_minecart", 6 | "minecraft:hopper_minecart", 7 | "minecraft:furnace_minecart", 8 | "minecraft:tnt_minecart" 9 | ] 10 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/worldgen/biome/disabled.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/worldgen/structure/desert_pyramid.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:desert_pyramid", 4 | { 5 | "id": "#betterdeserttemples:better_desert_temples", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/worldgen/structure/igloo.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:igloo" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/worldgen/structure/jungle_pyramid.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:jungle_pyramid", 4 | { 5 | "id": "#betterjungletemples:better_jungle_temples", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/data/iguanatweaksreborn/tags/worldgen/structure/trail_ruins.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:trail_ruins" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/data/minecraft/tags/damage_types/bypasses_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:thorns" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/actual_redstone_components/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Makes some redstone components (like levers) require redstone in the recipe", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/advancements/data/minecraft/advancements/husbandry/obtain_netherite_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/advancements/data/minecraft/advancements/story/deflect_arrow.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/advancements/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Overhaul advancements", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/assets/iguanatweaksreborn/lang/en_us.json: -------------------------------------------------------------------------------- 1 | { 2 | "effect.iguanatweaksreborn.regenerating_absorption": "Absorption", 3 | "attribute.name.regenerating_absorption": "Absorption" 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/assets/iguanatweaksreborn/lang/it_it.json: -------------------------------------------------------------------------------- 1 | { 2 | "effect.iguanatweaksreborn.regenerating_absorption": "Assorbimento", 3 | "attribute.name.regenerating_absorption": "Assorbimento" 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/block/spawner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/block/spawner.png -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/entity/projectiles/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/entity/projectiles/arrow.png -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/item/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/integrated_packs/assets_override/assets/minecraft/textures/item/arrow.png -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/assets_override/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes some vanilla textures", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/attack_invincibility/data/minecraft/tags/damage_type/bypasses_cooldown.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:magic", 4 | "minecraft:arrow", 5 | "minecraft:fall" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/attack_invincibility/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Arrows and magic damages no longer trigger invincibility frames", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/autumnity_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Integration with Autumnity", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/berries/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Makes Sweet Berries bushes drop seeds", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/berries_berry_good/data/autumnity/recipes/foul_berry_pips.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/berries_berry_good/data/berry_good/modifiers/loot_tables/cave_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "modifiers": [ 3 | ], 4 | "priority": "normal", 5 | "selector": "minecraft:blocks/cave_vines" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/berries_berry_good/data/berry_good/recipes/sweet_berry_pips.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/berries_berry_good/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Makes Sweet Berries bushes drop pips", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/better_beacon/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes the vanilla recipe of the Beacon to give the IguanaTweaks Reborn beacon instead", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/better_loot/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Better Structure Loot", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/better_rails/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": [ 3 | "iguanatweaksreborn:minecarts/replace_vanilla_powered_rails" 4 | ], 5 | "replace": false 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/better_rails/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Enables recipes for Survival Reimagined new rails and balances vanilla rails recipes", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/bone_meal_fail_chance/cave_vines.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:cave_vines", 3 | "bone_meal_fail_chance": 0.75 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/bone_meal_fail_chance/saplings.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:saplings", 3 | "bone_meal_fail_chance": 0.1 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/bone_meal_fail_chance/sweet_berry_bush.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:sweet_berry_bush", 3 | "bone_meal_fail_chance": 0.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/crops/beetroots.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:beetroots", 3 | "states": [ 4 | "age=2", 5 | "age=1" 6 | ], 7 | "state_hardness": 0.3 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/ancient_debris.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:ancient_debris", 3 | "state_hardness": 6 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/budding_amethyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:budding_amethyst", 3 | "state_hardness": 5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_coal_ore", 3 | "state_hardness": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_copper_ore", 3 | "state_hardness": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_diamond_ore", 3 | "state_hardness": 5.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_emerald_ore", 3 | "state_hardness": 5.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_gold_ore", 3 | "state_hardness": 5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_iron_ore", 3 | "state_hardness": 4.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_lapis_ore", 3 | "state_hardness": 4.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/deepslate/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:deepslate_redstone_ore", 3 | "state_hardness": 4.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/ender_chest.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:ender_chest", 3 | "state_hardness": 12 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/leaves.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:leaves", 3 | "state_hardness": 0.4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/netherrack.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:netherrack", 3 | "state_hardness": 0.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/nylium.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:nylium", 3 | "state_hardness": 0.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/obsidians.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "iguanatweaksreborn:obsidians", 3 | "state_hardness": 25 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/powder_snow.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:powder_snow", 3 | "state_hardness": 2.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/spawner.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:spawner", 3 | "state_hardness": 15, 4 | "state_experience_dropped": { 5 | "min": 100, 6 | "max": 100 7 | } 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/coal.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:coal_ore", 3 | "state_hardness": 2.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:copper_ore", 3 | "state_hardness": 2.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:diamond_ore", 3 | "state_hardness": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/emerald.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:emerald_ore", 3 | "state_hardness": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:gold_ore", 3 | "state_hardness": 3.5 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/iron.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:iron_ore", 3 | "state_hardness": 3 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:lapis_ore", 3 | "state_hardness": 3 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/stone/redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:redstone_ore", 3 | "state_hardness": 3 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/custom_hardness/trapdoors.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:wooden_trapdoors", 3 | "state_hardness": 2 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/experience/amethyst_cluster.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:amethyst_cluster", 3 | "state_experience_dropped": { 4 | "min": 1, 5 | "max": 2 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/experience/copper_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:copper_ores", 3 | "state_experience_dropped": { 4 | "min": 0, 5 | "max": 2 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/experience/gold_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:gold_ores", 3 | "state_experience_dropped": { 4 | "min": 2, 5 | "max": 3 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/experience/iron_ores.json: -------------------------------------------------------------------------------- 1 | { 2 | "block_tag": "minecraft:iron_ores", 3 | "state_experience_dropped": { 4 | "min": 1, 5 | "max": 2 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/data/iguanatweaksreborn/block_definitions/experience/sculk_catalyst.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "minecraft:sculk_catalyst", 3 | "state_experience_dropped": { 4 | "min": 50, 5 | "max": 50 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/block_data/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes to various blocks properties, from hardness to speed", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/necromium/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "caverns_and_chasms:sanguine_boots", 3 | "durability": 144, 4 | "armor": 1, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/necromium/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "caverns_and_chasms:sanguine_chestplate", 3 | "durability": 192, 4 | "armor": 2.5, 5 | "modifiers": [ 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/necromium/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "caverns_and_chasms:sanguine_helmet", 3 | "durability": 156, 4 | "armor": 1.5, 5 | "modifiers": [ 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/necromium/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "caverns_and_chasms:sanguine_leggings", 3 | "durability": 180, 4 | "armor": 2, 5 | "modifiers": [ 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/necromium/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#caverns_and_chasms:equipment/armor/sanguine", 3 | "enchantability": 3, 4 | "armor_toughness": 0, 5 | "movement_speed_penalty": 0.10 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/item_definitions/armor/silver/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#caverns_and_chasms:equipment/armor/silver", 3 | "enchantability": 5, 4 | "armor_toughness": 0 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/tags/items/equipment/hand/necromium.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#caverns_and_chasms:equipment/hand/tools/necromium", 5 | "caverns_and_chasms:necromium_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/tags/items/equipment/hand/silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "#caverns_and_chasms:equipment/hand/tools/silver", 5 | "caverns_and_chasms:silver_sword" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/tags/items/experience_boost_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": true, 3 | "values": [] 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/tags/items/magic_damage_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": true, 3 | "values": [] 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/data/caverns_and_chasms/tags/items/slowness_inflicting_items.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": true, 3 | "values": [] 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/caverns_and_chasms_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Integrates Caverns and Chasms with ore gen and item stats", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/cheaper_chains/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Survival Reimagined Cheaper Chains", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/cloth/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes beds to require Cloth and Wool to be crafted and makes zombies drop cloth", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/data/clayworks/recipes/charcoal_from_baking.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": [ 3 | "iguanatweaksreborn:coal_fire/replace_flint_and_steel" 4 | ], 5 | "replace": false 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/data/iguanatweaksreborn/forge/biome_modifier/hellish_coal_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_nether", 4 | "features": "iguanatweaksreborn:hellish_coal", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/data/minecraft/recipes/charcoal.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/data/minecraft/tags/blocks/needs_iron_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:coal_ore", 5 | "minecraft:deepslate_coal_ore" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/coal_fire/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Removes the charcoal recipe and makes coal require an Iron pickaxe to extract", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/chainmail/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:chainmail_boots", 3 | "durability": 30, 4 | "armor": 2.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/chainmail/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:chainmail_chestplate", 3 | "durability": 40, 4 | "armor": 5.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/chainmail/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:chainmail_helmet", 3 | "durability": 33, 4 | "armor": 3, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/chainmail/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:chainmail_leggings", 3 | "durability": 38, 4 | "armor": 4.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/chainmail/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:equipment/armor/chainmail", 3 | "enchantability": 10, 4 | "armor_toughness": 0, 5 | "knockback_resistance": 0.04 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/diamond/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:diamond_boots", 3 | "durability": 144, 4 | "armor": 2.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/diamond/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:diamond_chestplate", 3 | "durability": 192, 4 | "armor": 5.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/diamond/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:diamond_helmet", 3 | "durability": 156, 4 | "armor": 3, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/diamond/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:diamond_leggings", 3 | "durability": 180, 4 | "armor": 5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/diamond/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:equipment/armor/diamond", 3 | "enchantability": 5, 4 | "armor_toughness": 0, 5 | "movement_speed_penalty": 0.08 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/golden/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:golden_boots", 3 | "durability": 48, 4 | "armor": 1, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/golden/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:golden_chestplate", 3 | "durability": 64, 4 | "armor": 1.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/golden/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:golden_helmet", 3 | "durability": 52, 4 | "armor": 1, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/golden/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:golden_leggings", 3 | "durability": 60, 4 | "armor": 1.5, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/golden/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:equipment/armor/golden", 3 | "enchantability": 13, 4 | "armor_toughness": 0 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/iron/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:iron_boots", 3 | "durability": 84, 4 | "armor": 1.5, 5 | "regenerating_absorption": 0.5, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/iron/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:iron_chestplate", 3 | "durability": 112, 4 | "armor": 3.5, 5 | "regenerating_absorption": 1.5, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/iron/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:iron_helmet", 3 | "durability": 91, 4 | "armor": 2, 5 | "regenerating_absorption": 0.75, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/iron/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:iron_leggings", 3 | "durability": 105, 4 | "armor": 3, 5 | "regenerating_absorption": 1.25, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/leather/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:leather_boots", 3 | "durability": 48, 4 | "armor": 1, 5 | "regenerating_absorption": 1, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/leather/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:leather_chestplate", 3 | "durability": 64, 4 | "armor": 1.5, 5 | "regenerating_absorption": 2, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/leather/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:leather_helmet", 3 | "durability": 52, 4 | "armor": 1, 5 | "regenerating_absorption": 1.25, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/leather/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:leather_leggings", 3 | "durability": 60, 4 | "armor": 1.5, 5 | "regenerating_absorption": 1.75, 6 | "modifiers": [ 7 | 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/leather/set.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:equipment/armor/leather", 3 | "enchantability": 11 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/netherite/boots.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:netherite_boots", 3 | "durability": 132, 4 | "armor": 3, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/netherite/chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:netherite_chestplate", 3 | "durability": 176, 4 | "armor": 7, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/netherite/helmet.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:netherite_helmet", 3 | "durability": 143, 4 | "armor": 4, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/armor/netherite/leggings.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:netherite_leggings", 3 | "durability": 165, 4 | "armor": 6, 5 | "modifiers": [ 6 | 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/hoes/medium_radius_scythe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:medium_radius_scythe", 3 | "scythe_radius": 2 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/hoes/small_radius_scythe.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:small_radius_scythe", 3 | "scythe_radius": 1 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/autumnity/snail_shell_chestplate.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "autumnity:snail_shell_chestplate", 3 | "durability": 207, 4 | "armor": 3 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/bow.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:bow", 3 | "durability": 192 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/carrot_on_a_stick.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:carrot_on_a_stick", 3 | "durability": 49 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/elytra.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:elytra", 3 | "durability": 144 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/fishing_rod.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:fishing_rod", 3 | "durability": 33 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/flint_and_steel.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:flint_and_steel", 3 | "durability": 61 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/hangglider/hang_glider.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "hangglider:hang_glider", 3 | "durability": 409 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/hangglider/reinforced_hang_glider.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "hangglider:reinforced_hang_glider", 3 | "durability": 770 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/data/iguanatweaksreborn/item_definitions/tools/shears.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:shears", 3 | "durability": 87 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/combat_rework/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Rework armor, weapons and tools", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/copper_furnace/data/iguanatweaksreborn/recipes/copper_ingot_from_campfire.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "minecraft:campfire_cooking", 3 | "ingredient": { 4 | "item": "minecraft:raw_copper" 5 | }, 6 | "result": "minecraft:copper_ingot", 7 | "cookingtime": 4800 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/copper_furnace/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Makes Furnace require Copper. Copper can be slowly smelted on campfires", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/create_integration/data/create/forge/biome_modifier/extra_zinc_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_peak", 4 | "features": "create:extra_zinc_ore", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/create_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Integrates Create with ore gen", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/crops/data/iguanatweaksreborn/forge/biome_modifier/wild_beetroots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_forest", 4 | "features": "iguanatweaksreborn:wild_beetroots", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/crops/data/iguanatweaksreborn/forge/biome_modifier/wild_carrots.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_savanna", 4 | "features": "iguanatweaksreborn:wild_carrots", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/crops/data/iguanatweaksreborn/forge/biome_modifier/wild_potatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_desert", 4 | "features": "iguanatweaksreborn:wild_potatoes", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/crops/data/iguanatweaksreborn/forge/biome_modifier/wild_wheat.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_plains", 4 | "features": "iguanatweaksreborn:wild_wheat", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/crops/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Prevents crops from dropping more than one seed. Also makes carrots and potatoes drop seeds.", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_long_noses/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Disable Villages and Pillager towers", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/iguanatweaksexpanded/recipes/stone_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/minecraft/recipes/stone_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/minecraft/recipes/stone_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/minecraft/recipes/stone_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/minecraft/recipes/stone_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/minecraft/recipes/stone_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/quark/recipes/tweaks/crafting/utility/tools/stone_axe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/quark/recipes/tweaks/crafting/utility/tools/stone_hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/quark/recipes/tweaks/crafting/utility/tools/stone_pickaxe.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/quark/recipes/tweaks/crafting/utility/tools/stone_shovel.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/data/quark/recipes/tweaks/crafting/utility/tools/stone_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/disable_stone_tools/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes the Tool Belt recipe to give 4 slots instead of 2", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/environmental_integration/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | "iguanatweaksreborn:no_seeds_from_giant_tall_grass" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/environmental_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Integrates ISO's changes with some Environmental stuff", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmable_iron/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Survival Reimagined Farmable Iron", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/craft_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/get_ham.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/harvest_straw.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/obtain_netherite_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/place_skillet.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/advancements/main/use_skillet.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/budding_tomatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:budding_tomatoes", 3 | "state_hardness": 0.3 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:rice", 3 | "states": [ 4 | "age=2", 5 | "age=1" 6 | ], 7 | "state_hardness": 0.3 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/rice_panicles.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:rice_panicles", 3 | "states": [ 4 | "age=2", 5 | "age=1" 6 | ], 7 | "state_hardness": 0.3 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/tomatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:tomatoes", 3 | "states": [ 4 | "age=2", 5 | "age=1" 6 | ], 7 | "state_hardness": 1.5 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/wild_cabbages.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:wild_cabbages", 3 | "state_hardness": 0.8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/wild_onions.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:wild_onions", 3 | "state_hardness": 0.8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/wild_rice.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:wild_rice", 3 | "state_hardness": 0.8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/block_definitions/wild_tomatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:wild_tomatoes", 3 | "state_hardness": 0.8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/item_definitions/cakes.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:cakes_and_pies", 3 | "max_stack": 1 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/loot_tables/chests/fd_bastion_hoglin_stable.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/loot_tables/chests/fd_bastion_treasure.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/loot_tables/chests/fd_end_city_treasure.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/loot_tables/chests/fd_ruined_portal.json: -------------------------------------------------------------------------------- 1 | { 2 | "pools": [ 3 | 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/diamond_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/flint_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/golden_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/honey_glazed_ham_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/iron_knife.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/netherite_knife_smithing.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/pumpkin_seeds_from_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/skillet.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/smoked_ham.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/recipes/tomato_seeds.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/tags/blocks/rice_crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "farmersdelight:rice", 4 | "farmersdelight:rice_panicles" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/tags/blocks/tomato_crops.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "farmersdelight:budding_tomatoes", 4 | "farmersdelight:tomatoes" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/worldgen/placed_feature/patch_wild_beetroots.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "farmersdelight:patch_wild_beetroots", 3 | "placement": [ 4 | { 5 | "type": "minecraft:count", 6 | "count": 0 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/worldgen/placed_feature/patch_wild_carrots.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "farmersdelight:patch_wild_carrots", 3 | "placement": [ 4 | { 5 | "type": "minecraft:count", 6 | "count": 0 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/farmersdelight/worldgen/placed_feature/patch_wild_potatoes.json: -------------------------------------------------------------------------------- 1 | { 2 | "feature": "farmersdelight:patch_wild_potatoes", 3 | "placement": [ 4 | { 5 | "type": "minecraft:count", 6 | "count": 0 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/iguanatweaksreborn/plant_growth_modifiers/brown_mushroom_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:brown_mushroom_colony", 3 | "growth_multiplier": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/iguanatweaksreborn/plant_growth_modifiers/red_mushroom_colony.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "farmersdelight:red_mushroom_colony", 3 | "growth_multiplier": 4 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/iguanatweaksreborn/tags/items/cakes_and_pies.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "farmersdelight:sweet_berry_cheesecake", 4 | "farmersdelight:chocolate_pie", 5 | "farmersdelight:apple_pie" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/minecraft/recipes/beetroot_soup.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/minecraft/recipes/mushroom_stew.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/minecraft/recipes/rabbit_stew_from_brown_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/data/minecraft/recipes/rabbit_stew_from_red_mushroom.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/farmers_delight_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various changes to Farmer's delight stuff", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/fishing_loot_changes/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes fishing loot", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/flint_expansion/data/iguanatweaksreborn/forge/biome_modifier/flint_rock.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_overworld", 4 | "features": "iguanatweaksreborn:flint_rock", 5 | "step": "vegetal_decoration" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/flint_expansion/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Adds flint tools recipes and generates ground flint", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/hardcore_loot/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Reduces chest loot when close to spawn", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/hardcore_torches/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Survival Reimagined Hardcore Torches", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/increased_end_cities/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Increase End Cities", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/honey_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:honey_bottle", 3 | "max_stack": 16 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/horse_armors.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:horse_armors", 3 | "max_stack": 8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/minecarts.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "#iguanatweaksreborn:minecarts", 3 | "max_stack": 8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/potion.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:potion", 3 | "max_stack": 16 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/saddle.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:saddle", 3 | "max_stack": 8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/data/iguanatweaksreborn/item_definitions/stacks/snowball.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "minecraft:snowball", 3 | "max_stack": 64 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/item_stacks/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various items changes", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | "iguanatweaksreborn:livestock_drops_adult" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/livestock_data/live_death/high_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "#iguanatweaksreborn:high_lifespan", 3 | "living_days": 72, 4 | "living_days_fluctuation": 9 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/livestock_data/live_death/low_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "#iguanatweaksreborn:low_lifespan", 3 | "living_days": 24, 4 | "living_days_fluctuation": 3 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/livestock_data/live_death/medium_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "#iguanatweaksreborn:medium_lifespan", 3 | "living_days": 48, 4 | "living_days_fluctuation": 6 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/livestock_data/live_death/really_high_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "#iguanatweaksreborn:really_high_lifespan", 3 | "living_days": 144, 4 | "living_days_fluctuation": 18 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/livestock_data/live_death/really_low_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "#iguanatweaksreborn:really_low_lifespan", 3 | "living_days": 12, 4 | "living_days_fluctuation": 3 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/tags/entity_types/medium_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:pig", 4 | { 5 | "id": "environmental:deer", 6 | "required": false 7 | } 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/data/iguanatweaksreborn/tags/entity_types/really_low_lifespan.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:bee" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/livestock_changes/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various changes to livestock, from loot to time to grow", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/misc_tweaks/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": [ 3 | "iguanatweaksreborn:replace_saddles" 4 | ], 5 | "replace": false 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/misc_tweaks/data/minecraft/tags/blocks/mineable/hoe.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:cactus" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/misc_tweaks/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Survival Reimagined Vanilla Tweaks Data Pack", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mob_loot_changes/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "entries": [ 4 | "iguanatweaksreborn:reduced_no_player_kill_drop" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mob_loot_changes/data/iguanatweaksreborn/tags/items/reduced_drop_no_player_kill_blacklist.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:music_discs" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mob_loot_changes/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various mob loot changes.", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/enhancedai/tags/entity_types/can_be_miner.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:zombified_piglin" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/hostiles.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:hostiles_no_zombies", 4 | "#iguanatweaksreborn:zombies" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/mobs_no_bosses.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:passive", 4 | "#iguanatweaksreborn:hostiles" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/mobs_no_bosses_no_zombies.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:passive", 4 | "#iguanatweaksreborn:hostiles_no_zombies" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/skeletons.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:skeleton", 4 | "minecraft:stray", 5 | "minecraft:wither_skeleton" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/small_animals.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:chicken", 4 | "minecraft:cat", 5 | "minecraft:fox", 6 | "minecraft:rabbit" 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/speed_nerf.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:witch", 4 | "minecraft:enderman", 5 | "minecraft:wolf", 6 | "minecraft:trader_llama", 7 | "minecraft:llama" 8 | ] 9 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/data/iguanatweaksreborn/tags/entity_types/zombies.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:overworld_zombies", 4 | "minecraft:zombified_piglin" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/mobs_buffs/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Mobs Buffs with Mobs Properties Randomness", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/nether_tweaks/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Disables Nether Roof and the 8 block ratio from the overworld", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/atmospheric/recipes/roasted_yucca_fruit.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/autumnity/recipes/cooked_turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/autumnity/recipes/cooked_turkey_piece.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/autumnity/recipes/syrup_bottle.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/berry_good/recipes/sweet_berry_meatballs.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/environmental/recipes/cooked_duck.json: -------------------------------------------------------------------------------- 1 | 2 | { 3 | "conditions": [ 4 | { 5 | "type": "forge:false" 6 | } 7 | ] 8 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/environmental/recipes/cooked_venison.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/beef_patty.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/bread_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/cooked_bacon.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/cooked_chicken_cuts.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/cooked_cod_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/cooked_mutton_chops.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/cooked_salmon_slice.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/farmersdelight/recipes/fried_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/iguanatweaksexpanded/recipes/cheese_slice_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/iguanatweaksexpanded/recipes/over_easy_egg_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/incubation/recipes/fried_egg.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/baked_potato.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_beef.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_chicken.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_cod.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_mutton.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_porkchop.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_rabbit.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/cooked_salmon.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/minecraft/recipes/dried_kelp_from_smelting.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/quark/recipes/mobs/smelting/cooked_crab_leg.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/upgrade_aquatic/recipes/boiled_pickerelweed.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/upgrade_aquatic/recipes/cooked_lionfish.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/upgrade_aquatic/recipes/cooked_perch.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/data/upgrade_aquatic/recipes/cooked_pike.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_food_in_furnace/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Removes food cooking in a furnace and change smoker recipe.", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_saplings_in_winter/data/forge/loot_modifiers/global_loot_modifiers.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": [ 3 | "iguanatweaksreborn:seasons/no_saplings_in_winter" 4 | ], 5 | "replace": false 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/no_saplings_in_winter/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "No Saplings drop in Winter", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ocean_guardians/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Let guardians spawn naturally in deep oceans", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_coal_lower.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_desert", 4 | "features": "iguanatweaksreborn:ore_coal_lower", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_coal_upper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#forge:is_desert", 4 | "features": "iguanatweaksreborn:ore_coal_upper", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_savanna", 4 | "features": "iguanatweaksreborn:ore_copper", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_diamond.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_jungle", 4 | "features": "iguanatweaksreborn:ore_diamond", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_diamond_buried.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_jungle", 4 | "features": "iguanatweaksreborn:ore_diamond_buried", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_diamond_large.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_jungle", 4 | "features": "iguanatweaksreborn:ore_diamond_large", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_diamond_medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_jungle", 4 | "features": "iguanatweaksreborn:ore_diamond_medium", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_lapis.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#iguanatweaksreborn:is_non_snowy_plains", 4 | "features": "iguanatweaksreborn:ore_lapis", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_redstone.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_ocean", 4 | "features": "iguanatweaksreborn:ore_redstone", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/forge/biome_modifier/ore_redstone_lower.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_ocean", 4 | "features": "iguanatweaksreborn:ore_redstone_lower", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/tags/worldgen/biome/has_more_iron_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#minecraft:is_taiga", 4 | "minecraft:lush_caves" 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/iguanatweaksreborn/tags/worldgen/biome/is_non_snowy_plains.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "minecraft:plains", 4 | "minecraft:meadow", 5 | "minecraft:sunflower_plains" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/data/minecraft/forge/biome_modifier/ore_diamond_medium.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "forge:add_features", 3 | "biomes": "#minecraft:is_overworld", 4 | "features": "minecraft:ore_diamond_medium", 5 | "step": "underground_ores" 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_generation/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Overhauls ore generation, making it biome dependant", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/silver_ingot_from_smelting_deepslate_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/silver_ingot_from_smelting_raw_silver.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/silver_ingot_from_smelting_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/silver_ingot_from_smelting_soul_silver_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/spinel_from_smelting_deepslate_spinel_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/caverns_and_chasms/recipes/spinel_from_smelting_spinel_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/diamond_from_smelting_deepslate_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/diamond_from_smelting_diamond_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/emerald_from_smelting_deepslate_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/emerald_from_smelting_emerald_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/gold_ingot_from_smelting_deepslate_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/gold_ingot_from_smelting_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/gold_ingot_from_smelting_nether_gold_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/gold_ingot_from_smelting_raw_gold.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/lapis_lazuli_from_smelting_deepslate_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/lapis_lazuli_from_smelting_lapis_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/netherite_scrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/quartz.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/redstone_from_smelting_deepslate_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/data/minecraft/recipes/redstone_from_smelting_redstone_ore.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/ore_smelting/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Makes Raw ores take different times in a furnace to smelt", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/plant_growth_modifiers/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Slower plant growth", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/quark_integration/data/quark/recipes/automation/crafting/furnaces/mixed_furnace.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/quark_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Integration with Quark", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/respawn_obelisk/data/iguanatweaksreborn/tags/worldgen/biome/is_birch_forest.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": false, 3 | "values": [ 4 | "minecraft:birch_forest", 5 | "minecraft:old_growth_birch_forest" 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/respawn_obelisk/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Generates Respawn obelisks in the world", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/serene_seasons_changes/data/sereneseasons/tags/blocks/greenhouse_glass.json: -------------------------------------------------------------------------------- 1 | { 2 | "replace": true, 3 | "values": [ 4 | 5 | ] 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/serene_seasons_changes/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Removes Greenhouse glass", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/diamond_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:diamond_shield", 3 | "durability": 520 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/flint_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "iguanatweaksreborn:flint_shield", 3 | "durability": 63 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/golden_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:golden_shield", 3 | "durability": 49 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/iron_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:iron_shield", 3 | "durability": 142 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/netherite_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:netherite_shield", 3 | "durability": 580 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/stone_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:stone_shield", 3 | "durability": 63 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/item_definitions/wooden_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "item": "shieldsplus:wooden_shield", 3 | "durability": 97 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/data/iguanatweaksreborn/shield_definitions/flint_shield.json: -------------------------------------------------------------------------------- 1 | { 2 | "blocked_damage": 3.5, 3 | "blocking_ticks": 90, 4 | "cooldown": 30 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/shieldsplus_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Rebalances Shields+'s shields", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/supplementaries_integration/data/iguanatweaksreborn/livestock_data/live_death/snail.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "supplementaries:snail", 3 | "living_days": 72, 4 | "living_days_fluctuation": 9 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/supplementaries_integration/data/iguanatweaksreborn/livestock_data/live_death/turkey.json: -------------------------------------------------------------------------------- 1 | { 2 | "entity": "supplementaries:turkey", 3 | "living_days": 24, 4 | "living_days_fluctuation": 3 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/supplementaries_integration/data/supplementaries/block_definitions/wild_flax.json: -------------------------------------------------------------------------------- 1 | { 2 | "block": "supplementaries:wild_flax", 3 | "state_hardness": 0.8 4 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/supplementaries_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various changes to Supplementaries stuff", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/forge/tags/items/tools/knives.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "tconstruct:dagger" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/iguanatweaksreborn/tags/items/no_equip.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "#iguanatweaksreborn:vanilla_armors" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/recipes/tools/modifiers/ability/luck_level_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "conditions": [ 3 | { 4 | "type": "forge:false" 5 | } 6 | ] 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/bane_of_sssss.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:bane_of_sssss" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/blast_protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:blast_protection" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/feather_falling.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:feather_falling" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/fiery.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:fire_aspect" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/fire_protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:fire_protection" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/knockback.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:knockback" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/luck.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:luck" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/projectile_protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:projectile_protection" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/protection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:protection" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/sharpness.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:sharpness" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/smite.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:smite" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tags/enchantment/modifier_like/sweeping_edge.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:sweeping_edge" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tinkering/materials/stats/copper.json: -------------------------------------------------------------------------------- 1 | { 2 | "stats": { 3 | "tconstruct:head": { 4 | "mining_tier": "minecraft:stone" 5 | } 6 | } 7 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/data/tconstruct/tinkering/tags/modifiers/upgrades/damage.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [ 3 | "iguanatweaksreborn:critical" 4 | ] 5 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/tconstruct_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Disables vanilla tools, weapons and armor and rebalances some TConstruct items", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/toolbelt_integration/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Changes the Tool Belt recipe to give 4 slots instead of 2", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/villager_trades/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Rework villagers trades", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/integrated_packs/yung_better_fortresses/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "Various changes to Yung's Better Fortresses", 4 | "pack_format": 15 5 | } 6 | } -------------------------------------------------------------------------------- /src/main/resources/logo.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/logo.afphoto -------------------------------------------------------------------------------- /src/main/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/logo.png -------------------------------------------------------------------------------- /src/main/resources/logo_extra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Insane96/IguanaTweaksReborn/6f324cbdb084450c0b032414a360e6d0e643c87d/src/main/resources/logo_extra.png -------------------------------------------------------------------------------- /src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "pack": { 3 | "description": "iguanatweaksreborn resources", 4 | "pack_format": 15 5 | } 6 | } 7 | --------------------------------------------------------------------------------