1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Adding Storm Staff to SlimefunItems.java and removing redundant "&7"s.

This commit is contained in:
LinoxGH 2019-08-30 22:28:40 +03:00 committed by GitHub
parent adb8194d84
commit 6cca1f8833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -453,14 +453,16 @@ public final class SlimefunItems {
/* Staves */
public static final ItemStack STAFF_ELEMENTAL = new CustomItem(Material.STICK, "&6Elemental Staff");
public static final ItemStack STAFF_WIND = new CustomItem(Material.STICK, "&6Elemental Staff &7- &b&oWind", "", "&7Element: &b&oWind", "", "&7&eRight Click&7 to launch yourself forward");
public static final ItemStack STAFF_WIND = new CustomItem(Material.STICK, "&6Elemental Staff &7- &b&oWind", "", "&7Element: &b&oWind", "", "&eRight Click&7 to launch yourself forward");
public static final ItemStack STAFF_FIRE = new CustomItem(Material.STICK, "&6Elemental Staff &7- &c&oFire", "", "&7Element: &c&oFire");
public static final ItemStack STAFF_WATER = new CustomItem(Material.STICK, "&6Elemental Staff &7- &1&oWater", "", "&7Element: &1&oWater", "", "&7&eRight Click&7 to extinguish yourself");
public static final ItemStack STAFF_WATER = new CustomItem(Material.STICK, "&6Elemental Staff &7- &1&oWater", "", "&7Element: &1&oWater", "", "&eRight Click&7 to extinguish yourself");
public static final ItemStack STAFF_STORM = new CustomItem(Material.STICK, "&6Elemental Staff &7- &8&oStorm", "", "&7Element: &8&oStorm", "", "&eRight Click&7 to summon a lightning", "&e5 Uses &7left");
static {
STAFF_WIND.addUnsafeEnchantment(Enchantment.LUCK, 1);
STAFF_FIRE.addUnsafeEnchantment(Enchantment.FIRE_ASPECT, 5);
STAFF_WATER.addUnsafeEnchantment(Enchantment.WATER_WORKER, 1);
STAFF_STORM.addUnsafeEnchantment(Enchantment.DURABILITY, 1);
}
/* Machines */