├── .gitignore ├── common ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── com │ │ └── magistuarmory │ │ ├── EpicKnights.java │ │ ├── api │ │ ├── client │ │ │ └── render │ │ │ │ └── model │ │ │ │ └── ModModelsProvider.java │ │ └── item │ │ │ └── ModItemsProvider.java │ │ ├── block │ │ ├── ModBlockEntityTypes.java │ │ ├── ModBlocks.java │ │ ├── PaviseBlock.java │ │ ├── PaviseBlockEntity.java │ │ └── PaviseUpperCollisionBlock.java │ │ ├── client │ │ ├── HitResultHelper.java │ │ └── render │ │ │ ├── ModRender.java │ │ │ ├── PatternLayer.java │ │ │ ├── entity │ │ │ └── layer │ │ │ │ ├── ArmorDecorationLayer.java │ │ │ │ ├── ArmorPatternLayer.java │ │ │ │ └── HorseArmorDecorationLayer.java │ │ │ ├── model │ │ │ ├── ModModels.java │ │ │ ├── armor │ │ │ │ ├── ArmetModel.java │ │ │ │ ├── BarbuteModel.java │ │ │ │ ├── BascinetModel.java │ │ │ │ ├── CrownArmorModel.java │ │ │ │ ├── CrusaderModel.java │ │ │ │ ├── GrandBascinetModel.java │ │ │ │ ├── KettlehatModel.java │ │ │ │ ├── MaximilianHelmetModel.java │ │ │ │ ├── SalletModel.java │ │ │ │ ├── StechhelmModel.java │ │ │ │ └── WingedHussarChestplateModel.java │ │ │ ├── block │ │ │ │ └── PaviseBlockModel.java │ │ │ ├── decoration │ │ │ │ ├── ArmorDecorationModel.java │ │ │ │ ├── ArmorDecorationModelSet.java │ │ │ │ ├── BigPlumeModel.java │ │ │ │ ├── CaparisonModel.java │ │ │ │ ├── CatEarsModel.java │ │ │ │ ├── CrownModel.java │ │ │ │ ├── EcrancheModel.java │ │ │ │ ├── FlowercrownModel.java │ │ │ │ ├── HoodModel.java │ │ │ │ ├── HornsModel.java │ │ │ │ ├── HorseArmorDecorationModel.java │ │ │ │ ├── MiniCrownModel.java │ │ │ │ ├── PlumeLeftModel.java │ │ │ │ ├── PlumeMiddleModel.java │ │ │ │ ├── PlumeRightModel.java │ │ │ │ ├── RondelModel.java │ │ │ │ ├── SurcoatModel.java │ │ │ │ ├── TopDecoration2Model.java │ │ │ │ ├── TopDecorationModel.java │ │ │ │ ├── TorseAndMantleModel.java │ │ │ │ └── TorseModel.java │ │ │ └── item │ │ │ │ ├── BucklerModel.java │ │ │ │ ├── CorruptedRoundShieldModel.java │ │ │ │ ├── EllipticalShieldModel.java │ │ │ │ ├── HeaterShieldModel.java │ │ │ │ ├── KiteShieldModel.java │ │ │ │ ├── MedievalShieldModel.java │ │ │ │ ├── PaviseModel.java │ │ │ │ ├── RondacheModel.java │ │ │ │ ├── RoundShieldModel.java │ │ │ │ ├── TargeModel.java │ │ │ │ └── TartscheModel.java │ │ │ └── tileentity │ │ │ ├── HeraldryItemStackRenderer.java │ │ │ ├── PaviseBlockRenderer.java │ │ │ └── ShieldPatternLayer.java │ │ ├── component │ │ └── ModDataComponents.java │ │ ├── config │ │ ├── ArmorConfig.java │ │ ├── GeneralConfig.java │ │ ├── MobEquipmentConfig.java │ │ ├── ModConfig.java │ │ ├── ShieldsConfig.java │ │ └── WeaponsConfig.java │ │ ├── effects │ │ ├── LacerationEffect.java │ │ └── ModEffects.java │ │ ├── event │ │ ├── ClientEvents.java │ │ └── CommonEvents.java │ │ ├── item │ │ ├── ArmorDecoration.java │ │ ├── ArmorDecorationItem.java │ │ ├── DyeableArmorDecorationItem.java │ │ ├── DyeableItemLike.java │ │ ├── IHasModelProperty.java │ │ ├── ItemRegistryHelper.java │ │ ├── ItemsSupply.java │ │ ├── LanceItem.java │ │ ├── MedievalBagItem.java │ │ ├── MedievalBowItem.java │ │ ├── MedievalCrossbowItem.java │ │ ├── MedievalShieldItem.java │ │ ├── MedievalWeaponItem.java │ │ ├── ModItemTags.java │ │ ├── ModItemTier.java │ │ ├── ModItems.java │ │ ├── PaviseItem.java │ │ ├── ShieldType.java │ │ ├── ShieldTypes.java │ │ ├── ShieldsSupply.java │ │ ├── WeaponType.java │ │ ├── WeaponTypes.java │ │ ├── WeaponsSupply.java │ │ ├── armor │ │ │ ├── ArmorType.java │ │ │ ├── ArmorTypes.java │ │ │ ├── DyeableMedievalArmorItem.java │ │ │ ├── DyeableWearableArmorDecorationItem.java │ │ │ ├── ISurcoat.java │ │ │ ├── JoustingItem.java │ │ │ ├── KnightItem.java │ │ │ ├── MedievalArmorItem.java │ │ │ ├── MedievalHorseArmorItem.java │ │ │ └── WearableArmorDecorationItem.java │ │ └── crafting │ │ │ ├── ArmorDecorationRecipe.java │ │ │ ├── DecorationRemoveRecipe.java │ │ │ ├── HeraldryRecipe.java │ │ │ └── ModRecipes.java │ │ ├── misc │ │ ├── HeraldryRegistry.java │ │ ├── ModBannerPatternTags.java │ │ ├── ModCreativeTabs.java │ │ ├── ModLoot.java │ │ └── ModMerchOffers.java │ │ ├── network │ │ ├── ModPackets.java │ │ └── PacketLanceCollision.java │ │ └── util │ │ ├── CombatHelper.java │ │ ├── DualKey.java │ │ ├── MobEquipment.java │ │ ├── MobEquipmentHelper.java │ │ ├── ModDamageSources.java │ │ └── ModDamageTypes.java │ └── resources │ ├── architectury.common.json │ ├── assets │ ├── magistuarmory │ │ ├── atlases │ │ │ └── banner_patterns.json │ │ ├── blockstates │ │ │ ├── pavise.json │ │ │ └── pavise_upper_collision.json │ │ ├── icon.png │ │ ├── lang │ │ │ ├── de_de.json │ │ │ ├── en_us.json │ │ │ ├── fr_fr.json │ │ │ ├── ja_jp.json │ │ │ ├── pl_pl.json │ │ │ ├── ru_ru.json │ │ │ └── zh_cn.json │ │ ├── models │ │ │ ├── block │ │ │ │ ├── pavise.json │ │ │ │ └── pavise_upper_collision.json │ │ │ └── item │ │ │ │ ├── antlers_decoration.json │ │ │ │ ├── apostolic_cross_pattern.json │ │ │ │ ├── armet.json │ │ │ │ ├── armet_with_plume.json │ │ │ │ ├── barbedclub.json │ │ │ │ ├── barbute.json │ │ │ │ ├── barding.json │ │ │ │ ├── bascinet.json │ │ │ │ ├── bear_decoration.json │ │ │ │ ├── big_plume_decoration.json │ │ │ │ ├── blacksmith_hammer.json │ │ │ │ ├── bowl_pattern.json │ │ │ │ ├── brigandine_boots.json │ │ │ │ ├── brigandine_chestplate.json │ │ │ │ ├── bronze_ahlspiess.json │ │ │ │ ├── bronze_ahlspiess_blocking.json │ │ │ │ ├── bronze_bastardsword.json │ │ │ │ ├── bronze_bastardsword_blocking.json │ │ │ │ ├── bronze_buckler.json │ │ │ │ ├── bronze_buckler_blocking.json │ │ │ │ ├── bronze_chainmorgenstern.json │ │ │ │ ├── bronze_chivalrylance.json │ │ │ │ ├── bronze_chivalrylance_raised.json │ │ │ │ ├── bronze_claymore.json │ │ │ │ ├── bronze_claymore_blocking.json │ │ │ │ ├── bronze_concavehalberd.json │ │ │ │ ├── bronze_concavehalberd_blocking.json │ │ │ │ ├── bronze_ellipticalshield.json │ │ │ │ ├── bronze_ellipticalshield_blocking.json │ │ │ │ ├── bronze_estoc.json │ │ │ │ ├── bronze_estoc_blocking.json │ │ │ │ ├── bronze_flamebladedsword.json │ │ │ │ ├── bronze_flamebladedsword_blocking.json │ │ │ │ ├── bronze_guisarme.json │ │ │ │ ├── bronze_guisarme_blocking.json │ │ │ │ ├── bronze_heatershield.json │ │ │ │ ├── bronze_heatershield_blocking.json │ │ │ │ ├── bronze_heavymace.json │ │ │ │ ├── bronze_heavywarhammer.json │ │ │ │ ├── bronze_ingot.json │ │ │ │ ├── bronze_katzbalger.json │ │ │ │ ├── bronze_kiteshield.json │ │ │ │ ├── bronze_kiteshield_blocking.json │ │ │ │ ├── bronze_lochaberaxe.json │ │ │ │ ├── bronze_lochaberaxe_blocking.json │ │ │ │ ├── bronze_lucernhammer.json │ │ │ │ ├── bronze_morgenstern.json │ │ │ │ ├── bronze_pavese.json │ │ │ │ ├── bronze_pavese_blocking.json │ │ │ │ ├── bronze_pike.json │ │ │ │ ├── bronze_ranseur.json │ │ │ │ ├── bronze_ranseur_blocking.json │ │ │ │ ├── bronze_rondache.json │ │ │ │ ├── bronze_rondache_blocking.json │ │ │ │ ├── bronze_roundshield.json │ │ │ │ ├── bronze_roundshield_blocking.json │ │ │ │ ├── bronze_shortsword.json │ │ │ │ ├── bronze_stylet.json │ │ │ │ ├── bronze_target.json │ │ │ │ ├── bronze_target_blocking.json │ │ │ │ ├── bronze_tartsche.json │ │ │ │ ├── bronze_tartsche_blocking.json │ │ │ │ ├── bronze_zweihander.json │ │ │ │ ├── bronze_zweihander_blocking.json │ │ │ │ ├── buckler.json │ │ │ │ ├── buckler_blocking.json │ │ │ │ ├── bull_pattern.json │ │ │ │ ├── bullhorns_decoration.json │ │ │ │ ├── ceremonial_boots.json │ │ │ │ ├── ceremonial_chestplate.json │ │ │ │ ├── ceremonialarmet.json │ │ │ │ ├── ceremonialarmet_with_plume.json │ │ │ │ ├── chainmail_boots.json │ │ │ │ ├── chainmail_chestplate.json │ │ │ │ ├── chainmail_helmet.json │ │ │ │ ├── chainmail_horse_armor.json │ │ │ │ ├── chainmail_leggings.json │ │ │ │ ├── chess_pattern.json │ │ │ │ ├── club.json │ │ │ │ ├── coif.json │ │ │ │ ├── copper_ahlspiess.json │ │ │ │ ├── copper_ahlspiess_blocking.json │ │ │ │ ├── copper_bastardsword.json │ │ │ │ ├── copper_bastardsword_blocking.json │ │ │ │ ├── copper_buckler.json │ │ │ │ ├── copper_buckler_blocking.json │ │ │ │ ├── copper_chainmorgenstern.json │ │ │ │ ├── copper_chivalrylance.json │ │ │ │ ├── copper_chivalrylance_raised.json │ │ │ │ ├── copper_claymore.json │ │ │ │ ├── copper_claymore_blocking.json │ │ │ │ ├── copper_concavehalberd.json │ │ │ │ ├── copper_concavehalberd_blocking.json │ │ │ │ ├── copper_ellipticalshield.json │ │ │ │ ├── copper_ellipticalshield_blocking.json │ │ │ │ ├── copper_estoc.json │ │ │ │ ├── copper_estoc_blocking.json │ │ │ │ ├── copper_flamebladedsword.json │ │ │ │ ├── copper_flamebladedsword_blocking.json │ │ │ │ ├── copper_guisarme.json │ │ │ │ ├── copper_guisarme_blocking.json │ │ │ │ ├── copper_heatershield.json │ │ │ │ ├── copper_heatershield_blocking.json │ │ │ │ ├── copper_heavymace.json │ │ │ │ ├── copper_heavywarhammer.json │ │ │ │ ├── copper_katzbalger.json │ │ │ │ ├── copper_kiteshield.json │ │ │ │ ├── copper_kiteshield_blocking.json │ │ │ │ ├── copper_lochaberaxe.json │ │ │ │ ├── copper_lochaberaxe_blocking.json │ │ │ │ ├── copper_lucernhammer.json │ │ │ │ ├── copper_morgenstern.json │ │ │ │ ├── copper_pavese.json │ │ │ │ ├── copper_pavese_blocking.json │ │ │ │ ├── copper_pike.json │ │ │ │ ├── copper_ranseur.json │ │ │ │ ├── copper_ranseur_blocking.json │ │ │ │ ├── copper_rondache.json │ │ │ │ ├── copper_rondache_blocking.json │ │ │ │ ├── copper_roundshield.json │ │ │ │ ├── copper_roundshield_blocking.json │ │ │ │ ├── copper_shortsword.json │ │ │ │ ├── copper_stylet.json │ │ │ │ ├── copper_target.json │ │ │ │ ├── copper_target_blocking.json │ │ │ │ ├── copper_tartsche.json │ │ │ │ ├── copper_tartsche_blocking.json │ │ │ │ ├── copper_zweihander.json │ │ │ │ ├── copper_zweihander_blocking.json │ │ │ │ ├── corruptedroundshield.json │ │ │ │ ├── corruptedroundshield_blocking.json │ │ │ │ ├── crown_decoration.json │ │ │ │ ├── crusader_boots.json │ │ │ │ ├── crusader_chestplate.json │ │ │ │ ├── crusader_cross_pattern.json │ │ │ │ ├── crusader_leggings.json │ │ │ │ ├── cuirassier_boots.json │ │ │ │ ├── cuirassier_chestplate.json │ │ │ │ ├── cuirassier_helmet.json │ │ │ │ ├── cuirassier_leggings.json │ │ │ │ ├── dark_plackart_decoration.json │ │ │ │ ├── darkening_template.json │ │ │ │ ├── demon_horns_decoration.json │ │ │ │ ├── desktop.ini │ │ │ │ ├── diamond_ahlspiess.json │ │ │ │ ├── diamond_ahlspiess_blocking.json │ │ │ │ ├── diamond_bastardsword.json │ │ │ │ ├── diamond_bastardsword_blocking.json │ │ │ │ ├── diamond_buckler.json │ │ │ │ ├── diamond_buckler_blocking.json │ │ │ │ ├── diamond_chainmorgenstern.json │ │ │ │ ├── diamond_chivalrylance.json │ │ │ │ ├── diamond_chivalrylance_raised.json │ │ │ │ ├── diamond_claymore.json │ │ │ │ ├── diamond_claymore_blocking.json │ │ │ │ ├── diamond_concavehalberd.json │ │ │ │ ├── diamond_concavehalberd_blocking.json │ │ │ │ ├── diamond_ellipticalshield.json │ │ │ │ ├── diamond_ellipticalshield_blocking.json │ │ │ │ ├── diamond_estoc.json │ │ │ │ ├── diamond_estoc_blocking.json │ │ │ │ ├── diamond_flamebladedsword.json │ │ │ │ ├── diamond_flamebladedsword_blocking.json │ │ │ │ ├── diamond_guisarme.json │ │ │ │ ├── diamond_guisarme_blocking.json │ │ │ │ ├── diamond_heatershield.json │ │ │ │ ├── diamond_heatershield_blocking.json │ │ │ │ ├── diamond_heavymace.json │ │ │ │ ├── diamond_heavywarhammer.json │ │ │ │ ├── diamond_katzbalger.json │ │ │ │ ├── diamond_kiteshield.json │ │ │ │ ├── diamond_kiteshield_blocking.json │ │ │ │ ├── diamond_lochaberaxe.json │ │ │ │ ├── diamond_lochaberaxe_blocking.json │ │ │ │ ├── diamond_lucernhammer.json │ │ │ │ ├── diamond_morgenstern.json │ │ │ │ ├── diamond_pavese.json │ │ │ │ ├── diamond_pavese_blocking.json │ │ │ │ ├── diamond_pike.json │ │ │ │ ├── diamond_ranseur.json │ │ │ │ ├── diamond_ranseur_blocking.json │ │ │ │ ├── diamond_rondache.json │ │ │ │ ├── diamond_rondache_blocking.json │ │ │ │ ├── diamond_roundshield.json │ │ │ │ ├── diamond_roundshield_blocking.json │ │ │ │ ├── diamond_shortsword.json │ │ │ │ ├── diamond_stylet.json │ │ │ │ ├── diamond_target.json │ │ │ │ ├── diamond_target_blocking.json │ │ │ │ ├── diamond_tartsche.json │ │ │ │ ├── diamond_tartsche_blocking.json │ │ │ │ ├── diamond_zweihander.json │ │ │ │ ├── diamond_zweihander_blocking.json │ │ │ │ ├── dragon_decoration.json │ │ │ │ ├── dragon_pattern.json │ │ │ │ ├── duck_decoration.json │ │ │ │ ├── eagle_pattern.json │ │ │ │ ├── ecranche_decoration.json │ │ │ │ ├── ellipticalshield.json │ │ │ │ ├── ellipticalshield_blocking.json │ │ │ │ ├── face_helmet.json │ │ │ │ ├── feathers_decoration.json │ │ │ │ ├── flowercrown_decoration.json │ │ │ │ ├── gambeson_boots.json │ │ │ │ ├── gambeson_chestplate.json │ │ │ │ ├── gazelle_horns_decoration.json │ │ │ │ ├── gilding_template.json │ │ │ │ ├── gold_ahlspiess.json │ │ │ │ ├── gold_ahlspiess_blocking.json │ │ │ │ ├── gold_bastardsword.json │ │ │ │ ├── gold_bastardsword_blocking.json │ │ │ │ ├── gold_buckler.json │ │ │ │ ├── gold_buckler_blocking.json │ │ │ │ ├── gold_chainmorgenstern.json │ │ │ │ ├── gold_chivalrylance.json │ │ │ │ ├── gold_chivalrylance_raised.json │ │ │ │ ├── gold_claymore.json │ │ │ │ ├── gold_claymore_blocking.json │ │ │ │ ├── gold_concavehalberd.json │ │ │ │ ├── gold_concavehalberd_blocking.json │ │ │ │ ├── gold_ellipticalshield.json │ │ │ │ ├── gold_ellipticalshield_blocking.json │ │ │ │ ├── gold_estoc.json │ │ │ │ ├── gold_estoc_blocking.json │ │ │ │ ├── gold_flamebladedsword.json │ │ │ │ ├── gold_flamebladedsword_blocking.json │ │ │ │ ├── gold_guisarme.json │ │ │ │ ├── gold_guisarme_blocking.json │ │ │ │ ├── gold_heatershield.json │ │ │ │ ├── gold_heatershield_blocking.json │ │ │ │ ├── gold_heavymace.json │ │ │ │ ├── gold_heavywarhammer.json │ │ │ │ ├── gold_katzbalger.json │ │ │ │ ├── gold_kiteshield.json │ │ │ │ ├── gold_kiteshield_blocking.json │ │ │ │ ├── gold_lochaberaxe.json │ │ │ │ ├── gold_lochaberaxe_blocking.json │ │ │ │ ├── gold_lucernhammer.json │ │ │ │ ├── gold_morgenstern.json │ │ │ │ ├── gold_pavese.json │ │ │ │ ├── gold_pavese_blocking.json │ │ │ │ ├── gold_pike.json │ │ │ │ ├── gold_ranseur.json │ │ │ │ ├── gold_ranseur_blocking.json │ │ │ │ ├── gold_rondache.json │ │ │ │ ├── gold_rondache_blocking.json │ │ │ │ ├── gold_roundshield.json │ │ │ │ ├── gold_roundshield_blocking.json │ │ │ │ ├── gold_shortsword.json │ │ │ │ ├── gold_stylet.json │ │ │ │ ├── gold_target.json │ │ │ │ ├── gold_target_blocking.json │ │ │ │ ├── gold_tartsche.json │ │ │ │ ├── gold_tartsche_blocking.json │ │ │ │ ├── gold_zweihander.json │ │ │ │ ├── gold_zweihander_blocking.json │ │ │ │ ├── gothic_boots.json │ │ │ │ ├── gothic_chestplate.json │ │ │ │ ├── gothic_leggings.json │ │ │ │ ├── grand_bascinet.json │ │ │ │ ├── greathelm.json │ │ │ │ ├── griffin_decoration.json │ │ │ │ ├── halfarmor_chestplate.json │ │ │ │ ├── heatershield.json │ │ │ │ ├── heatershield_blocking.json │ │ │ │ ├── hilt.json │ │ │ │ ├── hood_decoration.json │ │ │ │ ├── horse_decoration.json │ │ │ │ ├── horse_pattern.json │ │ │ │ ├── iron_ahlspiess.json │ │ │ │ ├── iron_ahlspiess_blocking.json │ │ │ │ ├── iron_bastardsword.json │ │ │ │ ├── iron_bastardsword_blocking.json │ │ │ │ ├── iron_buckler.json │ │ │ │ ├── iron_buckler_blocking.json │ │ │ │ ├── iron_chainmorgenstern.json │ │ │ │ ├── iron_chivalrylance.json │ │ │ │ ├── iron_chivalrylance_raised.json │ │ │ │ ├── iron_claymore.json │ │ │ │ ├── iron_claymore_blocking.json │ │ │ │ ├── iron_concavehalberd.json │ │ │ │ ├── iron_concavehalberd_blocking.json │ │ │ │ ├── iron_ellipticalshield.json │ │ │ │ ├── iron_ellipticalshield_blocking.json │ │ │ │ ├── iron_estoc.json │ │ │ │ ├── iron_estoc_blocking.json │ │ │ │ ├── iron_flamebladedsword.json │ │ │ │ ├── iron_flamebladedsword_blocking.json │ │ │ │ ├── iron_guisarme.json │ │ │ │ ├── iron_guisarme_blocking.json │ │ │ │ ├── iron_heatershield.json │ │ │ │ ├── iron_heatershield_blocking.json │ │ │ │ ├── iron_heavymace.json │ │ │ │ ├── iron_heavywarhammer.json │ │ │ │ ├── iron_katzbalger.json │ │ │ │ ├── iron_kiteshield.json │ │ │ │ ├── iron_kiteshield_blocking.json │ │ │ │ ├── iron_lochaberaxe.json │ │ │ │ ├── iron_lochaberaxe_blocking.json │ │ │ │ ├── iron_lucernhammer.json │ │ │ │ ├── iron_morgenstern.json │ │ │ │ ├── iron_pavese.json │ │ │ │ ├── iron_pavese_blocking.json │ │ │ │ ├── iron_pike.json │ │ │ │ ├── iron_ranseur.json │ │ │ │ ├── iron_ranseur_blocking.json │ │ │ │ ├── iron_rondache.json │ │ │ │ ├── iron_rondache_blocking.json │ │ │ │ ├── iron_roundshield.json │ │ │ │ ├── iron_roundshield_blocking.json │ │ │ │ ├── iron_shortsword.json │ │ │ │ ├── iron_stylet.json │ │ │ │ ├── iron_target.json │ │ │ │ ├── iron_target_blocking.json │ │ │ │ ├── iron_tartsche.json │ │ │ │ ├── iron_tartsche_blocking.json │ │ │ │ ├── iron_zweihander.json │ │ │ │ ├── iron_zweihander_blocking.json │ │ │ │ ├── jousting_boots.json │ │ │ │ ├── jousting_chestplate.json │ │ │ │ ├── jousting_leggings.json │ │ │ │ ├── kastenbrust_boots.json │ │ │ │ ├── kastenbrust_chestplate.json │ │ │ │ ├── kastenbrust_leggings.json │ │ │ │ ├── kettlehat.json │ │ │ │ ├── kiteshield.json │ │ │ │ ├── kiteshield_blocking.json │ │ │ │ ├── knight_boots.json │ │ │ │ ├── knight_chestplate.json │ │ │ │ ├── knight_leggings.json │ │ │ │ ├── lamellar_boots.json │ │ │ │ ├── lamellar_chestplate.json │ │ │ │ ├── lamellar_rows.json │ │ │ │ ├── leather_strip.json │ │ │ │ ├── lily_decoration.json │ │ │ │ ├── lily_pattern.json │ │ │ │ ├── lion1_pattern.json │ │ │ │ ├── lion2_pattern.json │ │ │ │ ├── lion_decoration.json │ │ │ │ ├── longbow.json │ │ │ │ ├── longbow_pulling_0.json │ │ │ │ ├── longbow_pulling_1.json │ │ │ │ ├── longbow_pulling_2.json │ │ │ │ ├── maximilian_boots.json │ │ │ │ ├── maximilian_chestplate.json │ │ │ │ ├── maximilian_helmet.json │ │ │ │ ├── maximilian_leggings.json │ │ │ │ ├── medieval_bag.json │ │ │ │ ├── messer_sword.json │ │ │ │ ├── messer_sword_blocking.json │ │ │ │ ├── minicrown_decoration.json │ │ │ │ ├── netherite_ahlspiess.json │ │ │ │ ├── netherite_ahlspiess_blocking.json │ │ │ │ ├── netherite_bastardsword.json │ │ │ │ ├── netherite_bastardsword_blocking.json │ │ │ │ ├── netherite_buckler.json │ │ │ │ ├── netherite_buckler_blocking.json │ │ │ │ ├── netherite_chainmorgenstern.json │ │ │ │ ├── netherite_chivalrylance.json │ │ │ │ ├── netherite_chivalrylance_raised.json │ │ │ │ ├── netherite_claymore.json │ │ │ │ ├── netherite_claymore_blocking.json │ │ │ │ ├── netherite_concavehalberd.json │ │ │ │ ├── netherite_concavehalberd_blocking.json │ │ │ │ ├── netherite_ellipticalshield.json │ │ │ │ ├── netherite_ellipticalshield_blocking.json │ │ │ │ ├── netherite_estoc.json │ │ │ │ ├── netherite_estoc_blocking.json │ │ │ │ ├── netherite_flamebladedsword.json │ │ │ │ ├── netherite_flamebladedsword_blocking.json │ │ │ │ ├── netherite_guisarme.json │ │ │ │ ├── netherite_guisarme_blocking.json │ │ │ │ ├── netherite_heatershield.json │ │ │ │ ├── netherite_heatershield_blocking.json │ │ │ │ ├── netherite_heavymace.json │ │ │ │ ├── netherite_heavywarhammer.json │ │ │ │ ├── netherite_katzbalger.json │ │ │ │ ├── netherite_kiteshield.json │ │ │ │ ├── netherite_kiteshield_blocking.json │ │ │ │ ├── netherite_lochaberaxe.json │ │ │ │ ├── netherite_lochaberaxe_blocking.json │ │ │ │ ├── netherite_lucernhammer.json │ │ │ │ ├── netherite_morgenstern.json │ │ │ │ ├── netherite_pavese.json │ │ │ │ ├── netherite_pavese_blocking.json │ │ │ │ ├── netherite_pike.json │ │ │ │ ├── netherite_ranseur.json │ │ │ │ ├── netherite_ranseur_blocking.json │ │ │ │ ├── netherite_rondache.json │ │ │ │ ├── netherite_rondache_blocking.json │ │ │ │ ├── netherite_roundshield.json │ │ │ │ ├── netherite_roundshield_blocking.json │ │ │ │ ├── netherite_shortsword.json │ │ │ │ ├── netherite_stylet.json │ │ │ │ ├── netherite_target.json │ │ │ │ ├── netherite_target_blocking.json │ │ │ │ ├── netherite_tartsche.json │ │ │ │ ├── netherite_tartsche_blocking.json │ │ │ │ ├── netherite_zweihander.json │ │ │ │ ├── netherite_zweihander_blocking.json │ │ │ │ ├── noble_sword.json │ │ │ │ ├── noble_sword_blocking.json │ │ │ │ ├── norman_helmet.json │ │ │ │ ├── orthodox_cross_pattern.json │ │ │ │ ├── pantyhose.json │ │ │ │ ├── pavese.json │ │ │ │ ├── pavese_blocking.json │ │ │ │ ├── pitchfork.json │ │ │ │ ├── platemail_boots.json │ │ │ │ ├── platemail_chestplate.json │ │ │ │ ├── platemail_leggings.json │ │ │ │ ├── plume_left_decoration.json │ │ │ │ ├── plume_middle_decoration.json │ │ │ │ ├── plume_right_decoration.json │ │ │ │ ├── pole.json │ │ │ │ ├── rondache.json │ │ │ │ ├── rondache_blocking.json │ │ │ │ ├── rondel_decoration.json │ │ │ │ ├── roundshield.json │ │ │ │ ├── roundshield_blocking.json │ │ │ │ ├── rusted_bastardsword.json │ │ │ │ ├── rusted_bastardsword_blocking.json │ │ │ │ ├── rusted_heavymace.json │ │ │ │ ├── rustedbarbute.json │ │ │ │ ├── rustedchainmail_boots.json │ │ │ │ ├── rustedchainmail_chestplate.json │ │ │ │ ├── rustedchainmail_helmet.json │ │ │ │ ├── rustedchainmail_leggings.json │ │ │ │ ├── rustedcrusader_boots.json │ │ │ │ ├── rustedcrusader_chestplate.json │ │ │ │ ├── rustedgreathelm.json │ │ │ │ ├── rustedhalfarmor_chestplate.json │ │ │ │ ├── rustedkettlehat.json │ │ │ │ ├── rustednorman_helmet.json │ │ │ │ ├── sallet.json │ │ │ │ ├── shishak.json │ │ │ │ ├── silver_ahlspiess.json │ │ │ │ ├── silver_ahlspiess_blocking.json │ │ │ │ ├── silver_bastardsword.json │ │ │ │ ├── silver_bastardsword_blocking.json │ │ │ │ ├── silver_buckler.json │ │ │ │ ├── silver_buckler_blocking.json │ │ │ │ ├── silver_chainmorgenstern.json │ │ │ │ ├── silver_chivalrylance.json │ │ │ │ ├── silver_chivalrylance_raised.json │ │ │ │ ├── silver_claymore.json │ │ │ │ ├── silver_claymore_blocking.json │ │ │ │ ├── silver_concavehalberd.json │ │ │ │ ├── silver_concavehalberd_blocking.json │ │ │ │ ├── silver_ellipticalshield.json │ │ │ │ ├── silver_ellipticalshield_blocking.json │ │ │ │ ├── silver_estoc.json │ │ │ │ ├── silver_estoc_blocking.json │ │ │ │ ├── silver_flamebladedsword.json │ │ │ │ ├── silver_flamebladedsword_blocking.json │ │ │ │ ├── silver_guisarme.json │ │ │ │ ├── silver_guisarme_blocking.json │ │ │ │ ├── silver_heatershield.json │ │ │ │ ├── silver_heatershield_blocking.json │ │ │ │ ├── silver_heavymace.json │ │ │ │ ├── silver_heavywarhammer.json │ │ │ │ ├── silver_ingot.json │ │ │ │ ├── silver_katzbalger.json │ │ │ │ ├── silver_kiteshield.json │ │ │ │ ├── silver_kiteshield_blocking.json │ │ │ │ ├── silver_lochaberaxe.json │ │ │ │ ├── silver_lochaberaxe_blocking.json │ │ │ │ ├── silver_lucernhammer.json │ │ │ │ ├── silver_morgenstern.json │ │ │ │ ├── silver_pavese.json │ │ │ │ ├── silver_pavese_blocking.json │ │ │ │ ├── silver_pike.json │ │ │ │ ├── silver_ranseur.json │ │ │ │ ├── silver_ranseur_blocking.json │ │ │ │ ├── silver_rondache.json │ │ │ │ ├── silver_rondache_blocking.json │ │ │ │ ├── silver_roundshield.json │ │ │ │ ├── silver_roundshield_blocking.json │ │ │ │ ├── silver_shortsword.json │ │ │ │ ├── silver_stylet.json │ │ │ │ ├── silver_target.json │ │ │ │ ├── silver_target_blocking.json │ │ │ │ ├── silver_tartsche.json │ │ │ │ ├── silver_tartsche_blocking.json │ │ │ │ ├── silver_zweihander.json │ │ │ │ ├── silver_zweihander_blocking.json │ │ │ │ ├── small_steel_plate.json │ │ │ │ ├── snake_pattern.json │ │ │ │ ├── spike_decoration.json │ │ │ │ ├── standard.json │ │ │ │ ├── stechhelm.json │ │ │ │ ├── steel_ahlspiess.json │ │ │ │ ├── steel_ahlspiess_blocking.json │ │ │ │ ├── steel_bastardsword.json │ │ │ │ ├── steel_bastardsword_blocking.json │ │ │ │ ├── steel_buckler.json │ │ │ │ ├── steel_buckler_blocking.json │ │ │ │ ├── steel_chain.json │ │ │ │ ├── steel_chainmail.json │ │ │ │ ├── steel_chainmorgenstern.json │ │ │ │ ├── steel_chivalrylance.json │ │ │ │ ├── steel_chivalrylance_raised.json │ │ │ │ ├── steel_claymore.json │ │ │ │ ├── steel_claymore_blocking.json │ │ │ │ ├── steel_concavehalberd.json │ │ │ │ ├── steel_concavehalberd_blocking.json │ │ │ │ ├── steel_ellipticalshield.json │ │ │ │ ├── steel_ellipticalshield_blocking.json │ │ │ │ ├── steel_estoc.json │ │ │ │ ├── steel_estoc_blocking.json │ │ │ │ ├── steel_flamebladedsword.json │ │ │ │ ├── steel_flamebladedsword_blocking.json │ │ │ │ ├── steel_guisarme.json │ │ │ │ ├── steel_guisarme_blocking.json │ │ │ │ ├── steel_heatershield.json │ │ │ │ ├── steel_heatershield_blocking.json │ │ │ │ ├── steel_heavymace.json │ │ │ │ ├── steel_heavywarhammer.json │ │ │ │ ├── steel_ingot.json │ │ │ │ ├── steel_katzbalger.json │ │ │ │ ├── steel_kiteshield.json │ │ │ │ ├── steel_kiteshield_blocking.json │ │ │ │ ├── steel_lochaberaxe.json │ │ │ │ ├── steel_lochaberaxe_blocking.json │ │ │ │ ├── steel_lucernhammer.json │ │ │ │ ├── steel_morgenstern.json │ │ │ │ ├── steel_nugget.json │ │ │ │ ├── steel_pavese.json │ │ │ │ ├── steel_pavese_blocking.json │ │ │ │ ├── steel_pike.json │ │ │ │ ├── steel_plate.json │ │ │ │ ├── steel_ranseur.json │ │ │ │ ├── steel_ranseur_blocking.json │ │ │ │ ├── steel_ring.json │ │ │ │ ├── steel_rondache.json │ │ │ │ ├── steel_rondache_blocking.json │ │ │ │ ├── steel_roundshield.json │ │ │ │ ├── steel_roundshield_blocking.json │ │ │ │ ├── steel_shortsword.json │ │ │ │ ├── steel_stylet.json │ │ │ │ ├── steel_target.json │ │ │ │ ├── steel_target_blocking.json │ │ │ │ ├── steel_tartsche.json │ │ │ │ ├── steel_tartsche_blocking.json │ │ │ │ ├── steel_zweihander.json │ │ │ │ ├── steel_zweihander_blocking.json │ │ │ │ ├── stone_ahlspiess.json │ │ │ │ ├── stone_ahlspiess_blocking.json │ │ │ │ ├── stone_bastardsword.json │ │ │ │ ├── stone_bastardsword_blocking.json │ │ │ │ ├── stone_buckler.json │ │ │ │ ├── stone_buckler_blocking.json │ │ │ │ ├── stone_chainmorgenstern.json │ │ │ │ ├── stone_chivalrylance.json │ │ │ │ ├── stone_chivalrylance_raised.json │ │ │ │ ├── stone_claymore.json │ │ │ │ ├── stone_claymore_blocking.json │ │ │ │ ├── stone_concavehalberd.json │ │ │ │ ├── stone_concavehalberd_blocking.json │ │ │ │ ├── stone_ellipticalshield.json │ │ │ │ ├── stone_ellipticalshield_blocking.json │ │ │ │ ├── stone_estoc.json │ │ │ │ ├── stone_estoc_blocking.json │ │ │ │ ├── stone_flamebladedsword.json │ │ │ │ ├── stone_flamebladedsword_blocking.json │ │ │ │ ├── stone_guisarme.json │ │ │ │ ├── stone_guisarme_blocking.json │ │ │ │ ├── stone_heatershield.json │ │ │ │ ├── stone_heatershield_blocking.json │ │ │ │ ├── stone_heavymace.json │ │ │ │ ├── stone_heavywarhammer.json │ │ │ │ ├── stone_katzbalger.json │ │ │ │ ├── stone_kiteshield.json │ │ │ │ ├── stone_kiteshield_blocking.json │ │ │ │ ├── stone_lochaberaxe.json │ │ │ │ ├── stone_lochaberaxe_blocking.json │ │ │ │ ├── stone_lucernhammer.json │ │ │ │ ├── stone_morgenstern.json │ │ │ │ ├── stone_pavese.json │ │ │ │ ├── stone_pavese_blocking.json │ │ │ │ ├── stone_pike.json │ │ │ │ ├── stone_ranseur.json │ │ │ │ ├── stone_ranseur_blocking.json │ │ │ │ ├── stone_rondache.json │ │ │ │ ├── stone_rondache_blocking.json │ │ │ │ ├── stone_roundshield.json │ │ │ │ ├── stone_roundshield_blocking.json │ │ │ │ ├── stone_shortsword.json │ │ │ │ ├── stone_stylet.json │ │ │ │ ├── stone_target.json │ │ │ │ ├── stone_target_blocking.json │ │ │ │ ├── stone_tartsche.json │ │ │ │ ├── stone_tartsche_blocking.json │ │ │ │ ├── stone_zweihander.json │ │ │ │ ├── stone_zweihander_blocking.json │ │ │ │ ├── sun_pattern.json │ │ │ │ ├── swords_pattern.json │ │ │ │ ├── target.json │ │ │ │ ├── target_blocking.json │ │ │ │ ├── tartsche.json │ │ │ │ ├── tartsche_blocking.json │ │ │ │ ├── tin_ahlspiess.json │ │ │ │ ├── tin_ahlspiess_blocking.json │ │ │ │ ├── tin_bastardsword.json │ │ │ │ ├── tin_bastardsword_blocking.json │ │ │ │ ├── tin_buckler.json │ │ │ │ ├── tin_buckler_blocking.json │ │ │ │ ├── tin_chainmorgenstern.json │ │ │ │ ├── tin_chivalrylance.json │ │ │ │ ├── tin_chivalrylance_raised.json │ │ │ │ ├── tin_claymore.json │ │ │ │ ├── tin_claymore_blocking.json │ │ │ │ ├── tin_concavehalberd.json │ │ │ │ ├── tin_concavehalberd_blocking.json │ │ │ │ ├── tin_ellipticalshield.json │ │ │ │ ├── tin_ellipticalshield_blocking.json │ │ │ │ ├── tin_estoc.json │ │ │ │ ├── tin_estoc_blocking.json │ │ │ │ ├── tin_flamebladedsword.json │ │ │ │ ├── tin_flamebladedsword_blocking.json │ │ │ │ ├── tin_guisarme.json │ │ │ │ ├── tin_guisarme_blocking.json │ │ │ │ ├── tin_heatershield.json │ │ │ │ ├── tin_heatershield_blocking.json │ │ │ │ ├── tin_heavymace.json │ │ │ │ ├── tin_heavywarhammer.json │ │ │ │ ├── tin_ingot.json │ │ │ │ ├── tin_katzbalger.json │ │ │ │ ├── tin_kiteshield.json │ │ │ │ ├── tin_kiteshield_blocking.json │ │ │ │ ├── tin_lochaberaxe.json │ │ │ │ ├── tin_lochaberaxe_blocking.json │ │ │ │ ├── tin_lucernhammer.json │ │ │ │ ├── tin_morgenstern.json │ │ │ │ ├── tin_pavese.json │ │ │ │ ├── tin_pavese_blocking.json │ │ │ │ ├── tin_pike.json │ │ │ │ ├── tin_ranseur.json │ │ │ │ ├── tin_ranseur_blocking.json │ │ │ │ ├── tin_rondache.json │ │ │ │ ├── tin_rondache_blocking.json │ │ │ │ ├── tin_roundshield.json │ │ │ │ ├── tin_roundshield_blocking.json │ │ │ │ ├── tin_shortsword.json │ │ │ │ ├── tin_stylet.json │ │ │ │ ├── tin_target.json │ │ │ │ ├── tin_target_blocking.json │ │ │ │ ├── tin_tartsche.json │ │ │ │ ├── tin_tartsche_blocking.json │ │ │ │ ├── tin_zweihander.json │ │ │ │ ├── tin_zweihander_blocking.json │ │ │ │ ├── torse_and_mantle_decoration.json │ │ │ │ ├── torse_decoration.json │ │ │ │ ├── tower_pattern.json │ │ │ │ ├── tree_pattern.json │ │ │ │ ├── two_headed_eagle_pattern.json │ │ │ │ ├── two_plumes_decoration.json │ │ │ │ ├── unicorn_decoration.json │ │ │ │ ├── viking_horns_decoration.json │ │ │ │ ├── wingedhussar_chestplate.json │ │ │ │ ├── wood_ahlspiess.json │ │ │ │ ├── wood_ahlspiess_blocking.json │ │ │ │ ├── wood_bastardsword.json │ │ │ │ ├── wood_bastardsword_blocking.json │ │ │ │ ├── wood_buckler.json │ │ │ │ ├── wood_buckler_blocking.json │ │ │ │ ├── wood_chainmorgenstern.json │ │ │ │ ├── wood_chivalrylance.json │ │ │ │ ├── wood_chivalrylance_raised.json │ │ │ │ ├── wood_claymore.json │ │ │ │ ├── wood_claymore_blocking.json │ │ │ │ ├── wood_concavehalberd.json │ │ │ │ ├── wood_concavehalberd_blocking.json │ │ │ │ ├── wood_ellipticalshield.json │ │ │ │ ├── wood_ellipticalshield_blocking.json │ │ │ │ ├── wood_estoc.json │ │ │ │ ├── wood_estoc_blocking.json │ │ │ │ ├── wood_flamebladedsword.json │ │ │ │ ├── wood_flamebladedsword_blocking.json │ │ │ │ ├── wood_guisarme.json │ │ │ │ ├── wood_guisarme_blocking.json │ │ │ │ ├── wood_heatershield.json │ │ │ │ ├── wood_heatershield_blocking.json │ │ │ │ ├── wood_heavymace.json │ │ │ │ ├── wood_heavywarhammer.json │ │ │ │ ├── wood_katzbalger.json │ │ │ │ ├── wood_kiteshield.json │ │ │ │ ├── wood_kiteshield_blocking.json │ │ │ │ ├── wood_lochaberaxe.json │ │ │ │ ├── wood_lochaberaxe_blocking.json │ │ │ │ ├── wood_lucernhammer.json │ │ │ │ ├── wood_morgenstern.json │ │ │ │ ├── wood_pavese.json │ │ │ │ ├── wood_pavese_blocking.json │ │ │ │ ├── wood_pike.json │ │ │ │ ├── wood_ranseur.json │ │ │ │ ├── wood_ranseur_blocking.json │ │ │ │ ├── wood_rondache.json │ │ │ │ ├── wood_rondache_blocking.json │ │ │ │ ├── wood_roundshield.json │ │ │ │ ├── wood_roundshield_blocking.json │ │ │ │ ├── wood_shortsword.json │ │ │ │ ├── wood_stylet.json │ │ │ │ ├── wood_target.json │ │ │ │ ├── wood_target_blocking.json │ │ │ │ ├── wood_tartsche.json │ │ │ │ ├── wood_tartsche_blocking.json │ │ │ │ ├── wood_zweihander.json │ │ │ │ ├── wood_zweihander_blocking.json │ │ │ │ ├── woolen_fabric.json │ │ │ │ ├── xivcenturyknight_boots.json │ │ │ │ ├── xivcenturyknight_chestplate.json │ │ │ │ └── xivcenturyknight_leggings.json │ │ └── textures │ │ │ ├── entity │ │ │ ├── banner │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── dragon.png │ │ │ │ ├── eagle.png │ │ │ │ ├── horse.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── snake.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ └── two-headed_eagle.png │ │ │ ├── bronze_buckler_nopattern.png │ │ │ ├── bronze_ellipticalshield_nopattern.png │ │ │ ├── bronze_ellipticalshield_pattern.png │ │ │ ├── bronze_heatershield_nopattern.png │ │ │ ├── bronze_heatershield_pattern.png │ │ │ ├── bronze_kiteshield_nopattern.png │ │ │ ├── bronze_kiteshield_pattern.png │ │ │ ├── bronze_pavese_nopattern.png │ │ │ ├── bronze_pavese_pattern.png │ │ │ ├── bronze_rondache_nopattern.png │ │ │ ├── bronze_roundshield_nopattern.png │ │ │ ├── bronze_roundshield_pattern.png │ │ │ ├── bronze_target_nopattern.png │ │ │ ├── bronze_tartsche_nopattern.png │ │ │ ├── bronze_tartsche_pattern.png │ │ │ ├── copper_buckler_nopattern.png │ │ │ ├── copper_ellipticalshield_nopattern.png │ │ │ ├── copper_ellipticalshield_pattern.png │ │ │ ├── copper_heatershield_nopattern.png │ │ │ ├── copper_heatershield_pattern.png │ │ │ ├── copper_kiteshield_nopattern.png │ │ │ ├── copper_kiteshield_pattern.png │ │ │ ├── copper_pavese_nopattern.png │ │ │ ├── copper_pavese_pattern.png │ │ │ ├── copper_rondache_nopattern.png │ │ │ ├── copper_roundshield_nopattern.png │ │ │ ├── copper_roundshield_pattern.png │ │ │ ├── copper_target_nopattern.png │ │ │ ├── copper_tartsche_nopattern.png │ │ │ ├── copper_tartsche_pattern.png │ │ │ ├── corruptedroundshield_nopattern.png │ │ │ ├── diamond_buckler_nopattern.png │ │ │ ├── diamond_ellipticalshield_nopattern.png │ │ │ ├── diamond_ellipticalshield_pattern.png │ │ │ ├── diamond_heatershield_nopattern.png │ │ │ ├── diamond_heatershield_pattern.png │ │ │ ├── diamond_kiteshield_nopattern.png │ │ │ ├── diamond_kiteshield_pattern.png │ │ │ ├── diamond_pavese_nopattern.png │ │ │ ├── diamond_pavese_pattern.png │ │ │ ├── diamond_rondache_nopattern.png │ │ │ ├── diamond_roundshield_nopattern.png │ │ │ ├── diamond_roundshield_pattern.png │ │ │ ├── diamond_target_nopattern.png │ │ │ ├── diamond_tartsche_nopattern.png │ │ │ ├── diamond_tartsche_pattern.png │ │ │ ├── ellipticalshield │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── gold_buckler_nopattern.png │ │ │ ├── gold_ellipticalshield_nopattern.png │ │ │ ├── gold_ellipticalshield_pattern.png │ │ │ ├── gold_heatershield_nopattern.png │ │ │ ├── gold_heatershield_pattern.png │ │ │ ├── gold_kiteshield_nopattern.png │ │ │ ├── gold_kiteshield_pattern.png │ │ │ ├── gold_pavese_nopattern.png │ │ │ ├── gold_pavese_pattern.png │ │ │ ├── gold_rondache_nopattern.png │ │ │ ├── gold_roundshield_nopattern.png │ │ │ ├── gold_roundshield_pattern.png │ │ │ ├── gold_target_nopattern.png │ │ │ ├── gold_tartsche_nopattern.png │ │ │ ├── gold_tartsche_pattern.png │ │ │ ├── heatershield │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── horse │ │ │ │ └── armor │ │ │ │ │ ├── barding.png │ │ │ │ │ ├── caparison.png │ │ │ │ │ ├── caparison │ │ │ │ │ ├── amphithere.png │ │ │ │ │ ├── apostolic_cross.png │ │ │ │ │ ├── base.png │ │ │ │ │ ├── bird.png │ │ │ │ │ ├── border.png │ │ │ │ │ ├── bowl.png │ │ │ │ │ ├── bricks.png │ │ │ │ │ ├── bull.png │ │ │ │ │ ├── chess.png │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── creeper.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── crusader_cross.png │ │ │ │ │ ├── curly_border.png │ │ │ │ │ ├── diagonal_left.png │ │ │ │ │ ├── diagonal_right.png │ │ │ │ │ ├── diagonal_up_left.png │ │ │ │ │ ├── diagonal_up_right.png │ │ │ │ │ ├── dragon.png │ │ │ │ │ ├── dread.png │ │ │ │ │ ├── eagle.png │ │ │ │ │ ├── eye.png │ │ │ │ │ ├── fae.png │ │ │ │ │ ├── feather.png │ │ │ │ │ ├── fire.png │ │ │ │ │ ├── fire_head.png │ │ │ │ │ ├── flower.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── gorgon.png │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── gradient_up.png │ │ │ │ │ ├── half_horizontal.png │ │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ │ ├── half_vertical.png │ │ │ │ │ ├── half_vertical_right.png │ │ │ │ │ ├── hippocampus.png │ │ │ │ │ ├── hippogryph_head.png │ │ │ │ │ ├── horse.png │ │ │ │ │ ├── ice.png │ │ │ │ │ ├── ice_head.png │ │ │ │ │ ├── lighting.png │ │ │ │ │ ├── lighting_head.png │ │ │ │ │ ├── lily.png │ │ │ │ │ ├── lion1.png │ │ │ │ │ ├── lion2.png │ │ │ │ │ ├── mermaid.png │ │ │ │ │ ├── mojang.png │ │ │ │ │ ├── orthodox_cross.png │ │ │ │ │ ├── piglin.png │ │ │ │ │ ├── rhombus.png │ │ │ │ │ ├── sea_serpent.png │ │ │ │ │ ├── skull.png │ │ │ │ │ ├── small_stripes.png │ │ │ │ │ ├── snake.png │ │ │ │ │ ├── square_bottom_left.png │ │ │ │ │ ├── square_bottom_right.png │ │ │ │ │ ├── square_top_left.png │ │ │ │ │ ├── square_top_right.png │ │ │ │ │ ├── straight_cross.png │ │ │ │ │ ├── stripe_bottom.png │ │ │ │ │ ├── stripe_center.png │ │ │ │ │ ├── stripe_downleft.png │ │ │ │ │ ├── stripe_downright.png │ │ │ │ │ ├── stripe_left.png │ │ │ │ │ ├── stripe_middle.png │ │ │ │ │ ├── stripe_right.png │ │ │ │ │ ├── stripe_top.png │ │ │ │ │ ├── sun.png │ │ │ │ │ ├── swords.png │ │ │ │ │ ├── tower.png │ │ │ │ │ ├── tree.png │ │ │ │ │ ├── triangle_bottom.png │ │ │ │ │ ├── triangle_top.png │ │ │ │ │ ├── triangles_bottom.png │ │ │ │ │ ├── triangles_top.png │ │ │ │ │ ├── troll.png │ │ │ │ │ ├── two-headed_eagle.png │ │ │ │ │ ├── unicorn.png │ │ │ │ │ └── weezer.png │ │ │ │ │ └── horse_armor_chainmail.png │ │ │ ├── iron_buckler_nopattern.png │ │ │ ├── iron_ellipticalshield_nopattern.png │ │ │ ├── iron_ellipticalshield_pattern.png │ │ │ ├── iron_heatershield_nopattern.png │ │ │ ├── iron_heatershield_pattern.png │ │ │ ├── iron_kiteshield_nopattern.png │ │ │ ├── iron_kiteshield_pattern.png │ │ │ ├── iron_pavese_nopattern.png │ │ │ ├── iron_pavese_pattern.png │ │ │ ├── iron_rondache_nopattern.png │ │ │ ├── iron_roundshield_nopattern.png │ │ │ ├── iron_roundshield_pattern.png │ │ │ ├── iron_target_nopattern.png │ │ │ ├── iron_tartsche_nopattern.png │ │ │ ├── iron_tartsche_pattern.png │ │ │ ├── kiteshield │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── netherite_buckler_nopattern.png │ │ │ ├── netherite_ellipticalshield_nopattern.png │ │ │ ├── netherite_ellipticalshield_pattern.png │ │ │ ├── netherite_heatershield_nopattern.png │ │ │ ├── netherite_heatershield_pattern.png │ │ │ ├── netherite_kiteshield_nopattern.png │ │ │ ├── netherite_kiteshield_pattern.png │ │ │ ├── netherite_pavese_nopattern.png │ │ │ ├── netherite_pavese_pattern.png │ │ │ ├── netherite_rondache_nopattern.png │ │ │ ├── netherite_roundshield_nopattern.png │ │ │ ├── netherite_roundshield_pattern.png │ │ │ ├── netherite_target_nopattern.png │ │ │ ├── netherite_tartsche_nopattern.png │ │ │ ├── netherite_tartsche_pattern.png │ │ │ ├── pavese │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── roundshield │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── shield │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── dragon.png │ │ │ │ ├── eagle.png │ │ │ │ ├── horse.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── snake.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ └── two-headed_eagle.png │ │ │ ├── silver_buckler_nopattern.png │ │ │ ├── silver_ellipticalshield_nopattern.png │ │ │ ├── silver_ellipticalshield_pattern.png │ │ │ ├── silver_heatershield_nopattern.png │ │ │ ├── silver_heatershield_pattern.png │ │ │ ├── silver_kiteshield_nopattern.png │ │ │ ├── silver_kiteshield_pattern.png │ │ │ ├── silver_pavese_nopattern.png │ │ │ ├── silver_pavese_pattern.png │ │ │ ├── silver_rondache_nopattern.png │ │ │ ├── silver_roundshield_nopattern.png │ │ │ ├── silver_roundshield_pattern.png │ │ │ ├── silver_target_nopattern.png │ │ │ ├── silver_tartsche_nopattern.png │ │ │ ├── silver_tartsche_pattern.png │ │ │ ├── steel_buckler_nopattern.png │ │ │ ├── steel_ellipticalshield_nopattern.png │ │ │ ├── steel_ellipticalshield_pattern.png │ │ │ ├── steel_heatershield_nopattern.png │ │ │ ├── steel_heatershield_pattern.png │ │ │ ├── steel_kiteshield_nopattern.png │ │ │ ├── steel_kiteshield_pattern.png │ │ │ ├── steel_pavese_nopattern.png │ │ │ ├── steel_pavese_pattern.png │ │ │ ├── steel_rondache_nopattern.png │ │ │ ├── steel_roundshield_nopattern.png │ │ │ ├── steel_roundshield_pattern.png │ │ │ ├── steel_target_nopattern.png │ │ │ ├── steel_tartsche_nopattern.png │ │ │ ├── steel_tartsche_pattern.png │ │ │ ├── stone_buckler_nopattern.png │ │ │ ├── stone_ellipticalshield_nopattern.png │ │ │ ├── stone_ellipticalshield_pattern.png │ │ │ ├── stone_heatershield_nopattern.png │ │ │ ├── stone_heatershield_pattern.png │ │ │ ├── stone_kiteshield_nopattern.png │ │ │ ├── stone_kiteshield_pattern.png │ │ │ ├── stone_pavese_nopattern.png │ │ │ ├── stone_pavese_pattern.png │ │ │ ├── stone_rondache_nopattern.png │ │ │ ├── stone_roundshield_nopattern.png │ │ │ ├── stone_roundshield_pattern.png │ │ │ ├── stone_target_nopattern.png │ │ │ ├── stone_tartsche_nopattern.png │ │ │ ├── stone_tartsche_pattern.png │ │ │ ├── tartsche │ │ │ │ ├── amphithere.png │ │ │ │ ├── apostolic_cross.png │ │ │ │ ├── base.png │ │ │ │ ├── bird.png │ │ │ │ ├── border.png │ │ │ │ ├── bowl.png │ │ │ │ ├── bricks.png │ │ │ │ ├── bull.png │ │ │ │ ├── chess.png │ │ │ │ ├── circle.png │ │ │ │ ├── creeper.png │ │ │ │ ├── cross.png │ │ │ │ ├── crusader_cross.png │ │ │ │ ├── curly_border.png │ │ │ │ ├── diagonal_left.png │ │ │ │ ├── diagonal_right.png │ │ │ │ ├── diagonal_up_left.png │ │ │ │ ├── diagonal_up_right.png │ │ │ │ ├── dragon.png │ │ │ │ ├── dread.png │ │ │ │ ├── eagle.png │ │ │ │ ├── eye.png │ │ │ │ ├── fae.png │ │ │ │ ├── feather.png │ │ │ │ ├── fire.png │ │ │ │ ├── fire_head.png │ │ │ │ ├── flower.png │ │ │ │ ├── globe.png │ │ │ │ ├── gorgon.png │ │ │ │ ├── gradient.png │ │ │ │ ├── gradient_up.png │ │ │ │ ├── half_horizontal.png │ │ │ │ ├── half_horizontal_bottom.png │ │ │ │ ├── half_vertical.png │ │ │ │ ├── half_vertical_right.png │ │ │ │ ├── hippocampus.png │ │ │ │ ├── hippogryph_head.png │ │ │ │ ├── horse.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_head.png │ │ │ │ ├── lighting.png │ │ │ │ ├── lighting_head.png │ │ │ │ ├── lily.png │ │ │ │ ├── lion1.png │ │ │ │ ├── lion2.png │ │ │ │ ├── mermaid.png │ │ │ │ ├── mojang.png │ │ │ │ ├── orthodox_cross.png │ │ │ │ ├── piglin.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sea_serpent.png │ │ │ │ ├── skull.png │ │ │ │ ├── small_stripes.png │ │ │ │ ├── snake.png │ │ │ │ ├── square_bottom_left.png │ │ │ │ ├── square_bottom_right.png │ │ │ │ ├── square_top_left.png │ │ │ │ ├── square_top_right.png │ │ │ │ ├── straight_cross.png │ │ │ │ ├── stripe_bottom.png │ │ │ │ ├── stripe_center.png │ │ │ │ ├── stripe_downleft.png │ │ │ │ ├── stripe_downright.png │ │ │ │ ├── stripe_left.png │ │ │ │ ├── stripe_middle.png │ │ │ │ ├── stripe_right.png │ │ │ │ ├── stripe_top.png │ │ │ │ ├── sun.png │ │ │ │ ├── swords.png │ │ │ │ ├── tower.png │ │ │ │ ├── tree.png │ │ │ │ ├── triangle_bottom.png │ │ │ │ ├── triangle_top.png │ │ │ │ ├── triangles_bottom.png │ │ │ │ ├── triangles_top.png │ │ │ │ ├── troll.png │ │ │ │ ├── two-headed_eagle.png │ │ │ │ ├── unicorn.png │ │ │ │ └── weezer.png │ │ │ ├── tin_buckler_nopattern.png │ │ │ ├── tin_ellipticalshield_nopattern.png │ │ │ ├── tin_ellipticalshield_pattern.png │ │ │ ├── tin_heatershield_nopattern.png │ │ │ ├── tin_heatershield_pattern.png │ │ │ ├── tin_kiteshield_nopattern.png │ │ │ ├── tin_kiteshield_pattern.png │ │ │ ├── tin_pavese_nopattern.png │ │ │ ├── tin_pavese_pattern.png │ │ │ ├── tin_rondache_nopattern.png │ │ │ ├── tin_roundshield_nopattern.png │ │ │ ├── tin_roundshield_pattern.png │ │ │ ├── tin_target_nopattern.png │ │ │ ├── tin_tartsche_nopattern.png │ │ │ ├── tin_tartsche_pattern.png │ │ │ ├── wood_buckler_nopattern.png │ │ │ ├── wood_ellipticalshield_nopattern.png │ │ │ ├── wood_ellipticalshield_pattern.png │ │ │ ├── wood_heatershield_nopattern.png │ │ │ ├── wood_heatershield_pattern.png │ │ │ ├── wood_kiteshield_nopattern.png │ │ │ ├── wood_kiteshield_pattern.png │ │ │ ├── wood_pavese_nopattern.png │ │ │ ├── wood_pavese_pattern.png │ │ │ ├── wood_rondache_nopattern.png │ │ │ ├── wood_roundshield_nopattern.png │ │ │ ├── wood_roundshield_pattern.png │ │ │ ├── wood_target_nopattern.png │ │ │ ├── wood_tartsche_nopattern.png │ │ │ └── wood_tartsche_pattern.png │ │ │ ├── item │ │ │ ├── antlers_decoration.png │ │ │ ├── banner_pattern.png │ │ │ ├── barbedclub.png │ │ │ ├── barding.png │ │ │ ├── bascinet.png │ │ │ ├── bear_decoration.png │ │ │ ├── big_plume_decoration.png │ │ │ ├── blacksmith_hammer.png │ │ │ ├── brigandine_boots.png │ │ │ ├── brigandine_chestplate.png │ │ │ ├── brigandine_chestplate_overlay.png │ │ │ ├── bronze_ahlspiess.png │ │ │ ├── bronze_bastardsword.png │ │ │ ├── bronze_chivalrylance.png │ │ │ ├── bronze_claymore.png │ │ │ ├── bronze_concavehalberd.png │ │ │ ├── bronze_estoc.png │ │ │ ├── bronze_flamebladedsword.png │ │ │ ├── bronze_guisarme.png │ │ │ ├── bronze_heavymace.png │ │ │ ├── bronze_heavywarhammer.png │ │ │ ├── bronze_ingot.png │ │ │ ├── bronze_katzbalger.png │ │ │ ├── bronze_lochaberaxe.png │ │ │ ├── bronze_lucernhammer.png │ │ │ ├── bronze_morgenstern.png │ │ │ ├── bronze_pike.png │ │ │ ├── bronze_ranseur.png │ │ │ ├── bronze_shortsword.png │ │ │ ├── bronze_stylet.png │ │ │ ├── bronze_zweihander.png │ │ │ ├── bullhorns_decoration.png │ │ │ ├── burginot.png │ │ │ ├── ceremonial_boots.png │ │ │ ├── ceremonial_chestplate.png │ │ │ ├── ceremonialarmet.png │ │ │ ├── ceremonialarmet_overlay.png │ │ │ ├── chainmail_boots.png │ │ │ ├── chainmail_chestplate.png │ │ │ ├── chainmail_helmet.png │ │ │ ├── chainmail_horse_armor.png │ │ │ ├── chainmail_leggings.png │ │ │ ├── club.png │ │ │ ├── coif.png │ │ │ ├── coif_overlay.png │ │ │ ├── copper_ahlspiess.png │ │ │ ├── copper_bastardsword.png │ │ │ ├── copper_chivalrylance.png │ │ │ ├── copper_claymore.png │ │ │ ├── copper_concavehalberd.png │ │ │ ├── copper_estoc.png │ │ │ ├── copper_flamebladedsword.png │ │ │ ├── copper_guisarme.png │ │ │ ├── copper_heavymace.png │ │ │ ├── copper_heavywarhammer.png │ │ │ ├── copper_ingot.png │ │ │ ├── copper_katzbalger-1.png │ │ │ ├── copper_katzbalger.png │ │ │ ├── copper_lochaberaxe.png │ │ │ ├── copper_lucernhammer.png │ │ │ ├── copper_morgenstern.png │ │ │ ├── copper_pike.png │ │ │ ├── copper_ranseur.png │ │ │ ├── copper_shortsword.png │ │ │ ├── copper_stylet.png │ │ │ ├── copper_zweihander.png │ │ │ ├── crossbow.png │ │ │ ├── crown_decoration.png │ │ │ ├── crown_decoration_overlay.png │ │ │ ├── crusader_boots.png │ │ │ ├── crusader_boots_overlay.png │ │ │ ├── crusader_chestplate.png │ │ │ ├── crusader_chestplate_overlay.png │ │ │ ├── crusader_helmet.png │ │ │ ├── crusader_leggings.png │ │ │ ├── cuirassier_boots.png │ │ │ ├── cuirassier_chestplate.png │ │ │ ├── cuirassier_chestplate_overlay.png │ │ │ ├── cuirassier_leggings.png │ │ │ ├── cuirassier_leggings_overlay.png │ │ │ ├── darkening_template.png │ │ │ ├── demon_horns_decoration.png │ │ │ ├── diamond_ahlspiess.png │ │ │ ├── diamond_bastardsword.png │ │ │ ├── diamond_chivalrylance.png │ │ │ ├── diamond_claymore.png │ │ │ ├── diamond_concavehalberd.png │ │ │ ├── diamond_estoc.png │ │ │ ├── diamond_flamebladedsword.png │ │ │ ├── diamond_guisarme.png │ │ │ ├── diamond_heavymace.png │ │ │ ├── diamond_heavywarhammer.png │ │ │ ├── diamond_katzbalger.png │ │ │ ├── diamond_lochaberaxe.png │ │ │ ├── diamond_lucernhammer.png │ │ │ ├── diamond_morgenstern.png │ │ │ ├── diamond_pike.png │ │ │ ├── diamond_ranseur.png │ │ │ ├── diamond_shortsword.png │ │ │ ├── diamond_stylet.png │ │ │ ├── diamond_zweihander.png │ │ │ ├── dragon_decoration.png │ │ │ ├── duck_decoration.png │ │ │ ├── ecranche_decoration.png │ │ │ ├── empty.png │ │ │ ├── face_helmet.png │ │ │ ├── feathers_decoration.png │ │ │ ├── flowercrown_decoration.png │ │ │ ├── flowercrown_decoration_overlay.png │ │ │ ├── gambeson_boots.png │ │ │ ├── gambeson_boots_overlay.png │ │ │ ├── gambeson_chestplate.png │ │ │ ├── gambeson_chestplate_overlay.png │ │ │ ├── gazelle_horns_decoration.png │ │ │ ├── gilding_template.png │ │ │ ├── gold_ahlspiess.png │ │ │ ├── gold_bastardsword.png │ │ │ ├── gold_chivalrylance.png │ │ │ ├── gold_claymore.png │ │ │ ├── gold_concavehalberd.png │ │ │ ├── gold_estoc.png │ │ │ ├── gold_flamebladedsword.png │ │ │ ├── gold_guisarme.png │ │ │ ├── gold_heavymace.png │ │ │ ├── gold_heavywarhammer.png │ │ │ ├── gold_katzbalger.png │ │ │ ├── gold_lochaberaxe.png │ │ │ ├── gold_lucernhammer.png │ │ │ ├── gold_morgenstern.png │ │ │ ├── gold_pike.png │ │ │ ├── gold_ranseur.png │ │ │ ├── gold_shortsword.png │ │ │ ├── gold_stylet.png │ │ │ ├── gold_zweihander.png │ │ │ ├── gothic_boots.png │ │ │ ├── gothic_chestplate.png │ │ │ ├── gothic_helmet.png │ │ │ ├── gothic_leggings.png │ │ │ ├── grand_bascinet.png │ │ │ ├── griffin_decoration.png │ │ │ ├── halfarmor_chestplate.png │ │ │ ├── halfarmor_helmet.png │ │ │ ├── heavy_crossbow_arrow.png │ │ │ ├── heavy_crossbow_firework.png │ │ │ ├── heavy_crossbow_pulling_0.png │ │ │ ├── heavy_crossbow_pulling_1.png │ │ │ ├── heavy_crossbow_pulling_2.png │ │ │ ├── heavy_crossbow_standby.png │ │ │ ├── hilt.png │ │ │ ├── hood_decoration.png │ │ │ ├── horse_decoration.png │ │ │ ├── iron_ahlspiess.png │ │ │ ├── iron_bastardsword.png │ │ │ ├── iron_chivalrylance.png │ │ │ ├── iron_claymore.png │ │ │ ├── iron_concavehalberd.png │ │ │ ├── iron_estoc.png │ │ │ ├── iron_flamebladedsword.png │ │ │ ├── iron_guisarme.png │ │ │ ├── iron_heavymace.png │ │ │ ├── iron_heavywarhammer.png │ │ │ ├── iron_katzbalger.png │ │ │ ├── iron_lochaberaxe.png │ │ │ ├── iron_lucernhammer.png │ │ │ ├── iron_morgenstern.png │ │ │ ├── iron_pike.png │ │ │ ├── iron_ranseur.png │ │ │ ├── iron_shortsword.png │ │ │ ├── iron_stylet.png │ │ │ ├── iron_zweihander.png │ │ │ ├── jousting_boots.png │ │ │ ├── jousting_chestplate.png │ │ │ ├── jousting_helmet.png │ │ │ ├── jousting_leggings.png │ │ │ ├── kastenbrust_boots.png │ │ │ ├── kastenbrust_chestplate.png │ │ │ ├── kastenbrust_leggings.png │ │ │ ├── knight_boots.png │ │ │ ├── knight_chestplate.png │ │ │ ├── knight_helmet.png │ │ │ ├── knight_helmet_overlay.png │ │ │ ├── knight_leggings.png │ │ │ ├── lamellar_boots.png │ │ │ ├── lamellar_chestplate.png │ │ │ ├── lamellar_rows.png │ │ │ ├── leather_strip.png │ │ │ ├── lily_decoration.png │ │ │ ├── lion_decoration.png │ │ │ ├── longbow.png │ │ │ ├── longbow_pulling_0.png │ │ │ ├── longbow_pulling_1.png │ │ │ ├── longbow_pulling_2.png │ │ │ ├── maximilian_boots.png │ │ │ ├── maximilian_chestplate.png │ │ │ ├── maximilian_helmet.png │ │ │ ├── maximilian_leggings.png │ │ │ ├── medieval_bag.png │ │ │ ├── messer_sword.png │ │ │ ├── minicrown_decoration.png │ │ │ ├── netherite_ahlspiess.png │ │ │ ├── netherite_bastardsword.png │ │ │ ├── netherite_chivalrylance.png │ │ │ ├── netherite_claymore.png │ │ │ ├── netherite_concavehalberd.png │ │ │ ├── netherite_estoc.png │ │ │ ├── netherite_flamebladedsword.png │ │ │ ├── netherite_guisarme.png │ │ │ ├── netherite_heavymace.png │ │ │ ├── netherite_heavywarhammer.png │ │ │ ├── netherite_katzbalger.png │ │ │ ├── netherite_lochaberaxe.png │ │ │ ├── netherite_lucernhammer.png │ │ │ ├── netherite_morgenstern.png │ │ │ ├── netherite_pike.png │ │ │ ├── netherite_ranseur.png │ │ │ ├── netherite_shortsword.png │ │ │ ├── netherite_stylet.png │ │ │ ├── netherite_zweihander.png │ │ │ ├── noble_sword.png │ │ │ ├── norman_helmet.png │ │ │ ├── pantyhose.png │ │ │ ├── pantyhose_overlay.png │ │ │ ├── pitchfork.png │ │ │ ├── platemail_boots.png │ │ │ ├── platemail_chestplate.png │ │ │ ├── platemail_helmet.png │ │ │ ├── platemail_leggings.png │ │ │ ├── plume_decoration.png │ │ │ ├── pole.png │ │ │ ├── red_greatpavese.png │ │ │ ├── red_pavese.png │ │ │ ├── red_spikedshield.png │ │ │ ├── rondache.png │ │ │ ├── rondel_decoration.png │ │ │ ├── rusted_bastardsword.png │ │ │ ├── rusted_heavymace.png │ │ │ ├── rustedchainmail_boots.png │ │ │ ├── rustedchainmail_chestplate.png │ │ │ ├── rustedchainmail_helmet.png │ │ │ ├── rustedchainmail_leggings.png │ │ │ ├── rustedcrusader_boots.png │ │ │ ├── rustedcrusader_chestplate.png │ │ │ ├── rustedcrusader_helmet.png │ │ │ ├── rustedhalfarmor_chestplate.png │ │ │ ├── rustedhalfarmor_helmet.png │ │ │ ├── rustednorman_helmet.png │ │ │ ├── rustedplatemail_helmet.png │ │ │ ├── shishak_helmet.png │ │ │ ├── silver_ahlspiess.png │ │ │ ├── silver_bastardsword.png │ │ │ ├── silver_chivalrylance.png │ │ │ ├── silver_claymore.png │ │ │ ├── silver_concavehalberd.png │ │ │ ├── silver_estoc.png │ │ │ ├── silver_flamebladedsword.png │ │ │ ├── silver_guisarme.png │ │ │ ├── silver_heavymace.png │ │ │ ├── silver_heavywarhammer.png │ │ │ ├── silver_ingot.png │ │ │ ├── silver_katzbalger.png │ │ │ ├── silver_lochaberaxe.png │ │ │ ├── silver_lucernhammer.png │ │ │ ├── silver_morgenstern.png │ │ │ ├── silver_pike.png │ │ │ ├── silver_ranseur.png │ │ │ ├── silver_shortsword.png │ │ │ ├── silver_stylet.png │ │ │ ├── silver_zweihander.png │ │ │ ├── small_steel_plate.png │ │ │ ├── spike_decoration.png │ │ │ ├── spike_decoration_overlay.png │ │ │ ├── steel_ahlspiess.png │ │ │ ├── steel_bastardsword.png │ │ │ ├── steel_chain.png │ │ │ ├── steel_chainmail.png │ │ │ ├── steel_chivalrylance.png │ │ │ ├── steel_claymore.png │ │ │ ├── steel_concavehalberd.png │ │ │ ├── steel_estoc.png │ │ │ ├── steel_flamebladedsword.png │ │ │ ├── steel_guisarme.png │ │ │ ├── steel_heavymace.png │ │ │ ├── steel_heavywarhammer.png │ │ │ ├── steel_ingot.png │ │ │ ├── steel_katzbalger.png │ │ │ ├── steel_lochaberaxe.png │ │ │ ├── steel_lucernhammer.png │ │ │ ├── steel_morgenstern.png │ │ │ ├── steel_nugget.png │ │ │ ├── steel_pike.png │ │ │ ├── steel_plate.png │ │ │ ├── steel_ranseur.png │ │ │ ├── steel_ring.png │ │ │ ├── steel_shortsword.png │ │ │ ├── steel_stylet.png │ │ │ ├── steel_zweihander.png │ │ │ ├── stone_ahlspiess.png │ │ │ ├── stone_bastardsword.png │ │ │ ├── stone_chivalrylance.png │ │ │ ├── stone_claymore.png │ │ │ ├── stone_concavehalberd.png │ │ │ ├── stone_estoc.png │ │ │ ├── stone_flamebladedsword.png │ │ │ ├── stone_guisarme.png │ │ │ ├── stone_heavymace.png │ │ │ ├── stone_heavywarhammer.png │ │ │ ├── stone_katzbalger.png │ │ │ ├── stone_lochaberaxe.png │ │ │ ├── stone_lucernhammer.png │ │ │ ├── stone_morgenstern.png │ │ │ ├── stone_pike.png │ │ │ ├── stone_ranseur.png │ │ │ ├── stone_shortsword.png │ │ │ ├── stone_stylet.png │ │ │ ├── stone_zweihander.png │ │ │ ├── tin_ahlspiess.png │ │ │ ├── tin_bastardsword.png │ │ │ ├── tin_chivalrylance.png │ │ │ ├── tin_claymore.png │ │ │ ├── tin_concavehalberd.png │ │ │ ├── tin_estoc.png │ │ │ ├── tin_flamebladedsword.png │ │ │ ├── tin_guisarme.png │ │ │ ├── tin_heavymace.png │ │ │ ├── tin_heavywarhammer.png │ │ │ ├── tin_ingot.png │ │ │ ├── tin_katzbalger.png │ │ │ ├── tin_lochaberaxe.png │ │ │ ├── tin_lucernhammer.png │ │ │ ├── tin_morgenstern.png │ │ │ ├── tin_pike.png │ │ │ ├── tin_ranseur.png │ │ │ ├── tin_shortsword.png │ │ │ ├── tin_stylet.png │ │ │ ├── tin_zweihander.png │ │ │ ├── torse_and_mantle.png │ │ │ ├── torse_and_mantle_decoration.png │ │ │ ├── torse_decoration.png │ │ │ ├── two_plumes_decoration.png │ │ │ ├── two_plumes_decoration_overlay.png │ │ │ ├── unicorn_decoration.png │ │ │ ├── viking_horns_decoration.png │ │ │ ├── wingedhussar_chestplate.png │ │ │ ├── wood_ahlspiess.png │ │ │ ├── wood_bastardsword.png │ │ │ ├── wood_chivalrylance.png │ │ │ ├── wood_claymore.png │ │ │ ├── wood_concavehalberd.png │ │ │ ├── wood_estoc.png │ │ │ ├── wood_flamebladedsword.png │ │ │ ├── wood_guisarme.png │ │ │ ├── wood_heavymace.png │ │ │ ├── wood_heavywarhammer.png │ │ │ ├── wood_katzbalger.png │ │ │ ├── wood_lochaberaxe.png │ │ │ ├── wood_lucernhammer.png │ │ │ ├── wood_morgenstern.png │ │ │ ├── wood_pike.png │ │ │ ├── wood_ranseur.png │ │ │ ├── wood_shortsword.png │ │ │ ├── wood_stylet.png │ │ │ ├── wood_zweihander.png │ │ │ ├── woolen_fabric.png │ │ │ ├── xivcenturyknight_boots.png │ │ │ ├── xivcenturyknight_chestplate.png │ │ │ └── xivcenturyknight_leggings.png │ │ │ ├── mob_effect │ │ │ └── laceration.png │ │ │ └── models │ │ │ └── armor │ │ │ ├── antlers.png │ │ │ ├── armet_layer_1.png │ │ │ ├── armet_layer_1_overlay.png │ │ │ ├── barbute_layer_1.png │ │ │ ├── bascinet_layer_1.png │ │ │ ├── bat_wings.png │ │ │ ├── bat_wings_overlay.png │ │ │ ├── bear.png │ │ │ ├── bear_overlay.png │ │ │ ├── big_plume.png │ │ │ ├── big_plume_overlay.png │ │ │ ├── brigandine_layer_1.png │ │ │ ├── brigandine_layer_1_overlay.png │ │ │ ├── bullhorns.png │ │ │ ├── cat_ears.png │ │ │ ├── cat_ears_overlay.png │ │ │ ├── ceremonial_layer_1.png │ │ │ ├── ceremonialarmet_layer_1.png │ │ │ ├── ceremonialarmet_layer_1_overlay.png │ │ │ ├── chainmail_layer_1.png │ │ │ ├── chainmail_layer_2.png │ │ │ ├── crown.png │ │ │ ├── crown_layer_1.png │ │ │ ├── crown_layer_1_overlay.png │ │ │ ├── crown_overlay.png │ │ │ ├── crusader_layer_1.png │ │ │ ├── crusader_layer_1_overlay.png │ │ │ ├── crusader_layer_2.png │ │ │ ├── cuirassier_layer_1.png │ │ │ ├── cuirassier_layer_1_overlay.png │ │ │ ├── cuirassier_layer_2.png │ │ │ ├── cuirassier_layer_2_overlay.png │ │ │ ├── demon_horns.png │ │ │ ├── dragon.png │ │ │ ├── dragon_overlay.png │ │ │ ├── duck.png │ │ │ ├── ecranche.png │ │ │ ├── feathers.png │ │ │ ├── feathers_overlay.png │ │ │ ├── flowercrown.png │ │ │ ├── flowercrown_layer_1.png │ │ │ ├── flowercrown_layer_1_overlay.png │ │ │ ├── flowercrown_overlay.png │ │ │ ├── gambeson_layer_1.png │ │ │ ├── gambeson_layer_1_overlay.png │ │ │ ├── gambeson_layer_2.png │ │ │ ├── gambeson_layer_2_overlay.png │ │ │ ├── gazelle_horns.png │ │ │ ├── gold_armet_layer_1.png │ │ │ ├── gold_knight_layer_1.png │ │ │ ├── gold_knight_layer_2.png │ │ │ ├── gothic_layer_1.png │ │ │ ├── gothic_layer_2.png │ │ │ ├── grand_bascinet_layer_1.png │ │ │ ├── griffin.png │ │ │ ├── griffin_overlay.png │ │ │ ├── halfarmor_layer_1.png │ │ │ ├── hood.png │ │ │ ├── hood_overlay.png │ │ │ ├── horse.png │ │ │ ├── horse_overlay.png │ │ │ ├── jousting_layer_1.png │ │ │ ├── jousting_layer_2.png │ │ │ ├── kastenbrust_layer_1.png │ │ │ ├── kastenbrust_layer_2.png │ │ │ ├── kettlehat_layer_1.png │ │ │ ├── knight_layer_1.png │ │ │ ├── knight_layer_2.png │ │ │ ├── lamellar_layer_1.png │ │ │ ├── lily.png │ │ │ ├── lily_overlay.png │ │ │ ├── lion.png │ │ │ ├── lion_overlay.png │ │ │ ├── maximilian_helmet_layer_1.png │ │ │ ├── maximilian_layer_1.png │ │ │ ├── maximilian_layer_2.png │ │ │ ├── minicrown.png │ │ │ ├── minicrown_layer_1.png │ │ │ ├── minicrown_overlay.png │ │ │ ├── norman_layer_1.png │ │ │ ├── platemail_layer_1.png │ │ │ ├── platemail_layer_2.png │ │ │ ├── plume_left.png │ │ │ ├── plume_left_overlay.png │ │ │ ├── plume_middle.png │ │ │ ├── plume_middle_overlay.png │ │ │ ├── plume_right.png │ │ │ ├── plume_right_overlay.png │ │ │ ├── rondel.png │ │ │ ├── rustedbarbute_layer_1.png │ │ │ ├── rustedchainmail_layer_1.png │ │ │ ├── rustedchainmail_layer_2.png │ │ │ ├── rustedcrusader_layer_1.png │ │ │ ├── rustedhalfarmor_layer_1.png │ │ │ ├── rustedkettlehat_layer_1.png │ │ │ ├── rustednorman_layer_1.png │ │ │ ├── sallet_layer_1.png │ │ │ ├── shishak_layer_1.png │ │ │ ├── spike.png │ │ │ ├── spike_overlay.png │ │ │ ├── stechhelm_layer_1.png │ │ │ ├── surcoat.png │ │ │ ├── surcoat │ │ │ ├── amphithere.png │ │ │ ├── apostolic_cross.png │ │ │ ├── base.png │ │ │ ├── bird.png │ │ │ ├── border.png │ │ │ ├── bowl.png │ │ │ ├── bricks.png │ │ │ ├── bull.png │ │ │ ├── chess.png │ │ │ ├── circle.png │ │ │ ├── creeper.png │ │ │ ├── cross.png │ │ │ ├── crusader_cross.png │ │ │ ├── curly_border.png │ │ │ ├── diagonal_left.png │ │ │ ├── diagonal_right.png │ │ │ ├── diagonal_up_left.png │ │ │ ├── diagonal_up_right.png │ │ │ ├── dragon.png │ │ │ ├── dread.png │ │ │ ├── eagle.png │ │ │ ├── eye.png │ │ │ ├── fae.png │ │ │ ├── feather.png │ │ │ ├── fire.png │ │ │ ├── fire_head.png │ │ │ ├── flower.png │ │ │ ├── globe.png │ │ │ ├── gorgon.png │ │ │ ├── gradient.png │ │ │ ├── gradient_up.png │ │ │ ├── half_horizontal.png │ │ │ ├── half_horizontal_bottom.png │ │ │ ├── half_vertical.png │ │ │ ├── half_vertical_right.png │ │ │ ├── hippocampus.png │ │ │ ├── hippogryph_head.png │ │ │ ├── horse.png │ │ │ ├── ice.png │ │ │ ├── ice_head.png │ │ │ ├── lighting.png │ │ │ ├── lighting_head.png │ │ │ ├── lily.png │ │ │ ├── lion1.png │ │ │ ├── lion2.png │ │ │ ├── mermaid.png │ │ │ ├── mojang.png │ │ │ ├── orthodox_cross.png │ │ │ ├── piglin.png │ │ │ ├── rhombus.png │ │ │ ├── sea_serpent.png │ │ │ ├── skull.png │ │ │ ├── small_stripes.png │ │ │ ├── snake.png │ │ │ ├── square_bottom_left.png │ │ │ ├── square_bottom_right.png │ │ │ ├── square_top_left.png │ │ │ ├── square_top_right.png │ │ │ ├── straight_cross.png │ │ │ ├── stripe_bottom.png │ │ │ ├── stripe_center.png │ │ │ ├── stripe_downleft.png │ │ │ ├── stripe_downright.png │ │ │ ├── stripe_left.png │ │ │ ├── stripe_middle.png │ │ │ ├── stripe_right.png │ │ │ ├── stripe_top.png │ │ │ ├── sun.png │ │ │ ├── swords.png │ │ │ ├── tower.png │ │ │ ├── tree.png │ │ │ ├── triangle_bottom.png │ │ │ ├── triangle_top.png │ │ │ ├── triangles_bottom.png │ │ │ ├── triangles_top.png │ │ │ ├── troll.png │ │ │ ├── two-headed_eagle.png │ │ │ ├── unicorn.png │ │ │ └── weezer.png │ │ │ ├── top_horns.png │ │ │ ├── torse.png │ │ │ ├── torse_and_mantle.png │ │ │ ├── torse_and_mantle_overlay.png │ │ │ ├── torse_overlay.png │ │ │ ├── two_plumes.png │ │ │ ├── two_plumes_overlay.png │ │ │ ├── unicorn.png │ │ │ ├── unicorn_overlay.png │ │ │ ├── viking_horns.png │ │ │ ├── viking_horns_overlay.png │ │ │ ├── viking_overlay.png │ │ │ ├── wingedhussarchestplate_layer_1.png │ │ │ ├── xivcenturyknight_layer_1.png │ │ │ └── xivcenturyknight_layer_2.png │ └── minecraft │ │ └── atlases │ │ ├── banner_patterns.json │ │ └── shield_patterns.json │ ├── data │ ├── c │ │ └── tags │ │ │ └── item │ │ │ ├── flowers.json │ │ │ ├── ingots │ │ │ └── steel.json │ │ │ ├── nuggets │ │ │ └── steel.json │ │ │ ├── plates │ │ │ └── steel.json │ │ │ └── rods │ │ │ └── wooden.json │ ├── magistuarmory │ │ ├── banner_pattern │ │ │ ├── apostolic_cross.json │ │ │ ├── bowl.json │ │ │ ├── bull.json │ │ │ ├── chess.json │ │ │ ├── crusader_cross.json │ │ │ ├── dragon.json │ │ │ ├── eagle.json │ │ │ ├── horse.json │ │ │ ├── lily.json │ │ │ ├── lion1.json │ │ │ ├── lion2.json │ │ │ ├── orthodox_cross.json │ │ │ ├── snake.json │ │ │ ├── sun.json │ │ │ ├── swords.json │ │ │ ├── tower.json │ │ │ ├── tree.json │ │ │ └── two_headed_eagle.json │ │ ├── capabilities │ │ │ └── weapons │ │ │ │ ├── barbedclub.json │ │ │ │ ├── blacksmith_hammer.json │ │ │ │ ├── bronze_ahlspiess.json │ │ │ │ ├── bronze_bastardsword.json │ │ │ │ ├── bronze_chainmorgenstern.json │ │ │ │ ├── bronze_chivalrylance.json │ │ │ │ ├── bronze_claymore.json │ │ │ │ ├── bronze_concavehalberd.json │ │ │ │ ├── bronze_estoc.json │ │ │ │ ├── bronze_flamebladedsword.json │ │ │ │ ├── bronze_guisarme.json │ │ │ │ ├── bronze_heavymace.json │ │ │ │ ├── bronze_heavywarhammer.json │ │ │ │ ├── bronze_katzbalger.json │ │ │ │ ├── bronze_lochaberaxe.json │ │ │ │ ├── bronze_lucernhammer.json │ │ │ │ ├── bronze_morgenstern.json │ │ │ │ ├── bronze_pike.json │ │ │ │ ├── bronze_ranseur.json │ │ │ │ ├── bronze_stylet.json │ │ │ │ ├── bronze_target.json │ │ │ │ ├── bronze_zweihander.json │ │ │ │ ├── club.json │ │ │ │ ├── copper_ahlspiess.json │ │ │ │ ├── copper_bastardsword.json │ │ │ │ ├── copper_chainmorgenstern.json │ │ │ │ ├── copper_chivalrylance.json │ │ │ │ ├── copper_claymore.json │ │ │ │ ├── copper_concavehalberd.json │ │ │ │ ├── copper_estoc.json │ │ │ │ ├── copper_flamebladedsword.json │ │ │ │ ├── copper_guisarme.json │ │ │ │ ├── copper_heavymace.json │ │ │ │ ├── copper_heavywarhammer.json │ │ │ │ ├── copper_katzbalger.json │ │ │ │ ├── copper_lochaberaxe.json │ │ │ │ ├── copper_lucernhammer.json │ │ │ │ ├── copper_morgenstern.json │ │ │ │ ├── copper_pike.json │ │ │ │ ├── copper_ranseur.json │ │ │ │ ├── copper_stylet.json │ │ │ │ ├── copper_zweihander.json │ │ │ │ ├── diamond_ahlspiess.json │ │ │ │ ├── diamond_bastardsword.json │ │ │ │ ├── diamond_chainmorgenstern.json │ │ │ │ ├── diamond_chivalrylance.json │ │ │ │ ├── diamond_claymore.json │ │ │ │ ├── diamond_concavehalberd.json │ │ │ │ ├── diamond_estoc.json │ │ │ │ ├── diamond_flamebladedsword.json │ │ │ │ ├── diamond_guisarme.json │ │ │ │ ├── diamond_heavymace.json │ │ │ │ ├── diamond_heavywarhammer.json │ │ │ │ ├── diamond_katzbalger.json │ │ │ │ ├── diamond_lochaberaxe.json │ │ │ │ ├── diamond_lucernhammer.json │ │ │ │ ├── diamond_morgenstern.json │ │ │ │ ├── diamond_pike.json │ │ │ │ ├── diamond_ranseur.json │ │ │ │ ├── diamond_stylet.json │ │ │ │ ├── diamond_zweihander.json │ │ │ │ ├── gold_ahlspiess.json │ │ │ │ ├── gold_bastardsword.json │ │ │ │ ├── gold_chainmorgenstern.json │ │ │ │ ├── gold_chivalrylance.json │ │ │ │ ├── gold_claymore.json │ │ │ │ ├── gold_concavehalberd.json │ │ │ │ ├── gold_estoc.json │ │ │ │ ├── gold_flamebladedsword.json │ │ │ │ ├── gold_guisarme.json │ │ │ │ ├── gold_heavymace.json │ │ │ │ ├── gold_heavywarhammer.json │ │ │ │ ├── gold_katzbalger.json │ │ │ │ ├── gold_lochaberaxe.json │ │ │ │ ├── gold_lucernhammer.json │ │ │ │ ├── gold_morgenstern.json │ │ │ │ ├── gold_pike.json │ │ │ │ ├── gold_ranseur.json │ │ │ │ ├── gold_stylet.json │ │ │ │ ├── gold_zweihander.json │ │ │ │ ├── iron_ahlspiess.json │ │ │ │ ├── iron_bastardsword.json │ │ │ │ ├── iron_chainmorgenstern.json │ │ │ │ ├── iron_chivalrylance.json │ │ │ │ ├── iron_claymore.json │ │ │ │ ├── iron_concavehalberd.json │ │ │ │ ├── iron_estoc.json │ │ │ │ ├── iron_flamebladedsword.json │ │ │ │ ├── iron_guisarme.json │ │ │ │ ├── iron_heavymace.json │ │ │ │ ├── iron_heavywarhammer.json │ │ │ │ ├── iron_katzbalger.json │ │ │ │ ├── iron_lochaberaxe.json │ │ │ │ ├── iron_lucernhammer.json │ │ │ │ ├── iron_morgenstern.json │ │ │ │ ├── iron_pike.json │ │ │ │ ├── iron_ranseur.json │ │ │ │ ├── iron_stylet.json │ │ │ │ ├── iron_zweihander.json │ │ │ │ ├── netherite_ahlspiess.json │ │ │ │ ├── netherite_bastardsword.json │ │ │ │ ├── netherite_chainmorgenstern.json │ │ │ │ ├── netherite_chivalrylance.json │ │ │ │ ├── netherite_claymore.json │ │ │ │ ├── netherite_concavehalberd.json │ │ │ │ ├── netherite_estoc.json │ │ │ │ ├── netherite_flamebladedsword.json │ │ │ │ ├── netherite_guisarme.json │ │ │ │ ├── netherite_heavymace.json │ │ │ │ ├── netherite_heavywarhammer.json │ │ │ │ ├── netherite_katzbalger.json │ │ │ │ ├── netherite_lochaberaxe.json │ │ │ │ ├── netherite_lucernhammer.json │ │ │ │ ├── netherite_morgenstern.json │ │ │ │ ├── netherite_pike.json │ │ │ │ ├── netherite_ranseur.json │ │ │ │ ├── netherite_stylet.json │ │ │ │ ├── netherite_zweihander.json │ │ │ │ ├── noble_sword.json │ │ │ │ ├── pitchfork.json │ │ │ │ ├── rusted_ahlspiess.json │ │ │ │ ├── rusted_bastardsword.json │ │ │ │ ├── rusted_chainmorgenstern.json │ │ │ │ ├── rusted_chivalrylance.json │ │ │ │ ├── rusted_claymore.json │ │ │ │ ├── rusted_concavehalberd.json │ │ │ │ ├── rusted_estoc.json │ │ │ │ ├── rusted_flamebladedsword.json │ │ │ │ ├── rusted_guisarme.json │ │ │ │ ├── rusted_heavymace.json │ │ │ │ ├── rusted_heavywarhammer.json │ │ │ │ ├── rusted_katzbalger.json │ │ │ │ ├── rusted_lochaberaxe.json │ │ │ │ ├── rusted_lucernhammer.json │ │ │ │ ├── rusted_morgenstern.json │ │ │ │ ├── rusted_pike.json │ │ │ │ ├── rusted_ranseur.json │ │ │ │ ├── rusted_stylet.json │ │ │ │ ├── rusted_zweihander.json │ │ │ │ ├── silver_ahlspiess.json │ │ │ │ ├── silver_bastardsword.json │ │ │ │ ├── silver_chainmorgenstern.json │ │ │ │ ├── silver_chivalrylance.json │ │ │ │ ├── silver_claymore.json │ │ │ │ ├── silver_concavehalberd.json │ │ │ │ ├── silver_estoc.json │ │ │ │ ├── silver_flamebladedsword.json │ │ │ │ ├── silver_guisarme.json │ │ │ │ ├── silver_heavymace.json │ │ │ │ ├── silver_heavywarhammer.json │ │ │ │ ├── silver_katzbalger.json │ │ │ │ ├── silver_lochaberaxe.json │ │ │ │ ├── silver_lucernhammer.json │ │ │ │ ├── silver_morgenstern.json │ │ │ │ ├── silver_pike.json │ │ │ │ ├── silver_ranseur.json │ │ │ │ ├── silver_stylet.json │ │ │ │ ├── silver_zweihander.json │ │ │ │ ├── steel_ahlspiess.json │ │ │ │ ├── steel_bastardsword.json │ │ │ │ ├── steel_chainmorgenstern.json │ │ │ │ ├── steel_chivalrylance.json │ │ │ │ ├── steel_claymore.json │ │ │ │ ├── steel_concavehalberd.json │ │ │ │ ├── steel_estoc.json │ │ │ │ ├── steel_flamebladedsword.json │ │ │ │ ├── steel_guisarme.json │ │ │ │ ├── steel_heavymace.json │ │ │ │ ├── steel_heavywarhammer.json │ │ │ │ ├── steel_katzbalger.json │ │ │ │ ├── steel_lochaberaxe.json │ │ │ │ ├── steel_lucernhammer.json │ │ │ │ ├── steel_morgenstern.json │ │ │ │ ├── steel_pike.json │ │ │ │ ├── steel_ranseur.json │ │ │ │ ├── steel_stylet.json │ │ │ │ ├── steel_zweihander.json │ │ │ │ ├── stone_ahlspiess.json │ │ │ │ ├── stone_bastardsword.json │ │ │ │ ├── stone_chainmorgenstern.json │ │ │ │ ├── stone_chivalrylance.json │ │ │ │ ├── stone_claymore.json │ │ │ │ ├── stone_concavehalberd.json │ │ │ │ ├── stone_estoc.json │ │ │ │ ├── stone_flamebladedsword.json │ │ │ │ ├── stone_guisarme.json │ │ │ │ ├── stone_heavymace.json │ │ │ │ ├── stone_heavywarhammer.json │ │ │ │ ├── stone_katzbalger.json │ │ │ │ ├── stone_lochaberaxe.json │ │ │ │ ├── stone_lucernhammer.json │ │ │ │ ├── stone_morgenstern.json │ │ │ │ ├── stone_pike.json │ │ │ │ ├── stone_ranseur.json │ │ │ │ ├── stone_stylet.json │ │ │ │ ├── stone_zweihander.json │ │ │ │ ├── tin_ahlspiess.json │ │ │ │ ├── tin_bastardsword.json │ │ │ │ ├── tin_chainmorgenstern.json │ │ │ │ ├── tin_chivalrylance.json │ │ │ │ ├── tin_claymore.json │ │ │ │ ├── tin_concavehalberd.json │ │ │ │ ├── tin_estoc.json │ │ │ │ ├── tin_flamebladedsword.json │ │ │ │ ├── tin_guisarme.json │ │ │ │ ├── tin_heavymace.json │ │ │ │ ├── tin_heavywarhammer.json │ │ │ │ ├── tin_katzbalger.json │ │ │ │ ├── tin_lochaberaxe.json │ │ │ │ ├── tin_lucernhammer.json │ │ │ │ ├── tin_morgenstern.json │ │ │ │ ├── tin_pike.json │ │ │ │ ├── tin_ranseur.json │ │ │ │ ├── tin_stylet.json │ │ │ │ ├── tin_zweihander.json │ │ │ │ ├── wood_ahlspiess.json │ │ │ │ ├── wood_bastardsword.json │ │ │ │ ├── wood_chainmorgenstern.json │ │ │ │ ├── wood_chivalrylance.json │ │ │ │ ├── wood_claymore.json │ │ │ │ ├── wood_concavehalberd.json │ │ │ │ ├── wood_estoc.json │ │ │ │ ├── wood_flamebladedsword.json │ │ │ │ ├── wood_guisarme.json │ │ │ │ ├── wood_heavymace.json │ │ │ │ ├── wood_heavywarhammer.json │ │ │ │ ├── wood_katzbalger.json │ │ │ │ ├── wood_lochaberaxe.json │ │ │ │ ├── wood_lucernhammer.json │ │ │ │ ├── wood_morgenstern.json │ │ │ │ ├── wood_pike.json │ │ │ │ ├── wood_ranseur.json │ │ │ │ ├── wood_stylet.json │ │ │ │ └── wood_zweihander.json │ │ ├── damage_type │ │ │ ├── additional.json │ │ │ ├── armor_piercing.json │ │ │ ├── entity_additional.json │ │ │ └── silver.json │ │ ├── loot_tables │ │ │ └── chests │ │ │ │ ├── desert_pyramid.json │ │ │ │ ├── end_city_treasure.json │ │ │ │ ├── jungle_temple.json │ │ │ │ ├── nether_bridge.json │ │ │ │ ├── ruined_portal.json │ │ │ │ ├── simple_dungeon.json │ │ │ │ ├── stronghold_corridor.json │ │ │ │ └── village │ │ │ │ └── village_weaponsmith.json │ │ ├── recipe │ │ │ ├── armet.json │ │ │ ├── armor_decoration_recipes.json │ │ │ ├── barbedclub.json │ │ │ ├── barbute.json │ │ │ ├── bascinet.json │ │ │ ├── big_plume_decoration.json │ │ │ ├── blacksmith_hammer.json │ │ │ ├── brigandine_cheatplate.json │ │ │ ├── bronze_ahlspiess.json │ │ │ ├── bronze_bastardsword.json │ │ │ ├── bronze_buckler.json │ │ │ ├── bronze_chainmorgenstern.json │ │ │ ├── bronze_chivalrylance.json │ │ │ ├── bronze_claymore.json │ │ │ ├── bronze_concavehalberd.json │ │ │ ├── bronze_ellipticalshield.json │ │ │ ├── bronze_estoc.json │ │ │ ├── bronze_flamebladedsword.json │ │ │ ├── bronze_guisarme.json │ │ │ ├── bronze_heatershield.json │ │ │ ├── bronze_heavymace.json │ │ │ ├── bronze_heavywarhammer.json │ │ │ ├── bronze_katzbalger.json │ │ │ ├── bronze_kiteshield.json │ │ │ ├── bronze_lochaberaxe.json │ │ │ ├── bronze_lucernhammer.json │ │ │ ├── bronze_morgenstern.json │ │ │ ├── bronze_pavese.json │ │ │ ├── bronze_pike.json │ │ │ ├── bronze_ranseur.json │ │ │ ├── bronze_rondache.json │ │ │ ├── bronze_roundshield.json │ │ │ ├── bronze_shortsword.json │ │ │ ├── bronze_stylet.json │ │ │ ├── bronze_target.json │ │ │ ├── bronze_tartsche.json │ │ │ ├── bronze_zweihander.json │ │ │ ├── ceremonial_boots.json │ │ │ ├── ceremonial_chestplate.json │ │ │ ├── ceremonialarmet.json │ │ │ ├── chainmail_boots.json │ │ │ ├── chainmail_chestplate.json │ │ │ ├── chainmail_helmet.json │ │ │ ├── chainmail_leggings.json │ │ │ ├── coif.json │ │ │ ├── copper_ahlspiess.json │ │ │ ├── copper_bastardsword.json │ │ │ ├── copper_buckler.json │ │ │ ├── copper_chainmorgenstern.json │ │ │ ├── copper_chivalrylance.json │ │ │ ├── copper_claymore.json │ │ │ ├── copper_concavehalberd.json │ │ │ ├── copper_ellipticalshield.json │ │ │ ├── copper_estoc.json │ │ │ ├── copper_flamebladedsword.json │ │ │ ├── copper_guisarme.json │ │ │ ├── copper_heatershield.json │ │ │ ├── copper_heavymace.json │ │ │ ├── copper_heavywarhammer.json │ │ │ ├── copper_katzbalger.json │ │ │ ├── copper_kiteshield.json │ │ │ ├── copper_lochaberaxe.json │ │ │ ├── copper_lucernhammer.json │ │ │ ├── copper_morgenstern.json │ │ │ ├── copper_pavese.json │ │ │ ├── copper_pike.json │ │ │ ├── copper_ranseur.json │ │ │ ├── copper_rondache.json │ │ │ ├── copper_roundshield.json │ │ │ ├── copper_shortsword.json │ │ │ ├── copper_stylet.json │ │ │ ├── copper_target.json │ │ │ ├── copper_tartsche.json │ │ │ ├── copper_zweihander.json │ │ │ ├── crusader_boots.json │ │ │ ├── crusader_chestplate.json │ │ │ ├── crusader_leggings.json │ │ │ ├── cuirassier_boots.json │ │ │ ├── cuirassier_chestplate.json │ │ │ ├── cuirassier_helmet.json │ │ │ ├── cuirassier_leggings.json │ │ │ ├── darkening_template.json │ │ │ ├── darkening_template_copy.json │ │ │ ├── decoration_remove_recipes.json │ │ │ ├── diamond_ahlspiess.json │ │ │ ├── diamond_bastardsword.json │ │ │ ├── diamond_buckler.json │ │ │ ├── diamond_chainmorgenstern.json │ │ │ ├── diamond_chivalrylance.json │ │ │ ├── diamond_claymore.json │ │ │ ├── diamond_concavehalberd.json │ │ │ ├── diamond_ellipticalshield.json │ │ │ ├── diamond_estoc.json │ │ │ ├── diamond_flamebladedsword.json │ │ │ ├── diamond_guisarme.json │ │ │ ├── diamond_heatershield.json │ │ │ ├── diamond_heavymace.json │ │ │ ├── diamond_heavywarhammer.json │ │ │ ├── diamond_katzbalger.json │ │ │ ├── diamond_kiteshield.json │ │ │ ├── diamond_lochaberaxe.json │ │ │ ├── diamond_lucernhammer.json │ │ │ ├── diamond_morgenstern.json │ │ │ ├── diamond_pavese.json │ │ │ ├── diamond_pike.json │ │ │ ├── diamond_ranseur.json │ │ │ ├── diamond_rondache.json │ │ │ ├── diamond_roundshield.json │ │ │ ├── diamond_shortsword.json │ │ │ ├── diamond_stylet.json │ │ │ ├── diamond_target.json │ │ │ ├── diamond_tartsche.json │ │ │ ├── diamond_zweihander.json │ │ │ ├── ecranche_decoration.json │ │ │ ├── face_helmet.json │ │ │ ├── feathers_decoration.json │ │ │ ├── flowercrown_decoration.json │ │ │ ├── furnace │ │ │ │ ├── gold_nugget_blasting.json │ │ │ │ ├── iron_nugget_blasting.json │ │ │ │ ├── steel_ingot_blasting.json │ │ │ │ └── steel_nugget_blasting.json │ │ │ ├── gambeson_boots.json │ │ │ ├── gambeson_leggings.json │ │ │ ├── gilding_template.json │ │ │ ├── gilding_template_copy.json │ │ │ ├── gold_ahlspiess.json │ │ │ ├── gold_bastardsword.json │ │ │ ├── gold_buckler.json │ │ │ ├── gold_chainmorgenstern.json │ │ │ ├── gold_chivalrylance.json │ │ │ ├── gold_claymore.json │ │ │ ├── gold_concavehalberd.json │ │ │ ├── gold_ellipticalshield.json │ │ │ ├── gold_estoc.json │ │ │ ├── gold_flamebladedsword.json │ │ │ ├── gold_guisarme.json │ │ │ ├── gold_heatershield.json │ │ │ ├── gold_heavymace.json │ │ │ ├── gold_heavywarhammer.json │ │ │ ├── gold_katzbalger.json │ │ │ ├── gold_kiteshield.json │ │ │ ├── gold_lochaberaxe.json │ │ │ ├── gold_lucernhammer.json │ │ │ ├── gold_morgenstern.json │ │ │ ├── gold_pavese.json │ │ │ ├── gold_pike.json │ │ │ ├── gold_ranseur.json │ │ │ ├── gold_rondache.json │ │ │ ├── gold_roundshield.json │ │ │ ├── gold_shortsword.json │ │ │ ├── gold_stylet.json │ │ │ ├── gold_target.json │ │ │ ├── gold_tartsche.json │ │ │ ├── gold_zweihander.json │ │ │ ├── gothic_boots.json │ │ │ ├── gothic_chestplate.json │ │ │ ├── gothic_leggings.json │ │ │ ├── grand_bascinet.json │ │ │ ├── greathelm.json │ │ │ ├── halfarmor_chestplate.json │ │ │ ├── heavy_crossbow.json │ │ │ ├── heraldry_recipes.json │ │ │ ├── hilt.json │ │ │ ├── hood_decoration.json │ │ │ ├── iron_ahlspiess.json │ │ │ ├── iron_bastardsword.json │ │ │ ├── iron_buckler.json │ │ │ ├── iron_chainmorgenstern.json │ │ │ ├── iron_chivalrylance.json │ │ │ ├── iron_claymore.json │ │ │ ├── iron_concavehalberd.json │ │ │ ├── iron_ellipticalshield.json │ │ │ ├── iron_estoc.json │ │ │ ├── iron_flamebladedsword.json │ │ │ ├── iron_guisarme.json │ │ │ ├── iron_heatershield.json │ │ │ ├── iron_heavymace.json │ │ │ ├── iron_heavywarhammer.json │ │ │ ├── iron_katzbalger.json │ │ │ ├── iron_kiteshield.json │ │ │ ├── iron_lochaberaxe.json │ │ │ ├── iron_lucernhammer.json │ │ │ ├── iron_morgenstern.json │ │ │ ├── iron_pavese.json │ │ │ ├── iron_pike.json │ │ │ ├── iron_ranseur.json │ │ │ ├── iron_rondache.json │ │ │ ├── iron_roundshield.json │ │ │ ├── iron_shortsword.json │ │ │ ├── iron_stylet.json │ │ │ ├── iron_target.json │ │ │ ├── iron_tartsche.json │ │ │ ├── iron_zweihander.json │ │ │ ├── jousting_boots.json │ │ │ ├── jousting_chestplate.json │ │ │ ├── jousting_leggings.json │ │ │ ├── kastenbrust_boots.json │ │ │ ├── kastenbrust_chestplate.json │ │ │ ├── kastenbrust_leggings.json │ │ │ ├── kettlehat.json │ │ │ ├── knight_boots.json │ │ │ ├── knight_chestplate.json │ │ │ ├── knight_leggings.json │ │ │ ├── lamellar_boots.json │ │ │ ├── lamellar_chestplate.json │ │ │ ├── lamellar_rows.json │ │ │ ├── leather_strip.json │ │ │ ├── longbow.json │ │ │ ├── maximilan_boots_smithing.json │ │ │ ├── maximilan_chestplate_smithing.json │ │ │ ├── maximilan_leggings_smithing.json │ │ │ ├── maximilian_helmet_smithing.json │ │ │ ├── messer_sword.json │ │ │ ├── netherite_ahlspiess_smithing.json │ │ │ ├── netherite_bastardsword_smithing.json │ │ │ ├── netherite_buckler_smithing.json │ │ │ ├── netherite_chainmorgenstern_smithing.json │ │ │ ├── netherite_chivalrylance_smithing.json │ │ │ ├── netherite_claymore_smithing.json │ │ │ ├── netherite_concavehalberd_smithing.json │ │ │ ├── netherite_ellipticalshield_smithing.json │ │ │ ├── netherite_estoc_smithing.json │ │ │ ├── netherite_flamebladedsword_smithing.json │ │ │ ├── netherite_guisarme_smithing.json │ │ │ ├── netherite_heatershield_smithing.json │ │ │ ├── netherite_heavymace_smithing.json │ │ │ ├── netherite_heavywarhammer_smithing.json │ │ │ ├── netherite_katzbalger_smithing.json │ │ │ ├── netherite_kiteshield_smithing.json │ │ │ ├── netherite_lochaberaxe_smithing.json │ │ │ ├── netherite_lucernhammer_smithing.json │ │ │ ├── netherite_morgenstern_smithing.json │ │ │ ├── netherite_pavese_smithing.json │ │ │ ├── netherite_pike_smithing.json │ │ │ ├── netherite_ranseur_smithing.json │ │ │ ├── netherite_rondache_smithing.json │ │ │ ├── netherite_roundshield_smithing.json │ │ │ ├── netherite_shortsword_smithing.json │ │ │ ├── netherite_stylet_smithing.json │ │ │ ├── netherite_target_smithing.json │ │ │ ├── netherite_tartsche_smithing.json │ │ │ ├── netherite_zweihander_smithing.json │ │ │ ├── noble_sword.json │ │ │ ├── norman_helmet.json │ │ │ ├── pantyhose.json │ │ │ ├── pitchfork.json │ │ │ ├── platemail_boots.json │ │ │ ├── platemail_chestplate.json │ │ │ ├── platemail_leggings.json │ │ │ ├── plume_left_decoration.json │ │ │ ├── plume_middle_decoration.json │ │ │ ├── plume_right_decoration.json │ │ │ ├── pole.json │ │ │ ├── rondel_decoration.json │ │ │ ├── sallet.json │ │ │ ├── shishak.json │ │ │ ├── silver_ahlspiess.json │ │ │ ├── silver_bastardsword.json │ │ │ ├── silver_buckler.json │ │ │ ├── silver_chainmorgenstern.json │ │ │ ├── silver_chivalrylance.json │ │ │ ├── silver_claymore.json │ │ │ ├── silver_concavehalberd.json │ │ │ ├── silver_ellipticalshield.json │ │ │ ├── silver_estoc.json │ │ │ ├── silver_flamebladedsword.json │ │ │ ├── silver_guisarme.json │ │ │ ├── silver_heatershield.json │ │ │ ├── silver_heavymace.json │ │ │ ├── silver_heavywarhammer.json │ │ │ ├── silver_katzbalger.json │ │ │ ├── silver_kiteshield.json │ │ │ ├── silver_lochaberaxe.json │ │ │ ├── silver_lucernhammer.json │ │ │ ├── silver_morgenstern.json │ │ │ ├── silver_pavese.json │ │ │ ├── silver_pike.json │ │ │ ├── silver_ranseur.json │ │ │ ├── silver_rondache.json │ │ │ ├── silver_roundshield.json │ │ │ ├── silver_shortsword.json │ │ │ ├── silver_stylet.json │ │ │ ├── silver_target.json │ │ │ ├── silver_tartsche.json │ │ │ ├── silver_zweihander.json │ │ │ ├── small_steel_plate.json │ │ │ ├── spike_decoration.json │ │ │ ├── stechhelm.json │ │ │ ├── steel_ahlspiess.json │ │ │ ├── steel_bastardsword.json │ │ │ ├── steel_buckler.json │ │ │ ├── steel_chain.json │ │ │ ├── steel_chainmail.json │ │ │ ├── steel_chainmorgenstern.json │ │ │ ├── steel_chivalrylance.json │ │ │ ├── steel_claymore.json │ │ │ ├── steel_concavehalberd.json │ │ │ ├── steel_ellipticalshield.json │ │ │ ├── steel_estoc.json │ │ │ ├── steel_flamebladedsword.json │ │ │ ├── steel_guisarme.json │ │ │ ├── steel_heatershield.json │ │ │ ├── steel_heavymace.json │ │ │ ├── steel_heavywarhammer.json │ │ │ ├── steel_ingot_blasting.json │ │ │ ├── steel_ingot_to_steel_nuggets.json │ │ │ ├── steel_katzbalger.json │ │ │ ├── steel_kiteshield.json │ │ │ ├── steel_lochaberaxe.json │ │ │ ├── steel_lucernhammer.json │ │ │ ├── steel_morgenstern.json │ │ │ ├── steel_nuggets_to_steel_ingot.json │ │ │ ├── steel_pavese.json │ │ │ ├── steel_pike.json │ │ │ ├── steel_plate.json │ │ │ ├── steel_ranseur.json │ │ │ ├── steel_ring.json │ │ │ ├── steel_rondache.json │ │ │ ├── steel_roundshield.json │ │ │ ├── steel_shortsword.json │ │ │ ├── steel_stylet.json │ │ │ ├── steel_target.json │ │ │ ├── steel_tartsche.json │ │ │ ├── steel_zweihander.json │ │ │ ├── stone_ahlspiess.json │ │ │ ├── stone_bastardsword.json │ │ │ ├── stone_buckler.json │ │ │ ├── stone_chainmorgenstern.json │ │ │ ├── stone_chivalrylance.json │ │ │ ├── stone_claymore.json │ │ │ ├── stone_concavehalberd.json │ │ │ ├── stone_ellipticalshield.json │ │ │ ├── stone_estoc.json │ │ │ ├── stone_flamebladedsword.json │ │ │ ├── stone_guisarme.json │ │ │ ├── stone_heatershield.json │ │ │ ├── stone_heavymace.json │ │ │ ├── stone_heavywarhammer.json │ │ │ ├── stone_katzbalger.json │ │ │ ├── stone_kiteshield.json │ │ │ ├── stone_lochaberaxe.json │ │ │ ├── stone_lucernhammer.json │ │ │ ├── stone_morgenstern.json │ │ │ ├── stone_pavese.json │ │ │ ├── stone_pike.json │ │ │ ├── stone_ranseur.json │ │ │ ├── stone_rondache.json │ │ │ ├── stone_roundshield.json │ │ │ ├── stone_shortsword.json │ │ │ ├── stone_stylet.json │ │ │ ├── stone_target.json │ │ │ ├── stone_tartsche.json │ │ │ ├── stone_zweihander.json │ │ │ ├── tin_ahlspiess.json │ │ │ ├── tin_bastardsword.json │ │ │ ├── tin_buckler.json │ │ │ ├── tin_chainmorgenstern.json │ │ │ ├── tin_chivalrylance.json │ │ │ ├── tin_claymore.json │ │ │ ├── tin_concavehalberd.json │ │ │ ├── tin_ellipticalshield.json │ │ │ ├── tin_estoc.json │ │ │ ├── tin_flamebladedsword.json │ │ │ ├── tin_guisarme.json │ │ │ ├── tin_heatershield.json │ │ │ ├── tin_heavymace.json │ │ │ ├── tin_heavywarhammer.json │ │ │ ├── tin_katzbalger.json │ │ │ ├── tin_kiteshield.json │ │ │ ├── tin_lochaberaxe.json │ │ │ ├── tin_lucernhammer.json │ │ │ ├── tin_morgenstern.json │ │ │ ├── tin_pavese.json │ │ │ ├── tin_pike.json │ │ │ ├── tin_ranseur.json │ │ │ ├── tin_rondache.json │ │ │ ├── tin_roundshield.json │ │ │ ├── tin_shortsword.json │ │ │ ├── tin_stylet.json │ │ │ ├── tin_target.json │ │ │ ├── tin_tartsche.json │ │ │ ├── tin_zweihander.json │ │ │ ├── torse_and_mantle_decoration.json │ │ │ ├── torse_decoration.json │ │ │ ├── two_plumes_decoration.json │ │ │ ├── viking_horns_decoration.json │ │ │ ├── wingedhussar_chestplate.json │ │ │ ├── wood_ahlspiess.json │ │ │ ├── wood_bastardsword.json │ │ │ ├── wood_buckler.json │ │ │ ├── wood_chainmorgenstern.json │ │ │ ├── wood_chivalrylance.json │ │ │ ├── wood_claymore.json │ │ │ ├── wood_concavehalberd.json │ │ │ ├── wood_ellipticalshield.json │ │ │ ├── wood_estoc.json │ │ │ ├── wood_flamebladedsword.json │ │ │ ├── wood_guisarme.json │ │ │ ├── wood_heatershield.json │ │ │ ├── wood_heavymace.json │ │ │ ├── wood_heavywarhammer.json │ │ │ ├── wood_katzbalger.json │ │ │ ├── wood_kiteshield.json │ │ │ ├── wood_lochaberaxe.json │ │ │ ├── wood_lucernhammer.json │ │ │ ├── wood_morgenstern.json │ │ │ ├── wood_pavese.json │ │ │ ├── wood_pike.json │ │ │ ├── wood_ranseur.json │ │ │ ├── wood_rondache.json │ │ │ ├── wood_roundshield.json │ │ │ ├── wood_shortsword.json │ │ │ ├── wood_stylet.json │ │ │ ├── wood_target.json │ │ │ ├── wood_tartsche.json │ │ │ ├── wood_zweihander.json │ │ │ ├── woolen_fabric_from_strings.json │ │ │ ├── woolen_fabric_from_wool.json │ │ │ ├── xivcenturyknight_boots.json │ │ │ ├── xivcenturyknight_chestplate.json │ │ │ └── xivcenturyknight_leggings.json │ │ ├── tags │ │ │ ├── banner_pattern │ │ │ │ └── pattern_item │ │ │ │ │ ├── apostolic_cross.json │ │ │ │ │ ├── bowl.json │ │ │ │ │ ├── bull.json │ │ │ │ │ ├── chess.json │ │ │ │ │ ├── crusader_cross.json │ │ │ │ │ ├── dragon.json │ │ │ │ │ ├── eagle.json │ │ │ │ │ ├── horse.json │ │ │ │ │ ├── lily.json │ │ │ │ │ ├── lion1.json │ │ │ │ │ ├── lion2.json │ │ │ │ │ ├── orthodox_cross.json │ │ │ │ │ ├── snake.json │ │ │ │ │ ├── sun.json │ │ │ │ │ ├── swords.json │ │ │ │ │ ├── tower.json │ │ │ │ │ ├── tree.json │ │ │ │ │ └── two_headed_eagle.json │ │ │ └── item │ │ │ │ ├── chainmails │ │ │ │ └── steel.json │ │ │ │ ├── chains │ │ │ │ └── steel.json │ │ │ │ ├── hilts.json │ │ │ │ ├── lamellar_rows │ │ │ │ └── steel.json │ │ │ │ ├── leather_strips.json │ │ │ │ ├── plume_decorations.json │ │ │ │ ├── poles.json │ │ │ │ ├── rings │ │ │ │ └── steel.json │ │ │ │ ├── small_plates │ │ │ │ └── steel.json │ │ │ │ └── woolen_fabrics.json │ │ └── weapon_attributes │ │ │ ├── barbedclub.json │ │ │ ├── blacksmith_hammer.json │ │ │ ├── bronze_ahlspiess.json │ │ │ ├── bronze_bastardsword.json │ │ │ ├── bronze_chainmorgenstern.json │ │ │ ├── bronze_chivalrylance.json │ │ │ ├── bronze_claymore.json │ │ │ ├── bronze_concavehalberd.json │ │ │ ├── bronze_estoc.json │ │ │ ├── bronze_flamebladedsword.json │ │ │ ├── bronze_guisarme.json │ │ │ ├── bronze_heavymace.json │ │ │ ├── bronze_heavywarhammer.json │ │ │ ├── bronze_katzbalger.json │ │ │ ├── bronze_lochaberaxe.json │ │ │ ├── bronze_lucernhammer.json │ │ │ ├── bronze_morgenstern.json │ │ │ ├── bronze_pike.json │ │ │ ├── bronze_ranseur.json │ │ │ ├── bronze_shortsword.json │ │ │ ├── bronze_stylet.json │ │ │ ├── bronze_zweihander.json │ │ │ ├── club.json │ │ │ ├── copper_ahlspiess.json │ │ │ ├── copper_bastardsword.json │ │ │ ├── copper_chainmorgenstern.json │ │ │ ├── copper_chivalrylance.json │ │ │ ├── copper_claymore.json │ │ │ ├── copper_concavehalberd.json │ │ │ ├── copper_estoc.json │ │ │ ├── copper_flamebladedsword.json │ │ │ ├── copper_guisarme.json │ │ │ ├── copper_heavymace.json │ │ │ ├── copper_heavywarhammer.json │ │ │ ├── copper_katzbalger.json │ │ │ ├── copper_lochaberaxe.json │ │ │ ├── copper_lucernhammer.json │ │ │ ├── copper_morgenstern.json │ │ │ ├── copper_pike.json │ │ │ ├── copper_ranseur.json │ │ │ ├── copper_shortsword.json │ │ │ ├── copper_stylet.json │ │ │ ├── copper_zweihander.json │ │ │ ├── diamond_ahlspiess.json │ │ │ ├── diamond_bastardsword.json │ │ │ ├── diamond_chainmorgenstern.json │ │ │ ├── diamond_chivalrylance.json │ │ │ ├── diamond_claymore.json │ │ │ ├── diamond_concavehalberd.json │ │ │ ├── diamond_estoc.json │ │ │ ├── diamond_flamebladedsword.json │ │ │ ├── diamond_guisarme.json │ │ │ ├── diamond_heavymace.json │ │ │ ├── diamond_heavywarhammer.json │ │ │ ├── diamond_katzbalger.json │ │ │ ├── diamond_lochaberaxe.json │ │ │ ├── diamond_lucernhammer.json │ │ │ ├── diamond_morgenstern.json │ │ │ ├── diamond_pike.json │ │ │ ├── diamond_ranseur.json │ │ │ ├── diamond_shortsword.json │ │ │ ├── diamond_stylet.json │ │ │ ├── diamond_zweihander.json │ │ │ ├── gold_ahlspiess.json │ │ │ ├── gold_bastardsword.json │ │ │ ├── gold_chainmorgenstern.json │ │ │ ├── gold_chivalrylance.json │ │ │ ├── gold_claymore.json │ │ │ ├── gold_concavehalberd.json │ │ │ ├── gold_estoc.json │ │ │ ├── gold_flamebladedsword.json │ │ │ ├── gold_guisarme.json │ │ │ ├── gold_heavymace.json │ │ │ ├── gold_heavywarhammer.json │ │ │ ├── gold_katzbalger.json │ │ │ ├── gold_lochaberaxe.json │ │ │ ├── gold_lucernhammer.json │ │ │ ├── gold_morgenstern.json │ │ │ ├── gold_pike.json │ │ │ ├── gold_ranseur.json │ │ │ ├── gold_shortsword.json │ │ │ ├── gold_stylet.json │ │ │ ├── gold_zweihander.json │ │ │ ├── iron_ahlspiess.json │ │ │ ├── iron_bastardsword.json │ │ │ ├── iron_chainmorgenstern.json │ │ │ ├── iron_chivalrylance.json │ │ │ ├── iron_claymore.json │ │ │ ├── iron_concavehalberd.json │ │ │ ├── iron_estoc.json │ │ │ ├── iron_flamebladedsword.json │ │ │ ├── iron_guisarme.json │ │ │ ├── iron_heavymace.json │ │ │ ├── iron_heavywarhammer.json │ │ │ ├── iron_katzbalger.json │ │ │ ├── iron_lochaberaxe.json │ │ │ ├── iron_lucernhammer.json │ │ │ ├── iron_morgenstern.json │ │ │ ├── iron_pike.json │ │ │ ├── iron_ranseur.json │ │ │ ├── iron_shortsword.json │ │ │ ├── iron_stylet.json │ │ │ ├── iron_zweihander.json │ │ │ ├── messer_sword.json │ │ │ ├── netherite_ahlspiess.json │ │ │ ├── netherite_bastardsword.json │ │ │ ├── netherite_chainmorgenstern.json │ │ │ ├── netherite_chivalrylance.json │ │ │ ├── netherite_claymore.json │ │ │ ├── netherite_concavehalberd.json │ │ │ ├── netherite_estoc.json │ │ │ ├── netherite_flamebladedsword.json │ │ │ ├── netherite_guisarme.json │ │ │ ├── netherite_heavymace.json │ │ │ ├── netherite_heavywarhammer.json │ │ │ ├── netherite_katzbalger.json │ │ │ ├── netherite_lochaberaxe.json │ │ │ ├── netherite_lucernhammer.json │ │ │ ├── netherite_morgenstern.json │ │ │ ├── netherite_pike.json │ │ │ ├── netherite_ranseur.json │ │ │ ├── netherite_shortsword.json │ │ │ ├── netherite_stylet.json │ │ │ ├── netherite_zweihander.json │ │ │ ├── noble_sword.json │ │ │ ├── pitchfork.json │ │ │ ├── rusted_bastardsword.json │ │ │ ├── rusted_heavymace.json │ │ │ ├── silver_ahlspiess.json │ │ │ ├── silver_bastardsword.json │ │ │ ├── silver_chainmorgenstern.json │ │ │ ├── silver_chivalrylance.json │ │ │ ├── silver_claymore.json │ │ │ ├── silver_concavehalberd.json │ │ │ ├── silver_estoc.json │ │ │ ├── silver_flamebladedsword.json │ │ │ ├── silver_guisarme.json │ │ │ ├── silver_heavymace.json │ │ │ ├── silver_heavywarhammer.json │ │ │ ├── silver_katzbalger.json │ │ │ ├── silver_lochaberaxe.json │ │ │ ├── silver_lucernhammer.json │ │ │ ├── silver_morgenstern.json │ │ │ ├── silver_pike.json │ │ │ ├── silver_ranseur.json │ │ │ ├── silver_shortsword.json │ │ │ ├── silver_stylet.json │ │ │ ├── silver_zweihander.json │ │ │ ├── steel_ahlspiess.json │ │ │ ├── steel_bastardsword.json │ │ │ ├── steel_chainmorgenstern.json │ │ │ ├── steel_chivalrylance.json │ │ │ ├── steel_claymore.json │ │ │ ├── steel_concavehalberd.json │ │ │ ├── steel_estoc.json │ │ │ ├── steel_flamebladedsword.json │ │ │ ├── steel_guisarme.json │ │ │ ├── steel_heavymace.json │ │ │ ├── steel_heavywarhammer.json │ │ │ ├── steel_katzbalger.json │ │ │ ├── steel_lochaberaxe.json │ │ │ ├── steel_lucernhammer.json │ │ │ ├── steel_morgenstern.json │ │ │ ├── steel_pike.json │ │ │ ├── steel_ranseur.json │ │ │ ├── steel_shortsword.json │ │ │ ├── steel_stylet.json │ │ │ ├── steel_zweihander.json │ │ │ ├── stone_ahlspiess.json │ │ │ ├── stone_bastardsword.json │ │ │ ├── stone_chainmorgenstern.json │ │ │ ├── stone_chivalrylance.json │ │ │ ├── stone_claymore.json │ │ │ ├── stone_concavehalberd.json │ │ │ ├── stone_estoc.json │ │ │ ├── stone_flamebladedsword.json │ │ │ ├── stone_guisarme.json │ │ │ ├── stone_heavymace.json │ │ │ ├── stone_heavywarhammer.json │ │ │ ├── stone_katzbalger.json │ │ │ ├── stone_lochaberaxe.json │ │ │ ├── stone_lucernhammer.json │ │ │ ├── stone_morgenstern.json │ │ │ ├── stone_pike.json │ │ │ ├── stone_ranseur.json │ │ │ ├── stone_shortsword.json │ │ │ ├── stone_stylet.json │ │ │ ├── stone_zweihander.json │ │ │ ├── tin_ahlspiess.json │ │ │ ├── tin_bastardsword.json │ │ │ ├── tin_chainmorgenstern.json │ │ │ ├── tin_chivalrylance.json │ │ │ ├── tin_claymore.json │ │ │ ├── tin_concavehalberd.json │ │ │ ├── tin_estoc.json │ │ │ ├── tin_flamebladedsword.json │ │ │ ├── tin_guisarme.json │ │ │ ├── tin_heavymace.json │ │ │ ├── tin_heavywarhammer.json │ │ │ ├── tin_katzbalger.json │ │ │ ├── tin_lochaberaxe.json │ │ │ ├── tin_lucernhammer.json │ │ │ ├── tin_morgenstern.json │ │ │ ├── tin_pike.json │ │ │ ├── tin_ranseur.json │ │ │ ├── tin_shortsword.json │ │ │ ├── tin_stylet.json │ │ │ ├── tin_zweihander.json │ │ │ ├── wood_ahlspiess.json │ │ │ ├── wood_bastardsword.json │ │ │ ├── wood_chainmorgenstern.json │ │ │ ├── wood_chivalrylance.json │ │ │ ├── wood_claymore.json │ │ │ ├── wood_concavehalberd.json │ │ │ ├── wood_estoc.json │ │ │ ├── wood_flamebladedsword.json │ │ │ ├── wood_guisarme.json │ │ │ ├── wood_heavymace.json │ │ │ ├── wood_heavywarhammer.json │ │ │ ├── wood_katzbalger.json │ │ │ ├── wood_lochaberaxe.json │ │ │ ├── wood_lucernhammer.json │ │ │ ├── wood_morgenstern.json │ │ │ ├── wood_pike.json │ │ │ ├── wood_ranseur.json │ │ │ ├── wood_shortsword.json │ │ │ ├── wood_stylet.json │ │ │ └── wood_zweihander.json │ └── minecraft │ │ └── tags │ │ └── item │ │ ├── bows.json │ │ ├── chest_armor.json │ │ ├── crossbows.json │ │ ├── dyeable.json │ │ ├── enchantable │ │ └── weapon.json │ │ ├── foot_armor.json │ │ ├── head_armor.json │ │ ├── leg_armor.json │ │ ├── piglin_loved.json │ │ └── swords.json │ └── magistuarmory.accesswidener ├── fabric ├── build.gradle └── src │ └── main │ ├── java │ └── com │ │ └── magistuarmory │ │ ├── client │ │ └── render │ │ │ └── fabric │ │ │ └── ModRenderImpl.java │ │ ├── fabric │ │ ├── EpicKnightsFabric.java │ │ ├── client │ │ │ └── render │ │ │ │ ├── entity │ │ │ │ └── layer │ │ │ │ │ └── MedievalArmorLayer.java │ │ │ │ └── tileentity │ │ │ │ └── HeraldryItemStackRendererFabric.java │ │ └── config │ │ │ └── ModMenuFabric.java │ │ └── item │ │ ├── crafting │ │ └── fabric │ │ │ ├── ArmorDecorationRecipeImpl.java │ │ │ ├── DecorationRemoveRecipeImpl.java │ │ │ └── HeraldryRecipeImpl.java │ │ └── fabric │ │ └── ItemRegistryHelperImpl.java │ └── resources │ ├── assets │ └── magistuarmory │ │ └── models │ │ └── item │ │ ├── heavy_crossbow.json │ │ ├── heavy_crossbow_arrow.json │ │ ├── heavy_crossbow_firework.json │ │ ├── heavy_crossbow_pulling_0.json │ │ ├── heavy_crossbow_pulling_1.json │ │ └── heavy_crossbow_pulling_2.json │ ├── data │ └── c │ │ └── tags │ │ └── item │ │ └── ingots │ │ ├── bronze.json │ │ ├── gold.json │ │ ├── silver.json │ │ └── tin.json │ ├── fabric.mod.json │ └── magistuarmory.mixins.json ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── neoforge ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── java │ └── com │ │ └── magistuarmory │ │ ├── client │ │ └── render │ │ │ └── neoforge │ │ │ └── ModRenderImpl.java │ │ ├── item │ │ ├── crafting │ │ │ └── neoforge │ │ │ │ ├── ArmorDecorationRecipeImpl.java │ │ │ │ ├── DecorationRemoveRecipeImpl.java │ │ │ │ └── HeraldryRecipeImpl.java │ │ └── neoforge │ │ │ └── ItemRegistryHelperImpl.java │ │ └── neoforge │ │ ├── EpicKnightsNeoForge.java │ │ ├── ModEffectsNeoForge.java │ │ └── item │ │ ├── LanceItemNeoForge.java │ │ ├── MedievalShieldItemNeoForge.java │ │ ├── MedievalWeaponItemNeoForge.java │ │ ├── PaviseItemNeoForge.java │ │ └── armor │ │ ├── DyeableMedievalArmorItemNeoForge.java │ │ ├── DyeableWearableArmorDecorationItemNeoForge.java │ │ ├── JoustingItemNeoForge.java │ │ ├── KnightItemNeoForge.java │ │ ├── MedievalArmorItemNeoForge.java │ │ └── WearableArmorDecorationItemNeoForge.java │ └── resources │ ├── META-INF │ └── neoforge.mods.toml │ ├── assets │ └── magistuarmory │ │ └── models │ │ └── item │ │ ├── heavy_crossbow.json │ │ ├── heavy_crossbow_arrow.json │ │ ├── heavy_crossbow_firework.json │ │ ├── heavy_crossbow_pulling_0.json │ │ ├── heavy_crossbow_pulling_1.json │ │ └── heavy_crossbow_pulling_2.json │ ├── magistuarmory.mixins.json │ └── pack.mcmeta └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/.gitignore -------------------------------------------------------------------------------- /common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/build.gradle -------------------------------------------------------------------------------- /common/gradle.properties: -------------------------------------------------------------------------------- 1 | artifact_base_name=1.21-epic-knights-common -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/EpicKnights.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/EpicKnights.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/api/item/ModItemsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/api/item/ModItemsProvider.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/block/ModBlockEntityTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/block/ModBlockEntityTypes.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/block/ModBlocks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/block/ModBlocks.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/block/PaviseBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/block/PaviseBlock.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/block/PaviseBlockEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/block/PaviseBlockEntity.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/block/PaviseUpperCollisionBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/block/PaviseUpperCollisionBlock.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/client/HitResultHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/client/HitResultHelper.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/client/render/ModRender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/client/render/ModRender.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/client/render/PatternLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/client/render/PatternLayer.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/client/render/model/ModModels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/client/render/model/ModModels.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/component/ModDataComponents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/component/ModDataComponents.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/ArmorConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/ArmorConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/GeneralConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/GeneralConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/MobEquipmentConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/MobEquipmentConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/ModConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/ModConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/ShieldsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/ShieldsConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/config/WeaponsConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/config/WeaponsConfig.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/effects/LacerationEffect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/effects/LacerationEffect.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/effects/ModEffects.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/effects/ModEffects.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/event/ClientEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/event/ClientEvents.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/event/CommonEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/event/CommonEvents.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ArmorDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ArmorDecoration.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ArmorDecorationItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ArmorDecorationItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/DyeableArmorDecorationItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/DyeableArmorDecorationItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/DyeableItemLike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/DyeableItemLike.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/IHasModelProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/IHasModelProperty.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ItemRegistryHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ItemRegistryHelper.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ItemsSupply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ItemsSupply.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/LanceItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/LanceItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/MedievalBagItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/MedievalBagItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/MedievalBowItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/MedievalBowItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/MedievalCrossbowItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/MedievalCrossbowItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/MedievalShieldItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/MedievalShieldItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/MedievalWeaponItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/MedievalWeaponItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ModItemTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ModItemTags.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ModItemTier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ModItemTier.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ModItems.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ModItems.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/PaviseItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/PaviseItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ShieldType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ShieldType.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ShieldTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ShieldTypes.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/ShieldsSupply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/ShieldsSupply.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/WeaponType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/WeaponType.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/WeaponTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/WeaponTypes.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/WeaponsSupply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/WeaponsSupply.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/ArmorType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/ArmorType.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/ArmorTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/ArmorTypes.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/ISurcoat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/ISurcoat.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/JoustingItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/JoustingItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/KnightItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/KnightItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/armor/MedievalArmorItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/armor/MedievalArmorItem.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/crafting/HeraldryRecipe.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/crafting/HeraldryRecipe.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/item/crafting/ModRecipes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/item/crafting/ModRecipes.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/misc/HeraldryRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/misc/HeraldryRegistry.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/misc/ModBannerPatternTags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/misc/ModBannerPatternTags.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/misc/ModCreativeTabs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/misc/ModCreativeTabs.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/misc/ModLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/misc/ModLoot.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/misc/ModMerchOffers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/misc/ModMerchOffers.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/network/ModPackets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/network/ModPackets.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/network/PacketLanceCollision.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/network/PacketLanceCollision.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/CombatHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/CombatHelper.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/DualKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/DualKey.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/MobEquipment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/MobEquipment.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/MobEquipmentHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/MobEquipmentHelper.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/ModDamageSources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/ModDamageSources.java -------------------------------------------------------------------------------- /common/src/main/java/com/magistuarmory/util/ModDamageTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/java/com/magistuarmory/util/ModDamageTypes.java -------------------------------------------------------------------------------- /common/src/main/resources/architectury.common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/architectury.common.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/atlases/banner_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/atlases/banner_patterns.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/blockstates/pavise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/blockstates/pavise.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/icon.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/de_de.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/en_us.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/fr_fr.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/ja_jp.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/pl_pl.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/ru_ru.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/lang/zh_cn.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/block/pavise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/block/pavise.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/armet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/armet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/barbedclub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/barbedclub.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/barbute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/barbute.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/barding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/barding.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bascinet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bascinet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bowl_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bowl_pattern.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bronze_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bronze_ingot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bronze_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bronze_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/bull_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/bull_pattern.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/club.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/club.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/coif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/coif.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/copper_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/copper_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/copper_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/desktop.ini -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/diamond_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/diamond_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/face_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/face_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gold_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gold_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/gothic_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/gothic_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/greathelm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/greathelm.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/heatershield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/heatershield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/hilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/hilt.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/iron_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/iron_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/kettlehat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/kettlehat.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/knight_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/knight_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/lily_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/lily_pattern.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/longbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/longbow.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/medieval_bag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/medieval_bag.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/messer_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/messer_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/netherite_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/noble_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/noble_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/pantyhose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/pantyhose.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/pitchfork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/pitchfork.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/pole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/pole.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/roundshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/roundshield.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/sallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/sallet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/shishak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/shishak.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/silver_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/silver_ingot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/silver_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/silver_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/standard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/standard.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stechhelm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stechhelm.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_chain.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_ingot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_nugget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_nugget.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_ring.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/steel_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/steel_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stone_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stone_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stone_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stone_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/stone_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/stone_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/sun_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/sun_pattern.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_ingot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_ingot.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tin_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tin_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/tree_pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/tree_pattern.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_buckler_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/buckler_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_ellipticalshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/ellipticalshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_heatershield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/heatershield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_kiteshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/kiteshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_pavese_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/pavese_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_rondache_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/rondache_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_roundshield_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/roundshield_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/models/item/wood_target.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_target_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/target_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/models/item/wood_tartsche_blocking.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "magistuarmory:item/tartsche_blocking" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/barbedclub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/barbedclub.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/barding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/barding.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/bascinet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/bascinet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/bronze_pike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/bronze_pike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/burginot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/burginot.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/club.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/coif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/coif.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/copper_pike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/copper_pike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/crossbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/crossbow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/empty.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/face_helmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/face_helmet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/gold_estoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/gold_estoc.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/gold_pike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/gold_pike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/gold_stylet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/gold_stylet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/hilt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/hilt.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/iron_estoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/iron_estoc.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/iron_pike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/iron_pike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/iron_stylet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/iron_stylet.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/longbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/longbow.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/noble_sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/noble_sword.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/pantyhose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/pantyhose.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/pitchfork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/pitchfork.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/pole.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/red_pavese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/red_pavese.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/rondache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/rondache.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/magistuarmory/textures/item/tin_pike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/magistuarmory/textures/item/tin_pike.png -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/atlases/banner_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/minecraft/atlases/banner_patterns.json -------------------------------------------------------------------------------- /common/src/main/resources/assets/minecraft/atlases/shield_patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/assets/minecraft/atlases/shield_patterns.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/c/tags/item/flowers.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/ingots/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/c/tags/item/ingots/steel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/nuggets/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/c/tags/item/nuggets/steel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/plates/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/c/tags/item/plates/steel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/c/tags/item/rods/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/c/tags/item/rods/wooden.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/bowl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/bowl.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/bull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/bull.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/chess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/chess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/dragon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/dragon.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/eagle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/eagle.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/horse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/horse.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/lily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/lily.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/lion1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/lion1.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/lion2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/lion2.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/snake.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/snake.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/sun.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/sun.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/swords.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/tower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/tower.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/banner_pattern/tree.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/banner_pattern/tree.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/capabilities/weapons/bronze_target.json: -------------------------------------------------------------------------------- 1 | {"type": "epicfight:shield"} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/damage_type/additional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/damage_type/additional.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/damage_type/silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/damage_type/silver.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/armet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/armet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/barbedclub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/barbedclub.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/barbute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/barbute.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bascinet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bascinet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/bronze_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/bronze_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/ceremonial_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/ceremonial_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/ceremonialarmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/ceremonialarmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/chainmail_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/chainmail_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/chainmail_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/chainmail_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/coif.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/coif.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/copper_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/copper_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/crusader_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/crusader_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/cuirassier_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/cuirassier_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/decoration_remove_recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "magistuarmory:decoration_remove_recipes" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/diamond_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/diamond_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/face_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/face_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gambeson_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gambeson_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gilding_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gilding_template.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_lochaberaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_lochaberaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_morgenstern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_morgenstern.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_roundshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_roundshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gold_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gold_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gothic_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gothic_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/gothic_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/gothic_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/grand_bascinet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/grand_bascinet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/greathelm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/greathelm.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/heavy_crossbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/heavy_crossbow.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/heraldry_recipes.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "magistuarmory:heraldry_recipes" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/hilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/hilt.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/hood_decoration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/hood_decoration.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_lochaberaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_lochaberaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_morgenstern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_morgenstern.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_roundshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_roundshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/iron_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/iron_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/jousting_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/jousting_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/kettlehat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/kettlehat.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/knight_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/knight_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/knight_leggings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/knight_leggings.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/lamellar_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/lamellar_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/lamellar_rows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/lamellar_rows.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/leather_strip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/leather_strip.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/longbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/longbow.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/messer_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/messer_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/noble_sword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/noble_sword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/norman_helmet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/norman_helmet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/pantyhose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/pantyhose.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/pitchfork.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/pitchfork.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/platemail_boots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/platemail_boots.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/pole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/pole.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/sallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/sallet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/shishak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/shishak.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/silver_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/silver_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/spike_decoration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/spike_decoration.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stechhelm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stechhelm.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_chain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_chain.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_chainmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_chainmail.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_plate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_plate.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_ring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_ring.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/steel_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/steel_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/stone_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/stone_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_bastardsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_bastardsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_heatershield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_heatershield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_lochaberaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_lochaberaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_lucernhammer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_lucernhammer.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_morgenstern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_morgenstern.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_roundshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_roundshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/tin_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/tin_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/torse_decoration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/torse_decoration.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_ahlspiess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_ahlspiess.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_buckler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_buckler.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_claymore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_claymore.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_estoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_estoc.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_guisarme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_guisarme.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_heavymace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_heavymace.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_katzbalger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_katzbalger.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_kiteshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_kiteshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_lochaberaxe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_lochaberaxe.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_morgenstern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_morgenstern.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_pavese.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_pavese.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_pike.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_pike.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_ranseur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_ranseur.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_rondache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_rondache.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_roundshield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_roundshield.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_shortsword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_shortsword.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_stylet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_stylet.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_target.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_tartsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_tartsche.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/recipe/wood_zweihander.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/recipe/wood_zweihander.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/apostolic_cross.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:apostolic_cross"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/bowl.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:bowl"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/bull.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:bull"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/chess.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:chess"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/crusader_cross.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:crusader_cross"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/dragon.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:dragon"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/eagle.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:eagle"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/horse.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:horse"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/lily.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:lily"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/lion1.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:lion1"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/lion2.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:lion2"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/orthodox_cross.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:orthodox_cross"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/snake.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:snake"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/sun.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:sun"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/swords.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:swords"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/tower.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:tower"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/tree.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:tree"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/banner_pattern/pattern_item/two_headed_eagle.json: -------------------------------------------------------------------------------- 1 | {"values":["magistuarmory:two_headed_eagle"]} -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/item/chains/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/tags/item/chains/steel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/item/hilts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/tags/item/hilts.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/item/poles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/tags/item/poles.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/tags/item/rings/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/magistuarmory/tags/item/rings/steel.json -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/barbedclub.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/blacksmith_hammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:hammer" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/bronze_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/club.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/copper_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/diamond_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/gold_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/iron_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/messer_sword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:cutlass" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/netherite_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/rusted_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/silver_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/steel_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/stone_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/tin_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_chainmorgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_claymore.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:claymore" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_concavehalberd.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:halberd" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_guisarme.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:glaive" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_heavymace.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_heavywarhammer.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:double_axe" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_katzbalger.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_morgenstern.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:mace" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_ranseur.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:spear" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_shortsword.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:sword" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/magistuarmory/weapon_attributes/wood_stylet.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "bettercombat:dagger" 3 | } -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/bows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/bows.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/chest_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/chest_armor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/crossbows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/crossbows.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/dyeable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/dyeable.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/foot_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/foot_armor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/head_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/head_armor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/leg_armor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/leg_armor.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/piglin_loved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/piglin_loved.json -------------------------------------------------------------------------------- /common/src/main/resources/data/minecraft/tags/item/swords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/common/src/main/resources/data/minecraft/tags/item/swords.json -------------------------------------------------------------------------------- /common/src/main/resources/magistuarmory.accesswidener: -------------------------------------------------------------------------------- 1 | accessWidener v2 named 2 | -------------------------------------------------------------------------------- /fabric/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/build.gradle -------------------------------------------------------------------------------- /fabric/src/main/java/com/magistuarmory/fabric/EpicKnightsFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/java/com/magistuarmory/fabric/EpicKnightsFabric.java -------------------------------------------------------------------------------- /fabric/src/main/java/com/magistuarmory/fabric/config/ModMenuFabric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/java/com/magistuarmory/fabric/config/ModMenuFabric.java -------------------------------------------------------------------------------- /fabric/src/main/resources/data/c/tags/item/ingots/bronze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/data/c/tags/item/ingots/bronze.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/c/tags/item/ingots/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/data/c/tags/item/ingots/gold.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/c/tags/item/ingots/silver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/data/c/tags/item/ingots/silver.json -------------------------------------------------------------------------------- /fabric/src/main/resources/data/c/tags/item/ingots/tin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/data/c/tags/item/ingots/tin.json -------------------------------------------------------------------------------- /fabric/src/main/resources/fabric.mod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/fabric.mod.json -------------------------------------------------------------------------------- /fabric/src/main/resources/magistuarmory.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/fabric/src/main/resources/magistuarmory.mixins.json -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/gradlew.bat -------------------------------------------------------------------------------- /neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/neoforge/build.gradle -------------------------------------------------------------------------------- /neoforge/gradle.properties: -------------------------------------------------------------------------------- 1 | loom.platform = neoforge -------------------------------------------------------------------------------- /neoforge/src/main/java/com/magistuarmory/neoforge/ModEffectsNeoForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/neoforge/src/main/java/com/magistuarmory/neoforge/ModEffectsNeoForge.java -------------------------------------------------------------------------------- /neoforge/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/neoforge/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /neoforge/src/main/resources/magistuarmory.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/neoforge/src/main/resources/magistuarmory.mixins.json -------------------------------------------------------------------------------- /neoforge/src/main/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/neoforge/src/main/resources/pack.mcmeta -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Magistu/Epic-Knights/HEAD/settings.gradle --------------------------------------------------------------------------------