├── .gitignore ├── CHANGELOG.md ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── src └── main │ ├── java │ └── com │ │ └── bawnorton │ │ └── dynamictrim │ │ ├── DynamicTrim.java │ │ ├── client │ │ ├── DynamicTrimClient.java │ │ ├── adapters │ │ │ └── DynamicTrimsTrimModelLoaderAdapter.java │ │ ├── extend │ │ │ ├── ArmorTrimPatternExtender.java │ │ │ └── SmithingTemplateItemExtender.java │ │ ├── mixin │ │ │ ├── ArmorTrimPatternMixin.java │ │ │ ├── MinecraftClientMixin.java │ │ │ ├── ModelPredicateProviderRegistryMixin.java │ │ │ ├── RuntimeTrimsClientMixin.java │ │ │ └── SmithingTemplateItemMixin.java │ │ └── platform │ │ │ └── DynamicTrimClientWrapper.java │ │ └── platform │ │ └── DynamicTrimWrapper.java │ └── resources │ ├── 1.21.accesswidener │ ├── META-INF │ └── neoforge.mods.toml │ ├── assets │ ├── dynamictrim │ │ └── icon.png │ └── minecraft │ │ └── textures │ │ └── trims │ │ └── items │ │ ├── boots │ │ ├── alexscaves-polarity.png │ │ ├── frostiful-frosty.png │ │ ├── geode_plus-celeste.png │ │ ├── geode_plus-heart.png │ │ ├── geode_plus-wrap.png │ │ ├── minecraft-coast.png │ │ ├── minecraft-dune.png │ │ ├── minecraft-eye.png │ │ ├── minecraft-host.png │ │ ├── minecraft-raiser.png │ │ ├── minecraft-rib.png │ │ ├── minecraft-sentry.png │ │ ├── minecraft-shaper.png │ │ ├── minecraft-silence.png │ │ ├── minecraft-snout.png │ │ ├── minecraft-spire.png │ │ ├── minecraft-tide.png │ │ ├── minecraft-vex.png │ │ ├── minecraft-ward.png │ │ ├── minecraft-wayfinder.png │ │ ├── minecraft-wild.png │ │ ├── more_armor_trims-beast_armor_trim_smithing_template.png │ │ ├── more_armor_trims-fever_armor_trim_smithing_template.png │ │ ├── more_armor_trims-greed_armor_trim_smithing_template.png │ │ ├── more_armor_trims-myth_armor_trim_smithing_template.png │ │ ├── more_armor_trims-ram_armor_trim_smithing_template.png │ │ └── more_armor_trims-storm_armor_trim_smithing_template.png │ │ ├── chestplate │ │ ├── alexscaves-polarity.png │ │ ├── frostiful-frosty.png │ │ ├── geode_plus-celeste.png │ │ ├── geode_plus-heart.png │ │ ├── geode_plus-wrap.png │ │ ├── minecraft-coast.png │ │ ├── minecraft-dune.png │ │ ├── minecraft-eye.png │ │ ├── minecraft-host.png │ │ ├── minecraft-raiser.png │ │ ├── minecraft-rib.png │ │ ├── minecraft-sentry.png │ │ ├── minecraft-shaper.png │ │ ├── minecraft-silence.png │ │ ├── minecraft-snout.png │ │ ├── minecraft-spire.png │ │ ├── minecraft-tide.png │ │ ├── minecraft-vex.png │ │ ├── minecraft-ward.png │ │ ├── minecraft-wayfinder.png │ │ ├── minecraft-wild.png │ │ ├── more_armor_trims-beast_armor_trim_smithing_template.png │ │ ├── more_armor_trims-fever_armor_trim_smithing_template.png │ │ ├── more_armor_trims-greed_armor_trim_smithing_template.png │ │ ├── more_armor_trims-myth_armor_trim_smithing_template.png │ │ ├── more_armor_trims-ram_armor_trim_smithing_template.png │ │ └── more_armor_trims-storm_armor_trim_smithing_template.png │ │ ├── helmet │ │ ├── alexscaves-polarity.png │ │ ├── frostiful-frosty.png │ │ ├── geode_plus-celeste.png │ │ ├── geode_plus-heart.png │ │ ├── geode_plus-wrap.png │ │ ├── minecraft-coast.png │ │ ├── minecraft-dune.png │ │ ├── minecraft-eye.png │ │ ├── minecraft-host.png │ │ ├── minecraft-raiser.png │ │ ├── minecraft-rib.png │ │ ├── minecraft-sentry.png │ │ ├── minecraft-shaper.png │ │ ├── minecraft-silence.png │ │ ├── minecraft-snout.png │ │ ├── minecraft-spire.png │ │ ├── minecraft-tide.png │ │ ├── minecraft-vex.png │ │ ├── minecraft-ward.png │ │ ├── minecraft-wayfinder.png │ │ ├── minecraft-wild.png │ │ ├── more_armor_trims-beast_armor_trim_smithing_template.png │ │ ├── more_armor_trims-fever_armor_trim_smithing_template.png │ │ ├── more_armor_trims-greed_armor_trim_smithing_template.png │ │ ├── more_armor_trims-myth_armor_trim_smithing_template.png │ │ ├── more_armor_trims-ram_armor_trim_smithing_template.png │ │ └── more_armor_trims-storm_armor_trim_smithing_template.png │ │ └── leggings │ │ ├── alexscaves-polarity.png │ │ ├── frostiful-frosty.png │ │ ├── geode_plus-celeste.png │ │ ├── geode_plus-heart.png │ │ ├── geode_plus-wrap.png │ │ ├── minecraft-coast.png │ │ ├── minecraft-dune.png │ │ ├── minecraft-eye.png │ │ ├── minecraft-host.png │ │ ├── minecraft-raiser.png │ │ ├── minecraft-rib.png │ │ ├── minecraft-sentry.png │ │ ├── minecraft-shaper.png │ │ ├── minecraft-silence.png │ │ ├── minecraft-snout.png │ │ ├── minecraft-spire.png │ │ ├── minecraft-tide.png │ │ ├── minecraft-vex.png │ │ ├── minecraft-ward.png │ │ ├── minecraft-wayfinder.png │ │ ├── minecraft-wild.png │ │ ├── more_armor_trims-beast_armor_trim_smithing_template.png │ │ ├── more_armor_trims-fever_armor_trim_smithing_template.png │ │ ├── more_armor_trims-greed_armor_trim_smithing_template.png │ │ ├── more_armor_trims-myth_armor_trim_smithing_template.png │ │ ├── more_armor_trims-ram_armor_trim_smithing_template.png │ │ └── more_armor_trims-storm_armor_trim_smithing_template.png │ ├── dynamictrim-client.mixins.json │ ├── dynamictrim.mixins.json │ └── fabric.mod.json ├── stonecutter.gradle.kts └── versions ├── 1.21-fabric └── gradle.properties └── 1.21-neoforge └── gradle.properties /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | run 3 | .idea 4 | build/ 5 | .DS_Store -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/DynamicTrim.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/DynamicTrim.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/DynamicTrimClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/DynamicTrimClient.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/adapters/DynamicTrimsTrimModelLoaderAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/adapters/DynamicTrimsTrimModelLoaderAdapter.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/extend/ArmorTrimPatternExtender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/extend/ArmorTrimPatternExtender.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/extend/SmithingTemplateItemExtender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/extend/SmithingTemplateItemExtender.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/mixin/ArmorTrimPatternMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/mixin/ArmorTrimPatternMixin.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/mixin/MinecraftClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/mixin/MinecraftClientMixin.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/mixin/ModelPredicateProviderRegistryMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/mixin/ModelPredicateProviderRegistryMixin.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/mixin/RuntimeTrimsClientMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/mixin/RuntimeTrimsClientMixin.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/mixin/SmithingTemplateItemMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/mixin/SmithingTemplateItemMixin.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/client/platform/DynamicTrimClientWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/client/platform/DynamicTrimClientWrapper.java -------------------------------------------------------------------------------- /src/main/java/com/bawnorton/dynamictrim/platform/DynamicTrimWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/java/com/bawnorton/dynamictrim/platform/DynamicTrimWrapper.java -------------------------------------------------------------------------------- /src/main/resources/1.21.accesswidener: -------------------------------------------------------------------------------- 1 | accessWidener v2 named -------------------------------------------------------------------------------- /src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /src/main/resources/assets/dynamictrim/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/dynamictrim/icon.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/alexscaves-polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/alexscaves-polarity.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/frostiful-frosty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/frostiful-frosty.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-celeste.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/geode_plus-wrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-coast.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-dune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-dune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-host.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-raiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-raiser.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-sentry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-shaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-shaper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-silence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-silence.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-snout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-snout.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-spire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-spire.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-tide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-tide.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-vex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-vex.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-ward.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-wayfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-wayfinder.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-wild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/minecraft-wild.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-beast_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-beast_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-fever_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-fever_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-greed_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-greed_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-myth_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-myth_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-ram_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-ram_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-storm_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/boots/more_armor_trims-storm_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/alexscaves-polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/alexscaves-polarity.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/frostiful-frosty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/frostiful-frosty.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-celeste.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/geode_plus-wrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-coast.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-dune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-dune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-host.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-raiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-raiser.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-sentry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-shaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-shaper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-silence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-silence.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-snout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-snout.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-spire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-spire.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-tide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-tide.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-vex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-vex.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-ward.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-wayfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-wayfinder.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-wild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/minecraft-wild.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-beast_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-beast_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-fever_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-fever_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-greed_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-greed_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-myth_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-myth_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-ram_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-ram_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-storm_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/chestplate/more_armor_trims-storm_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/alexscaves-polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/alexscaves-polarity.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/frostiful-frosty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/frostiful-frosty.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-celeste.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/geode_plus-wrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-coast.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-dune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-dune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-host.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-raiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-raiser.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-sentry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-shaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-shaper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-silence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-silence.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-snout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-snout.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-spire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-spire.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-tide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-tide.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-vex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-vex.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-ward.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-wayfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-wayfinder.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-wild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/minecraft-wild.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-beast_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-beast_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-fever_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-fever_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-greed_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-greed_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-myth_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-myth_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-ram_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-ram_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-storm_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/helmet/more_armor_trims-storm_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/alexscaves-polarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/alexscaves-polarity.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/frostiful-frosty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/frostiful-frosty.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-celeste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-celeste.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-heart.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-wrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/geode_plus-wrap.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-coast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-coast.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-dune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-dune.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-eye.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-host.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-raiser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-raiser.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-rib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-rib.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-sentry.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-shaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-shaper.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-silence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-silence.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-snout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-snout.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-spire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-spire.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-tide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-tide.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-vex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-vex.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-ward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-ward.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-wayfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-wayfinder.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-wild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/minecraft-wild.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-beast_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-beast_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-fever_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-fever_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-greed_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-greed_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-myth_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-myth_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-ram_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-ram_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-storm_armor_trim_smithing_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/assets/minecraft/textures/trims/items/leggings/more_armor_trims-storm_armor_trim_smithing_template.png -------------------------------------------------------------------------------- /src/main/resources/dynamictrim-client.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/dynamictrim-client.mixins.json -------------------------------------------------------------------------------- /src/main/resources/dynamictrim.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/dynamictrim.mixins.json -------------------------------------------------------------------------------- /src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /stonecutter.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/stonecutter.gradle.kts -------------------------------------------------------------------------------- /versions/1.21-fabric/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/versions/1.21-fabric/gradle.properties -------------------------------------------------------------------------------- /versions/1.21-neoforge/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bawnorton/Dynamic-Trim/HEAD/versions/1.21-neoforge/gradle.properties --------------------------------------------------------------------------------