aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-09-24 10:28:06 +0200
committerGitHub <noreply@github.com>2024-09-24 10:28:06 +0200
commitcc8a3dba69e8f1474a33a7e47b32d452f11735fd (patch)
tree14d9ddc21d47f7bbeffc1f3f6acf9ae9bf083741 /src/main/java/at/hannibal2/skyhanni/data
parent1e9764d1d1209177d4a939a9b812931a7d49a926 (diff)
downloadskyhanni-cc8a3dba69e8f1474a33a7e47b32d452f11735fd.tar.gz
skyhanni-cc8a3dba69e8f1474a33a7e47b32d452f11735fd.tar.bz2
skyhanni-cc8a3dba69e8f1474a33a7e47b32d452f11735fd.zip
Feature: /shnavigate (#2575)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt28
1 files changed, 23 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt b/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt
index 2cdc9e7e0..6bf00edaf 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt
@@ -6,7 +6,7 @@ import at.hannibal2.skyhanni.utils.LorenzColor
enum class GraphNodeTag(
val internalName: String,
val color: LorenzColor,
- cleanName: String,
+ val cleanName: String,
val description: String,
val onlyIsland: IslandType? = null,
) {
@@ -17,7 +17,7 @@ enum class GraphNodeTag(
AREA("area", LorenzColor.DARK_GREEN, "Area", "A big SkyBlock area."),
SMALL_AREA("small_area", LorenzColor.GREEN, "Small Area", "A small SkyBlock area, e.g. a house."),
POI("poi", LorenzColor.WHITE, "Point of Interest", "A relevant spot or a landmark on the map."),
-// LAUNCH_PAD("launch", LorenzColor.WHITE, "Launch Pad", "Slime blocks sending you to another server."),
+ // LAUNCH_PAD("launch", LorenzColor.WHITE, "Launch Pad", "Slime blocks sending you to another server."),
TELEPORT("teleport", LorenzColor.BLUE, "Teleport", "A spot from/to teleport."),
// on multiple islands
@@ -43,18 +43,36 @@ enum class GraphNodeTag(
// Rift
RIFT_ENIGMA("rift_enigma", LorenzColor.DARK_PURPLE, "Enigma Soul", "Enigma Souls in the Rift.", onlyIsland = IslandType.THE_RIFT),
RIFT_EYE("rift_eye", LorenzColor.DARK_RED, "Rift Eye", "An Eye in the Rift to teleport to.", onlyIsland = IslandType.THE_RIFT),
- RIFT_MONTEZUMA("rift_montezuma", LorenzColor.GRAY, "Montezuma Soul Piece", "A piece of the Montezuma Soul.", onlyIsland = IslandType.THE_RIFT),
+ RIFT_MONTEZUMA(
+ "rift_montezuma",
+ LorenzColor.GRAY,
+ "Montezuma Soul Piece",
+ "A piece of the Montezuma Soul.",
+ onlyIsland = IslandType.THE_RIFT,
+ ),
RIFT_EFFIGY("rift_effigy", LorenzColor.RED, "Blood Effigies", "Locations of the Blood Effigies.", onlyIsland = IslandType.THE_RIFT),
// Spider's Den
- SPIDER_RELIC("SPIDER_RELIC", LorenzColor.DARK_PURPLE, "Spider's Relic", "An relic in the Spider's Den.", onlyIsland = IslandType.SPIDER_DEN),
+ SPIDER_RELIC(
+ "SPIDER_RELIC",
+ LorenzColor.DARK_PURPLE,
+ "Spider's Relic",
+ "An relic in the Spider's Den.",
+ onlyIsland = IslandType.SPIDER_DEN,
+ ),
// Dwarven Mines
MINES_EMISSARY("mines_emissary", LorenzColor.GOLD, "Mines Emissary", "An Emissary to the king.", onlyIsland = IslandType.DWARVEN_MINES),
// commission areas
// Crimson Isles
- CRIMSON_MINIBOSS("crimson_miniboss", LorenzColor.RED, "Crimson Miniboss", "A Miniboss in the Crimson Isle.", onlyIsland = IslandType.CRIMSON_ISLE),
+ CRIMSON_MINIBOSS(
+ "crimson_miniboss",
+ LorenzColor.RED,
+ "Crimson Miniboss",
+ "A Miniboss in the Crimson Isle.",
+ onlyIsland = IslandType.CRIMSON_ISLE,
+ ),
// The End
END_GOLEM("end_golem", LorenzColor.RED, "Golem Spawn", "A spot where the golem can spawn in the End.", onlyIsland = IslandType.THE_END),