diff --git a/src/main/java/com/legacy/aether/client/ClientProxy.java b/src/main/java/com/legacy/aether/client/ClientProxy.java index caff615..c7d2d3b 100644 --- a/src/main/java/com/legacy/aether/client/ClientProxy.java +++ b/src/main/java/com/legacy/aether/client/ClientProxy.java @@ -36,8 +36,10 @@ public class ClientProxy extends CommonProxy { File buckets = new File(resourcePacks + "\\Aether b1.7.3 Textures\\assets\\aether_legacy\\textures\\items\\misc\\buckets"); File weapons = new File(resourcePacks + "\\Aether b1.7.3 Textures\\assets\\aether_legacy\\textures\\items\\weapons"); + File armor = new File(resourcePacks + "\\Aether b1.7.3 Textures\\assets\\aether_legacy\\textures\\items\\armor"); + File accessories = new File(resourcePacks + "\\Aether b1.7.3 Textures\\assets\\aether_legacy\\textures\\items\\accessories"); - File[] directories = new File[] {buckets, weapons}; + File[] directories = new File[] {buckets, weapons, armor, accessories}; if (AetherConfig.installResourcepack()) { @@ -59,6 +61,12 @@ public class ClientProxy extends CommonProxy { generateFile("data/Aether_b1.7.3/weapons/holy_sword.png", "holy_sword.png", weapons.getAbsolutePath()); generateFile("data/Aether_b1.7.3/weapons/lightning_sword.png", "lightning_sword.png", weapons.getAbsolutePath()); generateFile("data/Aether_b1.7.3/weapons/phoenix_bow.png", "phoenix_bow.png", weapons.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/armor/phoenix_boots.png", "phoenix_boots.png", armor.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/armor/phoenix_leggings.png", "phoenix_leggings.png", armor.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/armor/phoenix_chestplate.png", "phoenix_chestplate.png", armor.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/armor/phoenix_helmet.png", "phoenix_helmet.png", armor.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/accessories/phoenix_gloves.png", "phoenix_gloves.png", accessories.getAbsolutePath()); + generateFile("data/Aether_b1.7.3/accessories/agility_cape.png", "agility_cape.png", accessories.getAbsolutePath()); } } catch (IOException ignore) { } diff --git a/src/main/java/com/legacy/aether/items/ItemsAether.java b/src/main/java/com/legacy/aether/items/ItemsAether.java index 47deb35..0d2abde 100644 --- a/src/main/java/com/legacy/aether/items/ItemsAether.java +++ b/src/main/java/com/legacy/aether/items/ItemsAether.java @@ -220,7 +220,7 @@ public class ItemsAether { zanite_gloves = register("zanite_gloves", new ItemAccessory(AccessoryType.GLOVES).setColor(0x711ae8).setTextureName(Aether.find("accessories/solid_gloves"))); gravitite_gloves = register("gravitite_gloves", new ItemAccessory(AccessoryType.GLOVES).setColor(0xe752db).setTextureName(Aether.find("accessories/solid_gloves"))); neptune_gloves = register("neptune_gloves", new ItemAccessory(AccessoryType.GLOVES).setDungeonLoot().setColor(0x2654FF).setTextureName(Aether.find("accessories/chain_gloves"))); - phoenix_gloves = register("phoenix_gloves", new ItemAccessory(AccessoryType.GLOVES).setTexture("phoenix").setDungeonLoot().setColor(0xff7700).setMaxDamage(152).setTextureName(Aether.find("accessories/chain_gloves"))); + phoenix_gloves = register("phoenix_gloves", new ItemAccessory(AccessoryType.GLOVES).setTexture("phoenix").setDungeonLoot().setMaxDamage(152).setTextureName(Aether.find("accessories/phoenix_gloves"))); obsidian_gloves = register("obsidian_gloves", new ItemAccessory(AccessoryType.GLOVES).setDungeonLoot().setColor(0x1b1447).setTextureName(Aether.find("accessories/solid_gloves"))); valkyrie_gloves = register("valkyrie_gloves", new ItemAccessory(AccessoryType.GLOVES).setDungeonLoot().setTexture("valkyrie").setTextureName(Aether.find("accessories/valkyrie_gloves"))); diff --git a/src/main/resources/assets/aether_legacy/textures/items/accessories/agility_cape.png b/src/main/resources/assets/aether_legacy/textures/items/accessories/agility_cape.png index a5d5298..14f214e 100644 Binary files a/src/main/resources/assets/aether_legacy/textures/items/accessories/agility_cape.png and b/src/main/resources/assets/aether_legacy/textures/items/accessories/agility_cape.png differ diff --git a/src/main/resources/assets/aether_legacy/textures/items/accessories/phoenix_gloves.png b/src/main/resources/assets/aether_legacy/textures/items/accessories/phoenix_gloves.png new file mode 100644 index 0000000..f4032fd Binary files /dev/null and b/src/main/resources/assets/aether_legacy/textures/items/accessories/phoenix_gloves.png differ diff --git a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_boots.png b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_boots.png index bba9536..0fd330d 100644 Binary files a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_boots.png and b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_boots.png differ diff --git a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_chestplate.png b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_chestplate.png index 323aaf1..eecc304 100644 Binary files a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_chestplate.png and b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_chestplate.png differ diff --git a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_helmet.png b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_helmet.png index 25f8d21..4234ea0 100644 Binary files a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_helmet.png and b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_helmet.png differ diff --git a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_leggings.png b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_leggings.png index f57e8c5..b02595b 100644 Binary files a/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_leggings.png and b/src/main/resources/assets/aether_legacy/textures/items/armor/phoenix_leggings.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/accessories/agility_cape.png b/src/main/resources/data/Aether_b1.7.3/accessories/agility_cape.png new file mode 100644 index 0000000..a5d5298 Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/accessories/agility_cape.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/accessories/phoenix_gloves.png b/src/main/resources/data/Aether_b1.7.3/accessories/phoenix_gloves.png new file mode 100644 index 0000000..8dd060c Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/accessories/phoenix_gloves.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/armor/phoenix_boots.png b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_boots.png new file mode 100644 index 0000000..bba9536 Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_boots.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/armor/phoenix_chestplate.png b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_chestplate.png new file mode 100644 index 0000000..323aaf1 Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_chestplate.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/armor/phoenix_helmet.png b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_helmet.png new file mode 100644 index 0000000..25f8d21 Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_helmet.png differ diff --git a/src/main/resources/data/Aether_b1.7.3/armor/phoenix_leggings.png b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_leggings.png new file mode 100644 index 0000000..f57e8c5 Binary files /dev/null and b/src/main/resources/data/Aether_b1.7.3/armor/phoenix_leggings.png differ