diff options
author | MTOnline69 <97001154+MTOnline69@users.noreply.github.com> | 2024-09-30 00:44:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-30 01:44:22 +0200 |
commit | e4e8a313b66d67107a64db9873996ec58d76566d (patch) | |
tree | e68bec91a666bad6c5a305295b277f146119afd7 /src/main/java/at/hannibal2/skyhanni/data | |
parent | 81bf379423633cbfa4f549f099a3fe8ef7e898c5 (diff) | |
download | skyhanni-e4e8a313b66d67107a64db9873996ec58d76566d.tar.gz skyhanni-e4e8a313b66d67107a64db9873996ec58d76566d.tar.bz2 skyhanni-e4e8a313b66d67107a64db9873996ec58d76566d.zip |
Feature: West Village/Dreadfarm/Living Cave features (#2616)
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/jsonobjects/repo/RiftWoodenButtonsJson.kt | 13 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RiftWoodenButtonsJson.kt b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RiftWoodenButtonsJson.kt new file mode 100644 index 000000000..fdc4befe7 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/data/jsonobjects/repo/RiftWoodenButtonsJson.kt @@ -0,0 +1,13 @@ +package at.hannibal2.skyhanni.data.jsonobjects.repo + +import at.hannibal2.skyhanni.utils.LorenzVec +import com.google.gson.annotations.Expose + +data class RiftWoodenButtonsJson( + @Expose val houses: Map<String, List<ButtonSpots>> +) + +data class ButtonSpots( + @Expose val position: LorenzVec, + @Expose val buttons: List<LorenzVec> +) 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 6bf00edaf..8efcf4621 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/model/GraphNodeTag.kt @@ -42,6 +42,7 @@ enum class GraphNodeTag( // Rift RIFT_ENIGMA("rift_enigma", LorenzColor.DARK_PURPLE, "Enigma Soul", "Enigma Souls in the Rift.", onlyIsland = IslandType.THE_RIFT), + RIFT_BUTTONS_QUEST("rift_buttons_quest", LorenzColor.LIGHT_PURPLE, "Wooden Buttons", "A spot to hit wooden buttons for the Dreadfarm Enigma Soul.", 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", |