├── .github └── workflows │ ├── build.yml │ └── weekly_check.yml ├── .gitignore ├── LICENSE ├── README.md ├── common ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── github │ │ └── stellarwind22 │ │ └── shieldlib │ │ ├── init │ │ ├── ShieldLib.java │ │ └── ShieldLibClient.java │ │ ├── lib │ │ ├── client │ │ │ ├── event │ │ │ │ └── ShieldClientEvents.java │ │ │ ├── model │ │ │ │ ├── BucklerShieldLibModel.java │ │ │ │ ├── HeaterShieldModel.java │ │ │ │ ├── ShieldModel.java │ │ │ │ ├── SpikedBucklerShieldModel.java │ │ │ │ ├── SpikedHeaterShieldModel.java │ │ │ │ ├── SpikedTargeShieldModel.java │ │ │ │ ├── SpikedTowerShieldModel.java │ │ │ │ ├── TargeShieldModel.java │ │ │ │ └── TowerShieldModel.java │ │ │ └── render │ │ │ │ ├── BucklerShieldModelRenderer.java │ │ │ │ ├── HeaterShieldModelRenderer.java │ │ │ │ ├── ShieldModelRenderer.java │ │ │ │ ├── SpikedBucklerShieldModelRenderer.java │ │ │ │ ├── SpikedHeaterShieldModelRenderer.java │ │ │ │ ├── SpikedTargeShieldModelRenderer.java │ │ │ │ ├── SpikedTowerShieldModelRenderer.java │ │ │ │ ├── TargeShieldModelRenderer.java │ │ │ │ └── TowerShieldModelRenderer.java │ │ ├── component │ │ │ ├── ShieldDataComponents.java │ │ │ └── ShieldInformation.java │ │ ├── config │ │ │ └── ShieldLibConfig.java │ │ ├── event │ │ │ └── ShieldEvents.java │ │ ├── object │ │ │ ├── ShieldLibDamage.java │ │ │ ├── ShieldLibItem.java │ │ │ ├── ShieldLibTags.java │ │ │ └── ShieldLibUtils.java │ │ └── registry │ │ │ ├── ShieldCooldownEntry.java │ │ │ ├── ShieldCooldownModifier.java │ │ │ └── ShieldMovementModifier.java │ │ ├── mixin │ │ ├── EntityMixin.java │ │ ├── ItemsMixin.java │ │ ├── LivingEntityMixin.java │ │ ├── RecipeMixin.java │ │ └── client │ │ │ ├── ItemInHandRendererMixin.java │ │ │ ├── ItemStackMixin.java │ │ │ ├── LocalPlayerMixin.java │ │ │ ├── SheetsAccessor.java │ │ │ └── SpecialModelRenderersAccessor.java │ │ └── test │ │ └── ShieldLibTests.java │ └── resources │ ├── assets │ ├── minecraft │ │ ├── atlases │ │ │ └── shield_patterns.json │ │ └── textures │ │ │ └── entity │ │ │ └── shield │ │ │ ├── buckler_base.png │ │ │ ├── buckler_border.png │ │ │ ├── buckler_bricks.png │ │ │ ├── buckler_circle.png │ │ │ ├── buckler_creeper.png │ │ │ ├── buckler_cross.png │ │ │ ├── buckler_curly_border.png │ │ │ ├── buckler_diagonal_left.png │ │ │ ├── buckler_diagonal_right.png │ │ │ ├── buckler_diagonal_up_left.png │ │ │ ├── buckler_diagonal_up_right.png │ │ │ ├── buckler_flow.png │ │ │ ├── buckler_flower.png │ │ │ ├── buckler_globe.png │ │ │ ├── buckler_gradient.png │ │ │ ├── buckler_gradient_up.png │ │ │ ├── buckler_guster.png │ │ │ ├── buckler_half_horizontal.png │ │ │ ├── buckler_half_horizontal_bottom.png │ │ │ ├── buckler_half_vertical.png │ │ │ ├── buckler_half_vertical_right.png │ │ │ ├── buckler_mojang.png │ │ │ ├── buckler_piglin.png │ │ │ ├── buckler_rhombus.png │ │ │ ├── buckler_skull.png │ │ │ ├── buckler_small_stripes.png │ │ │ ├── buckler_square_bottom_left.png │ │ │ ├── buckler_square_bottom_right.png │ │ │ ├── buckler_square_top_left.png │ │ │ ├── buckler_square_top_right.png │ │ │ ├── buckler_straight_cross.png │ │ │ ├── buckler_stripe_bottom.png │ │ │ ├── buckler_stripe_center.png │ │ │ ├── buckler_stripe_downleft.png │ │ │ ├── buckler_stripe_downright.png │ │ │ ├── buckler_stripe_left.png │ │ │ ├── buckler_stripe_middle.png │ │ │ ├── buckler_stripe_right.png │ │ │ ├── buckler_stripe_top.png │ │ │ ├── buckler_triangle_bottom.png │ │ │ ├── buckler_triangle_top.png │ │ │ ├── buckler_triangles_bottom.png │ │ │ ├── buckler_triangles_top.png │ │ │ ├── heater_base.png │ │ │ ├── heater_border.png │ │ │ ├── heater_bricks.png │ │ │ ├── heater_circle.png │ │ │ ├── heater_creeper.png │ │ │ ├── heater_cross.png │ │ │ ├── heater_curly_border.png │ │ │ ├── heater_diagonal_left.png │ │ │ ├── heater_diagonal_right.png │ │ │ ├── heater_diagonal_up_left.png │ │ │ ├── heater_diagonal_up_right.png │ │ │ ├── heater_flow.png │ │ │ ├── heater_flower.png │ │ │ ├── heater_globe.png │ │ │ ├── heater_gradient.png │ │ │ ├── heater_gradient_up.png │ │ │ ├── heater_guster.png │ │ │ ├── heater_half_horizontal.png │ │ │ ├── heater_half_horizontal_bottom.png │ │ │ ├── heater_half_vertical.png │ │ │ ├── heater_half_vertical_right.png │ │ │ ├── heater_mojang.png │ │ │ ├── heater_piglin.png │ │ │ ├── heater_rhombus.png │ │ │ ├── heater_skull.png │ │ │ ├── heater_small_stripes.png │ │ │ ├── heater_square_bottom_left.png │ │ │ ├── heater_square_bottom_right.png │ │ │ ├── heater_square_top_left.png │ │ │ ├── heater_square_top_right.png │ │ │ ├── heater_straight_cross.png │ │ │ ├── heater_stripe_bottom.png │ │ │ ├── heater_stripe_center.png │ │ │ ├── heater_stripe_downleft.png │ │ │ ├── heater_stripe_downright.png │ │ │ ├── heater_stripe_left.png │ │ │ ├── heater_stripe_middle.png │ │ │ ├── heater_stripe_right.png │ │ │ ├── heater_stripe_top.png │ │ │ ├── heater_triangle_bottom.png │ │ │ ├── heater_triangle_top.png │ │ │ ├── heater_triangles_bottom.png │ │ │ ├── heater_triangles_top.png │ │ │ ├── targe_base.png │ │ │ ├── targe_border.png │ │ │ ├── targe_bricks.png │ │ │ ├── targe_circle.png │ │ │ ├── targe_creeper.png │ │ │ ├── targe_cross.png │ │ │ ├── targe_curly_border.png │ │ │ ├── targe_diagonal_left.png │ │ │ ├── targe_diagonal_right.png │ │ │ ├── targe_diagonal_up_left.png │ │ │ ├── targe_diagonal_up_right.png │ │ │ ├── targe_flow.png │ │ │ ├── targe_flower.png │ │ │ ├── targe_globe.png │ │ │ ├── targe_gradient.png │ │ │ ├── targe_gradient_up.png │ │ │ ├── targe_guster.png │ │ │ ├── targe_half_horizontal.png │ │ │ ├── targe_half_horizontal_bottom.png │ │ │ ├── targe_half_vertical.png │ │ │ ├── targe_half_vertical_right.png │ │ │ ├── targe_mojang.png │ │ │ ├── targe_piglin.png │ │ │ ├── targe_rhombus.png │ │ │ ├── targe_skull.png │ │ │ ├── targe_small_stripes.png │ │ │ ├── targe_square_bottom_left.png │ │ │ ├── targe_square_bottom_right.png │ │ │ ├── targe_square_top_left.png │ │ │ ├── targe_square_top_right.png │ │ │ ├── targe_straight_cross.png │ │ │ ├── targe_stripe_bottom.png │ │ │ ├── targe_stripe_center.png │ │ │ ├── targe_stripe_downleft.png │ │ │ ├── targe_stripe_downright.png │ │ │ ├── targe_stripe_left.png │ │ │ ├── targe_stripe_middle.png │ │ │ ├── targe_stripe_right.png │ │ │ ├── targe_stripe_top.png │ │ │ ├── targe_triangle_bottom.png │ │ │ ├── targe_triangle_top.png │ │ │ ├── targe_triangles_bottom.png │ │ │ └── targe_triangles_top.png │ └── shieldlib │ │ ├── icon.png │ │ ├── items │ │ ├── buckler_shield.json │ │ ├── component_shield.json │ │ ├── heater_shield.json │ │ ├── shield.json │ │ ├── spiked_buckler_shield.json │ │ ├── spiked_heater_shield.json │ │ ├── spiked_targe_shield.json │ │ ├── spiked_tower_shield.json │ │ ├── targe_shield.json │ │ └── tower_shield.json │ │ ├── lang │ │ ├── en_us.json │ │ ├── fr_fr.json │ │ ├── no_no.json │ │ ├── pt_br.json │ │ └── zh_cn.json │ │ ├── models │ │ └── item │ │ │ ├── buckler_shield.json │ │ │ ├── buckler_shield_blocking.json │ │ │ ├── component_shield.json │ │ │ ├── component_shield_blocking.json │ │ │ ├── heater_shield.json │ │ │ ├── heater_shield_blocking.json │ │ │ ├── shield.json │ │ │ ├── shield_blocking.json │ │ │ ├── spiked_buckler_shield.json │ │ │ ├── spiked_buckler_shield_blocking.json │ │ │ ├── spiked_heater_shield.json │ │ │ ├── spiked_heater_shield_blocking.json │ │ │ ├── spiked_targe_shield.json │ │ │ ├── spiked_targe_shield_blocking.json │ │ │ ├── spiked_tower_shield.json │ │ │ ├── spiked_tower_shield_blocking.json │ │ │ ├── targe_shield.json │ │ │ ├── targe_shield_blocking.json │ │ │ ├── tower_shield.json │ │ │ └── tower_shield_blocking.json │ │ └── textures │ │ ├── entity │ │ ├── buckler_shield_base.png │ │ ├── buckler_shield_base_nopattern.png │ │ ├── heater_shield_base.png │ │ ├── heater_shield_base_nopattern.png │ │ ├── shield_base.png │ │ ├── shield_base_nopattern.png │ │ ├── spiked_buckler_shield_base.png │ │ ├── spiked_buckler_shield_base_nopattern.png │ │ ├── spiked_heater_shield_base.png │ │ ├── spiked_heater_shield_base_nopattern.png │ │ ├── spiked_targe_shield_base.png │ │ ├── spiked_targe_shield_base_nopattern.png │ │ ├── spiked_tower_shield_base.png │ │ ├── spiked_tower_shield_base_nopattern.png │ │ ├── targe_shield_base.png │ │ ├── targe_shield_base_nopattern.png │ │ ├── tower_shield_base.png │ │ └── tower_shield_base_nopattern.png │ │ └── item │ │ └── shield.png │ ├── data │ ├── c │ │ └── tags │ │ │ └── item │ │ │ └── tools │ │ │ ├── axe.json │ │ │ ├── axes.json │ │ │ ├── shield.json │ │ │ └── shields.json │ ├── minecraft │ │ └── tags │ │ │ └── item │ │ │ └── enchantable │ │ │ └── durability.json │ └── shieldlib │ │ ├── damage_type │ │ ├── collide_spiked_shield.json │ │ └── hit_spiked_shield.json │ │ ├── enchantment │ │ ├── recovery.json │ │ └── reflect.json │ │ └── tags │ │ └── item │ │ ├── enchantable │ │ └── shield.json │ │ ├── no_tooltip.json │ │ └── supports_banner.json │ └── shieldlib.mixins.json ├── docs ├── image │ ├── architectury_128.png │ ├── architectury_256.png │ ├── architectury_512.png │ ├── architectury_64.png │ ├── banner_128.png │ ├── banner_256.png │ ├── banner_512.png │ ├── banner_64.png │ ├── fabric_128.png │ ├── fabric_256.png │ ├── fabric_512.png │ ├── fabric_64.png │ ├── intellij_architectury_create_project.png │ ├── intellij_architectury_plugin.png │ ├── intellij_create_button.png │ ├── intellij_download.png │ ├── intellij_fabric_create_project.png │ ├── intellij_minecraft_plugin.png │ ├── intellij_neoforge_create_project.png │ ├── intellij_select_wizard.png │ ├── logo_128.png │ ├── logo_256.png │ ├── logo_512.png │ ├── logo_64.png │ ├── neoforge_128.png │ ├── neoforge_256.png │ ├── neoforge_512.png │ ├── neoforge_64.png │ ├── showcase_enchanting.png │ ├── showcase_multi_tooltip.png │ ├── showcase_shape.png │ └── showcase_tooltip.png └── page │ ├── architectury │ ├── component_shield.md │ ├── getting_started.md │ ├── new_shape_shield.md │ └── tower_shield.md │ ├── fabric │ ├── component_shield.md │ ├── getting_started.md │ ├── new_shape_shield.md │ └── tower_shield.md │ ├── mod │ └── external.md │ └── neoforge │ ├── component_shield.md │ ├── getting_started.md │ ├── new_shape_shield.md │ └── tower_shield.md ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── github │ │ └── stellarwind22 │ │ └── shieldlib │ │ └── fabric │ │ ├── config │ │ └── ShieldLibModMenuIntegration.java │ │ └── init │ │ ├── ShieldLibFabric.java │ │ └── ShieldLibFabricClient.java │ └── resources │ └── fabric.mod.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── com │ │ └── github │ │ └── stellarwind22 │ │ └── shieldlib │ │ └── neoforge │ │ └── init │ │ └── ShieldLibNeoForge.java │ └── resources │ ├── META-INF │ └── neoforge.mods.toml │ └── shieldlib.png └── settings.gradle /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/weekly_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/.github/workflows/weekly_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/README.md -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/init/ShieldLib.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/init/ShieldLib.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/init/ShieldLibClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/init/ShieldLibClient.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/event/ShieldClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/event/ShieldClientEvents.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/BucklerShieldLibModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/BucklerShieldLibModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/HeaterShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/HeaterShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/ShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/ShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedBucklerShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedBucklerShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedHeaterShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedHeaterShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedTargeShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedTargeShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedTowerShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/SpikedTowerShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/TargeShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/TargeShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/TowerShieldModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/model/TowerShieldModel.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/BucklerShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/BucklerShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/HeaterShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/HeaterShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/ShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/ShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedBucklerShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedBucklerShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedHeaterShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedHeaterShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedTargeShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedTargeShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedTowerShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/SpikedTowerShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/TargeShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/TargeShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/TowerShieldModelRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/client/render/TowerShieldModelRenderer.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/component/ShieldDataComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/component/ShieldDataComponents.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/component/ShieldInformation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/component/ShieldInformation.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/config/ShieldLibConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/config/ShieldLibConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/event/ShieldEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/event/ShieldEvents.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibDamage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibDamage.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibTags.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/object/ShieldLibUtils.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldCooldownEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldCooldownEntry.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldCooldownModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldCooldownModifier.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldMovementModifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/lib/registry/ShieldMovementModifier.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/EntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/EntityMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/ItemsMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/ItemsMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/LivingEntityMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/LivingEntityMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/RecipeMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/RecipeMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/ItemInHandRendererMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/ItemInHandRendererMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/ItemStackMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/ItemStackMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/LocalPlayerMixin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/LocalPlayerMixin.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/SheetsAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/SheetsAccessor.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/SpecialModelRenderersAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/mixin/client/SpecialModelRenderersAccessor.java -------------------------------------------------------------------------------- /common/src/main/java/com/github/stellarwind22/shieldlib/test/ShieldLibTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/java/com/github/stellarwind22/shieldlib/test/ShieldLibTests.java -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/atlases/shield_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/atlases/shield_patterns.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_bricks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_circle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_creeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_creeper.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_curly_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_curly_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_up_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_diagonal_up_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_flow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_flower.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_globe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_gradient.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_gradient_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_gradient_up.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_guster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_guster.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_horizontal.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_horizontal_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_horizontal_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_vertical.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_vertical_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_half_vertical_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_mojang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_mojang.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_piglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_piglin.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_rhombus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_rhombus.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_skull.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_small_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_small_stripes.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_bottom_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_bottom_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_top_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_square_top_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_straight_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_straight_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_center.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_downleft.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_downright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_downright.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_stripe_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangle_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangle_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangle_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangle_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangles_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangles_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangles_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/buckler_triangles_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_bricks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_circle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_creeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_creeper.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_curly_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_curly_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_up_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_diagonal_up_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_flow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_flower.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_globe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_gradient.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_gradient_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_gradient_up.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_guster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_guster.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_horizontal.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_horizontal_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_horizontal_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_vertical.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_vertical_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_half_vertical_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_mojang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_mojang.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_piglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_piglin.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_rhombus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_rhombus.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_skull.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_small_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_small_stripes.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_bottom_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_bottom_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_top_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_square_top_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_straight_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_straight_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_center.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_downleft.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_downright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_downright.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_stripe_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangle_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangle_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangle_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangle_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangles_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangles_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangles_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/heater_triangles_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_bricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_bricks.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_circle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_creeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_creeper.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_curly_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_curly_border.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_up_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_up_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_up_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_diagonal_up_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_flow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_flower.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_globe.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_gradient.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_gradient_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_gradient_up.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_guster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_guster.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_horizontal.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_horizontal_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_horizontal_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_vertical.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_vertical_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_half_vertical_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_mojang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_mojang.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_piglin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_piglin.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_rhombus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_rhombus.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_skull.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_small_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_small_stripes.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_bottom_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_bottom_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_top_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_square_top_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_straight_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_straight_cross.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_center.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_downleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_downleft.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_downright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_downright.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_left.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_middle.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_right.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_stripe_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangle_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangle_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangle_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangle_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangles_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangles_bottom.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangles_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/minecraft/textures/entity/shield/targe_triangles_top.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/icon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/buckler_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/buckler_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/component_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/component_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/heater_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/heater_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/spiked_buckler_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/spiked_buckler_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/spiked_heater_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/spiked_heater_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/spiked_targe_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/spiked_targe_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/spiked_tower_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/spiked_tower_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/targe_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/targe_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/items/tower_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/items/tower_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/lang/no_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/lang/no_no.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/lang/pt_br.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/buckler_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/buckler_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/buckler_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/buckler_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/component_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/component_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/component_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/component_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/heater_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/heater_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/heater_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/heater_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_buckler_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_buckler_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_buckler_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_buckler_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_heater_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_heater_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_heater_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_heater_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_targe_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_targe_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_targe_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_targe_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_tower_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_tower_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/spiked_tower_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/spiked_tower_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/targe_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/targe_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/targe_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/targe_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/tower_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/tower_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/models/item/tower_shield_blocking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/models/item/tower_shield_blocking.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/buckler_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/buckler_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/buckler_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/buckler_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/heater_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/heater_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/heater_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/heater_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_buckler_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_buckler_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_buckler_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_buckler_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_heater_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_heater_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_heater_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_heater_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_targe_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_targe_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_targe_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_targe_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_tower_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_tower_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/spiked_tower_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/spiked_tower_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/targe_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/targe_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/targe_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/targe_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/tower_shield_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/tower_shield_base.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/entity/tower_shield_base_nopattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/entity/tower_shield_base_nopattern.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/shieldlib/textures/item/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/assets/shieldlib/textures/item/shield.png -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/tools/axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/c/tags/item/tools/axe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/tools/axes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/c/tags/item/tools/axes.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/tools/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/c/tags/item/tools/shield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/tools/shields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/c/tags/item/tools/shields.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/enchantable/durability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/minecraft/tags/item/enchantable/durability.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/damage_type/collide_spiked_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/damage_type/collide_spiked_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/damage_type/hit_spiked_shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/damage_type/hit_spiked_shield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/enchantment/recovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/enchantment/recovery.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/enchantment/reflect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/enchantment/reflect.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/tags/item/enchantable/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/tags/item/enchantable/shield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/tags/item/no_tooltip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/tags/item/no_tooltip.json -------------------------------------------------------------------------------- /common/src/main/resources/data/shieldlib/tags/item/supports_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/data/shieldlib/tags/item/supports_banner.json -------------------------------------------------------------------------------- /common/src/main/resources/shieldlib.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/common/src/main/resources/shieldlib.mixins.json -------------------------------------------------------------------------------- /docs/image/architectury_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/architectury_128.png -------------------------------------------------------------------------------- /docs/image/architectury_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/architectury_256.png -------------------------------------------------------------------------------- /docs/image/architectury_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/architectury_512.png -------------------------------------------------------------------------------- /docs/image/architectury_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/architectury_64.png -------------------------------------------------------------------------------- /docs/image/banner_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/banner_128.png -------------------------------------------------------------------------------- /docs/image/banner_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/banner_256.png -------------------------------------------------------------------------------- /docs/image/banner_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/banner_512.png -------------------------------------------------------------------------------- /docs/image/banner_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/banner_64.png -------------------------------------------------------------------------------- /docs/image/fabric_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/fabric_128.png -------------------------------------------------------------------------------- /docs/image/fabric_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/fabric_256.png -------------------------------------------------------------------------------- /docs/image/fabric_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/fabric_512.png -------------------------------------------------------------------------------- /docs/image/fabric_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/fabric_64.png -------------------------------------------------------------------------------- /docs/image/intellij_architectury_create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_architectury_create_project.png -------------------------------------------------------------------------------- /docs/image/intellij_architectury_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_architectury_plugin.png -------------------------------------------------------------------------------- /docs/image/intellij_create_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_create_button.png -------------------------------------------------------------------------------- /docs/image/intellij_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_download.png -------------------------------------------------------------------------------- /docs/image/intellij_fabric_create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_fabric_create_project.png -------------------------------------------------------------------------------- /docs/image/intellij_minecraft_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_minecraft_plugin.png -------------------------------------------------------------------------------- /docs/image/intellij_neoforge_create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_neoforge_create_project.png -------------------------------------------------------------------------------- /docs/image/intellij_select_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/intellij_select_wizard.png -------------------------------------------------------------------------------- /docs/image/logo_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/logo_128.png -------------------------------------------------------------------------------- /docs/image/logo_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/logo_256.png -------------------------------------------------------------------------------- /docs/image/logo_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/logo_512.png -------------------------------------------------------------------------------- /docs/image/logo_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/logo_64.png -------------------------------------------------------------------------------- /docs/image/neoforge_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/neoforge_128.png -------------------------------------------------------------------------------- /docs/image/neoforge_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/neoforge_256.png -------------------------------------------------------------------------------- /docs/image/neoforge_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/neoforge_512.png -------------------------------------------------------------------------------- /docs/image/neoforge_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/neoforge_64.png -------------------------------------------------------------------------------- /docs/image/showcase_enchanting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/showcase_enchanting.png -------------------------------------------------------------------------------- /docs/image/showcase_multi_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/showcase_multi_tooltip.png -------------------------------------------------------------------------------- /docs/image/showcase_shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/showcase_shape.png -------------------------------------------------------------------------------- /docs/image/showcase_tooltip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/image/showcase_tooltip.png -------------------------------------------------------------------------------- /docs/page/architectury/component_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/architectury/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/architectury/getting_started.md -------------------------------------------------------------------------------- /docs/page/architectury/new_shape_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/architectury/tower_shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/architectury/tower_shield.md -------------------------------------------------------------------------------- /docs/page/fabric/component_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/fabric/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/fabric/getting_started.md -------------------------------------------------------------------------------- /docs/page/fabric/new_shape_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/fabric/tower_shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/fabric/tower_shield.md -------------------------------------------------------------------------------- /docs/page/mod/external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/mod/external.md -------------------------------------------------------------------------------- /docs/page/neoforge/component_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/neoforge/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/neoforge/getting_started.md -------------------------------------------------------------------------------- /docs/page/neoforge/new_shape_shield.md: -------------------------------------------------------------------------------- 1 | # WIP :( -------------------------------------------------------------------------------- /docs/page/neoforge/tower_shield.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/docs/page/neoforge/tower_shield.md -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/config/ShieldLibModMenuIntegration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/config/ShieldLibModMenuIntegration.java -------------------------------------------------------------------------------- /fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/init/ShieldLibFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/init/ShieldLibFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/init/ShieldLibFabricClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/fabric/src/main/java/com/github/stellarwind22/shieldlib/fabric/init/ShieldLibFabricClient.java -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/gradlew.bat -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform=neoforge 2 | -------------------------------------------------------------------------------- /neoforge/src/main/java/com/github/stellarwind22/shieldlib/neoforge/init/ShieldLibNeoForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/neoforge/src/main/java/com/github/stellarwind22/shieldlib/neoforge/init/ShieldLibNeoForge.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/shieldlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/neoforge/src/main/resources/shieldlib.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StellarWind22/Shield-Lib/HEAD/settings.gradle --------------------------------------------------------------------------------