diff --git a/src/main/java/com/jenny/magic/items/items.java b/src/main/java/com/jenny/magic/items/items.java index 747618a..d05d831 100644 --- a/src/main/java/com/jenny/magic/items/items.java +++ b/src/main/java/com/jenny/magic/items/items.java @@ -23,7 +23,7 @@ public class items { // WANDS public static final RegistryObject WAND_HURTFUL = ITEMS.register("wand_hurtful", () -> new ProjectileWand(new Item.Properties(), entities.PROJECTILE_HURTFUL)); public static final RegistryObject WAND_HURTFUL_AOE = ITEMS.register("wand_hurtful_aoe", () -> new ProjectileWand(new Item.Properties(), entities.PROJECTILE_HURTFUL_AOE)); - public static final RegistryObject WAND_VAUUM = ITEMS.register("wand_vacuum", () -> new WandVacuum(new Item.Properties())); + public static final RegistryObject WAND_VACUUM = ITEMS.register("wand_vacuum", () -> new WandVacuum(new Item.Properties())); public static final RegistryObject WAND_BOOST = ITEMS.register("wand_boost", () -> new WandBoost(new Item.Properties())); public static final RegistryObject WAND_PUSH = ITEMS.register("wand_push", () -> new WandPush(new Item.Properties())); // SCROLLS diff --git a/src/main/resources/assets/magic/lang/en_us.json b/src/main/resources/assets/magic/lang/en_us.json index 5585fc8..47f4e0d 100644 --- a/src/main/resources/assets/magic/lang/en_us.json +++ b/src/main/resources/assets/magic/lang/en_us.json @@ -1,11 +1,26 @@ { - "item.magic.scroll_teleport": "Teleport scroll", - "item.magic.scroll_teleport_brittle": "Brittle teleport scroll", - "item.magic.scroll_teleport_random": "Random teleport scroll", "item.magic.wand_hurtful": "Hurtful Wand", - "item.magic.wand_vacuum": "Vaccum Wand", - "tooltip.magic.scroll_teleport.unset": "No location set", - "tooltip.magic.scroll_teleport.set": "Teleports to: ", + "item.magic.wand_hurtful_aoe": "Advanced Hurtful Wand", + "item.magic.wand_vacuum": "Vacuum Wand", + "item.magic.wand_boost": "Boost Wand", + "item.magic.wand_push": "Wand of Yeeting", + "item.magic.scroll_teleport": "Teleport Scroll", + "item.magic.scroll_teleport_brittle": "Brittle Teleport Scroll", + "item.magic.scroll_teleport_random": "Random Teleport Scroll", + "item.magic.scroll_teleport_biome_plains": "Biome Teleport Scroll", + "item.magic.scroll_health": "Healing Scroll", + "item.magic.scroll_repel": "Repelling Scroll", + "item.magic.scroll_bonemeal": "Nitrate-Rich Scroll", + "item.magic.amulet_repair": "Fixing Amulet", + "item.magic.amulet_breathing": "Oxygen Amulet", + "item.magic.amulet_nightvision": "Night Vision Amulet", + "item.magic.amulet_saturation": "Saturating Amulet", + "item.magic.amulet_suction": "Vacuuming Amulet", + "item.magic.amulet_bonemeal": "Bonemeal Amulet", + "item.magic.amulet_gold": "Golden Amulet", + "item.magic.amulet_immunity": "Vaccine Amulet", + "tooltip.magic.scroll_teleport.unset": "no location set", + "tooltip.magic.scroll_teleport.set": "teleports to: ", "tooltip.magic.scroll_teleport_random": "Using it a second time teleports you back", "tooltip.magic.scroll_teleport_random.back": "Will teleport you back to ", "tooltip.magic.scroll_teleport_biome": "teleports you to the Biome ", diff --git a/src/main/resources/assets/minecraft/textures/gui/icons_mana.png b/src/main/resources/assets/minecraft/textures/gui/icons_mana.png deleted file mode 100644 index 5abd9f7..0000000 Binary files a/src/main/resources/assets/minecraft/textures/gui/icons_mana.png and /dev/null differ