diff options
author | Linnea Gräf <nea@nea.moe> | 2023-09-26 12:46:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-26 12:46:25 +0200 |
commit | a82bfc634fd60e84cd30c39908c197bd816e8dfc (patch) | |
tree | d570ccc27aa7cdf42037f580ff5ad75e8fb8b2eb | |
parent | 16e31561d042b9c6898ce4ee4a035023bb1a3835 (diff) | |
download | NotEnoughUpdates-REPO-a82bfc634fd60e84cd30c39908c197bd816e8dfc.tar.gz NotEnoughUpdates-REPO-a82bfc634fd60e84cd30c39908c197bd816e8dfc.tar.bz2 NotEnoughUpdates-REPO-a82bfc634fd60e84cd30c39908c197bd816e8dfc.zip |
Add aliases to islands.json (#990)
-rw-r--r-- | .vscode/settings.json | 6 | ||||
-rw-r--r-- | constants/islands.json | 79 |
2 files changed, 78 insertions, 7 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 9b5ac1e7..1fab1c97 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,6 +11,12 @@ "/items/*.json" ], "url": "http://notenoughupdates.org/schemas/items.schema.json" + }, + { + "fileMatch": [ + "/constants/islands.json" + ], + "url": "http://notenoughupdates.org/schemas/islands.schema.json" } ] }
\ No newline at end of file diff --git a/constants/islands.json b/constants/islands.json index fa357c31..750d7cb6 100644 --- a/constants/islands.json +++ b/constants/islands.json @@ -15,7 +15,8 @@ "dungeon_hub": "Dungeon Hub", "crystal_hollows": "Crystal Hollows", "garden": "The Garden", - "rift": "Rift" + "rift": "Rift", + "kuudra": "Kuudra's Hollow" }, "teleporters": [ { @@ -154,11 +155,15 @@ ], "island_warps": [ { - "warp": "nether", - "mode": "crimson_isle", - "x": -361, - "y": 80, - "z": -430 + "warp": "nether", + "aliases": [ + "isle", + "crimson" + ], + "mode": "crimson_isle", + "x": -361, + "y": 80, + "z": -430 }, { "warp": "deep", @@ -177,6 +182,9 @@ { "warp": "mines", "mode": "mining_3", + "aliases": [ + "dmines" + ], "x": -49, "y": 200, "z": -121 @@ -225,6 +233,9 @@ }, { "warp": "spider", + "aliases": [ + "spiders" + ], "mode": "combat_1", "x": -203, "y": 83, @@ -246,6 +257,9 @@ }, { "warp": "crypts", + "aliases": [ + "crypt" + ], "mode": "hub", "x": -162, "y": 61, @@ -267,6 +281,9 @@ }, { "warp": "howl", + "aliases": [ + "howling_cave" + ], "mode": "foraging_1", "x": -333, "y": 90, @@ -274,6 +291,9 @@ }, { "warp": "nest", + "aliases": [ + "mound" + ], "mode": "combat_1", "x": -189, "y": 176, @@ -288,6 +308,9 @@ }, { "warp": "void", + "aliases": [ + "sepulture" + ], "mode": "combat_3", "x": -570, "y": 7, @@ -316,10 +339,52 @@ }, { "warp": "wizard", + "aliases": [ + "wiz", + "tower" + ], "mode": "hub", "x": 42, "y": 122, "z": 69 + }, + { + "warp": "crystals", + "aliases": [ + "cn", + "ch", + "hollows", + "nucleus" + ], + "mode": "crystal_hollows", + "x": 513, + "y": 106, + "z": 526 + }, + { + "warp": "arachne", + "mode": "combat_1", + "x": -282, + "y": 47, + "z": -198 + }, + { + "warp": "smold", + "mode": "crimson_isle", + "x": -283, + "y": 108, + "z": -1031, + "aliases": [ + "smoldering", + "smoldering_tomb" + ] + }, + { + "warp": "garden", + "mode": "garden", + "x": -5, + "y": 71, + "z": 17 } ] -}
\ No newline at end of file +} |