From 3e1734851ffcbc6f2fab737d67488b54c03cea24 Mon Sep 17 00:00:00 2001 From: HiZe Date: Sat, 20 Jul 2024 15:40:04 +0200 Subject: Fix: PowderTracker Pattern (#2240) --- .../mining/powdertracker/PowderChestReward.kt | 96 +++++++++++----------- 1 file changed, 48 insertions(+), 48 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/powdertracker/PowderChestReward.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/powdertracker/PowderChestReward.kt index 2f3ce9fd1..b2b449563 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/powdertracker/PowderChestReward.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/powdertracker/PowderChestReward.kt @@ -6,204 +6,204 @@ enum class PowderChestReward(val displayName: String, pattern: String) { MITHRIL_POWDER( "§aMithril Powder", - ".*§2Mithril Powder(?: §r§8x(?.*))?", + " {4}§r§2Mithril Powder(?: §r§8x(?.*))?", ), GEMSTONE_POWDER( "§dGemstone Powder", - ".*§dGemstone Powder(?: §r§8x(?.*))?", + " {4}§r§dGemstone Powder(?: §r§8x(?.*))?", ), ROUGH_RUBY_GEMSTONE( "§fRough Ruby Gemstone", - ".*§f❤ Rough Ruby Gemstone(?: §r§8x(?.*))?", + " {4}§r§f❤ Rough Ruby Gemstone(?: §r§8x(?.*))?", ), FLAWED_RUBY_GEMSTONE( "§aFlawed Sapphire Gemstone", - ".*§a❤ Flawed Ruby Gemstone(?: §r§8x(?.*))?", + " {4}§r§a❤ Flawed Ruby Gemstone(?: §r§8x(?.*))?", ), FINE_RUBY_GEMSTONE( "§9Fine Ruby Gemstone", - ".*§9❤ Fine Ruby Gemstone(?: §r§8x(?.*))?", + " {4}§r§9❤ Fine Ruby Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_RUBY_GEMSTONE( "§5Flawless Ruby Gemstone", - ".*§5❤ Flawless Ruby Gemstone(?: §r§8x(?.*))?", + " {4}§r§5❤ Flawless Ruby Gemstone(?: §r§8x(?.*))?", ), ROUGH_SAPPHIRE_GEMSTONE( "§fRough Sapphire Gemstone", - ".*§f✎ Rough Sapphire Gemstone(?: §r§8x(?.*))?", + " {4}§r§f✎ Rough Sapphire Gemstone(?: §r§8x(?.*))?", ), FLAWED_SAPPHIRE_GEMSTONE( "§aFlawed Sapphire Gemstone", - ".*§a✎ Flawed Sapphire Gemstone(?: §r§8x(?.*))?", + " {4}§r§a✎ Flawed Sapphire Gemstone(?: §r§8x(?.*))?", ), FINE_SAPPHIRE_GEMSTONE( "§9Fine Sapphire Gemstone", - ".*§9✎ Fine Sapphire Gemstone(?: §r§8x(?.*))?", + " {4}§r§9✎ Fine Sapphire Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_SAPPHIRE_GEMSTONE( "§5Flawless Sapphire Gemstone", - ".*§5✎ Flawless Sapphire Gemstone(?: §r§8x(?.*))?", + " {4}§r§5✎ Flawless Sapphire Gemstone(?: §r§8x(?.*))?", ), ROUGH_AMBER_GEMSTONE( "§fRough Amber Gemstone", - ".*§f⸕ Rough Amber Gemstone(?: §r§8x(?.*))?", + " {4}§r§f⸕ Rough Amber Gemstone(?: §r§8x(?.*))?", ), FLAWED_AMBER_GEMSTONE( "§aFlawed Amber Gemstone", - ".*§a⸕ Flawed Amber Gemstone(?: §r§8x(?.*))?", + " {4}§r§a⸕ Flawed Amber Gemstone(?: §r§8x(?.*))?", ), FINE_AMBER_GEMSTONE( "§9Fine Amber Gemstone", - ".*§9⸕ Fine Amber Gemstone(?: §r§8x(?.*))?", + " {4}§r§9⸕ Fine Amber Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_AMBER_GEMSTONE( "§5Flawless Amber Gemstone", - ".*§5⸕ Flawless Amber Gemstone(?: §r§8x(?.*))?", + " {4}§r§5⸕ Flawless Amber Gemstone(?: §r§8x(?.*))?", ), ROUGH_AMETHYST_GEMSTONE( "§fRough Amethyst Gemstone", - ".*§f❈ Rough Amethyst Gemstone(?: §r§8x(?.*))?", + " {4}§r§f❈ Rough Amethyst Gemstone(?: §r§8x(?.*))?", ), FLAWED_AMETHYST_GEMSTONE( "§aFlawed Amethyst Gemstone", - ".*§a❈ Flawed Amethyst Gemstone(?: §r§8x(?.*))?", + " {4}§r§a❈ Flawed Amethyst Gemstone(?: §r§8x(?.*))?", ), FINE_AMETHYST_GEMSTONE( "§9Fine Amethyst Gemstone", - ".*§9❈ Fine Amethyst Gemstone(?: §r§8x(?.*))?", + " {4}§r§9❈ Fine Amethyst Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_AMETHYST_GEMSTONE( "§5Flawless Amethyst Gemstone", - ".*§5❈ Flawless Amethyst Gemstone(?: §r§8x(?.*))?", + " {4}§r§5❈ Flawless Amethyst Gemstone(?: §r§8x(?.*))?", ), ROUGH_JADE_GEMSTONE( "§fRough Jade Gemstone", - ".*§f☘ Rough Jade Gemstone(?: §r§8x(?.*))?", + " {4}§r§f☘ Rough Jade Gemstone(?: §r§8x(?.*))?", ), FLAWED_JADE_GEMSTONE( "§aFlawed Jade Gemstone", - ".*§a☘ Flawed Jade Gemstone(?: §r§8x(?.*))?", + " {4}§r§a☘ Flawed Jade Gemstone(?: §r§8x(?.*))?", ), FINE_JADE_GEMSTONE( "§9Fine Jade Gemstone", - ".*§9☘ Fine Jade Gemstone(?: §r§8x(?.*))?", + " {4}§r§9☘ Fine Jade Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_JADE_GEMSTONE( "§5Flawless Jade Gemstone", - ".*§5☘ Flawless Jade Gemstone(?: §r§8x(?.*))?", + " {4}§r§5☘ Flawless Jade Gemstone(?: §r§8x(?.*))?", ), ROUGH_TOPAZ_GEMSTONE( "§fRough Topaz Gemstone", - ".*§f✧ Rough Topaz Gemstone(?: §r§8x(?.*))?", + " {4}§r§f✧ Rough Topaz Gemstone(?: §r§8x(?.*))?", ), FLAWED_TOPAZ_GEMSTONE( "§aFlawed Topaz Gemstone", - ".*§a✧ Flawed Topaz Gemstone(?: §r§8x(?.*))?", + " {4}§r§a✧ Flawed Topaz Gemstone(?: §r§8x(?.*))?", ), FINE_TOPAZ_GEMSTONE( "§9Fine Topaz Gemstone", - ".*§9✧ Fine Topaz Gemstone(?: §r§8x(?.*))?", + " {4}§r§9✧ Fine Topaz Gemstone(?: §r§8x(?.*))?", ), FLAWLESS_TOPAZ_GEMSTONE( "§5Flawless Topaz Gemstone", - ".*§5✧ Flawless Topaz Gemstone(?: §r§8x(?.*))?", + " {4}§r§5✧ Flawless Topaz Gemstone(?: §r§8x(?.*))?", ), FTX_3070( "§9FTX 3070", - ".*§9FTX 3070(?: §r§8x(?.*))?", + " {4}§r§9FTX 3070(?: §r§8x(?.*))?", ), ELECTRON_TRANSIMTTER( "§9Electron Transmitter", - ".*§9Electron Transmitter(?: §r§8x(?.*))?", + " {4}§r§9Electron Transmitter(?: §r§8x(?.*))?", ), ROBOTRON_REFLECTOR( "§9Robotron Reflector", - ".*§9Robotron Reflector(?: §r§8x(?.*))?", + " {4}§r§9Robotron Reflector(?: §r§8x(?.*))?", ), SUPERLITE_MOTOR( "§9Superlite Motor", - ".*§9Superlite Motor(?: §r§8x(?.*))?", + " {4}§r§9Superlite Motor(?: §r§8x(?.*))?", ), CONTROL_SWITCH( "§9Control Switch", - ".*§9Control Switch(?: §r§8x(?.*))?", + " {4}§r§9Control Switch(?: §r§8x(?.*))?", ), SYNTHETIC_HEART( "§9Synthetic Heart", - ".*§9Synthetic Heart(?: §r§8x(?.*))?", + " {4}§r§9Synthetic Heart(?: §r§8x(?.*))?", ), GOBLIN_EGG( "§9Goblin Egg", - ".*§9Goblin Egg(?: §r§8x(?.*))?", + " {4}§r§9Goblin Egg(?: §r§8x(?.*))?", ), GREEN_GOBLIN_EGG( "§aGreen Goblin Egg", - ".*§a§r§aGreen Goblin Egg(?: §r§8x(?.*))?", + " {4}§r§a§r§aGreen Goblin Egg(?: §r§8x(?.*))?", ), RED_GOBLIN_EGG( "§cRed Goblin Egg", - ".*§9§r§cRed Goblin Egg(?: §r§8x(?.*))?", + " {4}§r§9§r§cRed Goblin Egg(?: §r§8x(?.*))?", ), YELLOW_GOBLIN_EGG( "§eYellow Goblin Egg", - ".*§9§r§eYellow Goblin Egg(?: §r§8x(?.*))?", + " {4}§r§9§r§eYellow Goblin Egg(?: §r§8x(?.*))?", ), BLUE_GOBLIN_EGG( "§3Blue Goblin Egg", - ".*§9§r§3Blue Goblin Egg(?: §r§8x(?.*))?", + " {4}§r§9§r§3Blue Goblin Egg(?: §r§8x(?.*))?", ), WISHING_COMPASS( "§aWishing Compass", - ".*§aWishing Compass(?: §r§8x(?.*))?", + " {4}§r§aWishing Compass(?: §r§8x(?.*))?", ), SLUDGE_JUICE( - "§aSludge Juice", ".*§aSludge Juice(?: §r§8x(?.*))?", + "§aSludge Juice", " {4}§r§aSludge Juice(?: §r§8x(?.*))?", ), ASCENSION_ROPE( "§9Ascension Rope", - ".*§9Ascension Rope(?: §r§8x(?.*))?", + " {4}§r§9Ascension Rope(?: §r§8x(?.*))?", ), TREASURITE( "§5Treasurite", - ".*§5Treasurite(?: §r§8x(?.*))?", + " {4}§r§5Treasurite(?: §r§8x(?.*))?", ), JUNGLE_HEART( "§6Jungle Heart", - ".*§6Jungle Heart(?: §r§8x(?.*))?", + " {4}§r§6Jungle Heart(?: §r§8x(?.*))?", ), PICKONIMBUS_2000( "§5Pickonimbus 2000", - ".*§5Pickonimbus 2000(?: §r§8x(?.*))?", + " {4}§r§5Pickonimbus 2000(?: §r§8x(?.*))?", ), YOGGIE( "§aYoggie", - ".*§aYoggie(?: §r§8x(?.*))?", + " {4}§r§aYoggie(?: §r§8x(?.*))?", ), PREHISTORIC_EGG( "§fPrehistoric Egg", - ".*§fPrehistoric Egg(?: §r§8x(?.*))?", + " {4}§r§fPrehistoric Egg(?: §r§8x(?.*))?", ), OIL_BARREL( "§aOil Barrel", - ".*§aOil Barrel(?: §r§8x(?.*))?", + " {4}§r§aOil Barrel(?: §r§8x(?.*))?", ), DIAMOND_ESSENCE( "§bDiamond Essence", - ".*§dDiamond Essence(?: §r§8x(?.*))?", + " {4}§r§dDiamond Essence(?: §r§8x(?.*))?", ), GOLD_ESSENCE( "§6Gold Essence", - ".*§dGold Essence(?: §r§8x(?.*))?", + " {4}§r§dGold Essence(?: §r§8x(?.*))?", ), ; -- cgit