diff --git a/.prettierrc b/.prettierrc index a35a4b7..6f8bf42 100644 --- a/.prettierrc +++ b/.prettierrc @@ -7,7 +7,6 @@ "trailingComma": "all", "bracketSpacing": true, "jsxBracketSameLine": false, - "filepath": "src", "requirePragma": false, "insertPragma": false, "proseWrap": "never" diff --git a/README.md b/README.md index 8f5cf62..6ea6da6 100644 --- a/README.md +++ b/README.md @@ -1,37 +1 @@ -# Qwik + Vite - -## Qwik in CSR mode - -This starter is using a pure CSR (Client Side Rendering) mode. This means, that the application is fully bootstrapped in the browser. Most of Qwik innovations however take advantage of SSR (Server Side Rendering) mode. - -```ts -export default defineConfig({ - plugins: [ - qwikVite({ - csr: true, - }), - ], -}); -``` - -Use `npm create qwik@latest` to create a full production ready Qwik application, using SSR and [QwikCity](https://qwik.builder.io/docs/qwikcity/), our server-side metaframwork. - -## Usage - -```bash -$ npm install # or pnpm install or yarn install -``` - -Learn more on the [Qwik Website](https://qwik.builder.io) and join our community on our [Discord](https://qwik.builder.io/chat) - -## Available Scripts - -In the project directory, you can run: - -### `npm run dev` - -Runs the app in the development mode.
Open [http://localhost:5173](http://localhost:5173) to view it in the browser. - -### `npm run build` - -Builds the app for production to the `dist` folder.
+# Blasphemous 2 Interactive Map diff --git a/package-lock.json b/package-lock.json index e9d4c86..a58aca3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "blasphemous-map", + "name": "blasphemous2-interactive-map", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "blasphemous-map", + "name": "blasphemous2-interactive-map", "version": "0.0.0", "dependencies": { "lodash-es": "^4.17.21", @@ -19,7 +19,7 @@ "eslint-config-prettier": "^9.0.0", "prettier": "^3.1.0", "typescript": "^5.2.2", - "vite": "^5.0.0", + "vite": "5.0.5", "vite-plugin-solid": "^2.7.2", "vitest": "^0.34.6" } @@ -3154,9 +3154,9 @@ } }, "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", "dev": true, "funding": [ { @@ -3173,7 +3173,7 @@ } ], "dependencies": { - "nanoid": "^3.3.6", + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" }, @@ -3669,13 +3669,13 @@ "dev": true }, "node_modules/vite": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.2.tgz", - "integrity": "sha512-6CCq1CAJCNM1ya2ZZA7+jS2KgnhbzvxakmlIjN24cF/PXhRMzpM/z8QgsVJA/Dm5fWUWnVEsmtBoMhmerPxT0g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.5.tgz", + "integrity": "sha512-OekeWqR9Ls56f3zd4CaxzbbS11gqYkEiBtnWFFgYR2WV8oPJRRKq0mpskYy/XaoCL3L7VINDhqqOMNDiYdGvGg==", "dev": true, "dependencies": { "esbuild": "^0.19.3", - "postcss": "^8.4.31", + "postcss": "^8.4.32", "rollup": "^4.2.0" }, "bin": { diff --git a/package.json b/package.json index c39fd4e..211e9bd 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "blasphemous-map", + "name": "blasphemous2-interactive-map", "private": true, "version": "0.0.0", "type": "module", @@ -17,7 +17,7 @@ "eslint-config-prettier": "^9.0.0", "prettier": "^3.1.0", "typescript": "^5.2.2", - "vite": "^5.0.0", + "vite": "5.0.5", "vite-plugin-solid": "^2.7.2", "vitest": "^0.34.6" }, diff --git a/src/data/marker.ts b/src/data/marker.ts index 6135415..fe6c265 100644 --- a/src/data/marker.ts +++ b/src/data/marker.ts @@ -2,7 +2,7 @@ import { Point } from '../type/Point.ts'; import { IMAGE_BASE_URL } from '../constants/url.ts'; type MarkerType = - 'SISTER' // 자매 + | 'SISTER' // 자매 | 'ROSARY' // 묵주 끈 | 'WEAPON' | 'CHERUB' // 아기 천사 @@ -23,13 +23,19 @@ type MarkerType = | 'TOOL' | 'FERVENT_KISS' | 'DAUGHTER' - | 'CRYSTAL_SHARD' + | 'CRYSTAL_SHARD'; export type Marker = { id: number; type: MarkerType; position: Point; -} + detail?: MarkerDetail; +}; + +export type MarkerDetail = { + name: string; + description: string; +}; const MARKER_URL = IMAGE_BASE_URL + '/marker'; export const DefaultMarkerImageMap: Record = { @@ -55,1752 +61,1776 @@ export const DefaultMarkerImageMap: Record = { TRIBUTE: MARKER_URL + '/tribute.png', WAXSEED: MARKER_URL + '/waxseed.png', WEAPON: '', +}; +export const DefaultMarkerDetailMap: Record = { + ABILITY: undefined, + ALTARPIECE: undefined, + BEAD: undefined, + BOSS: undefined, + CHALICE: undefined, + CHARIOT: undefined, + CHERUB: undefined, + CRYSTAL_SHARD: undefined, + DAUGHTER: undefined, + FERVENT_KISS: undefined, + HIDDEN_SYMBOL: undefined, + MARTYRDOM: undefined, + NPC: undefined, + PRAYER: undefined, + QUEST_ITEM: undefined, + RECEPTACLE: undefined, + ROSARY: undefined, + SISTER: undefined, + TOOL: undefined, + TRIBUTE: undefined, + WAXSEED: undefined, + WEAPON: undefined, }; export const MarkerList: Marker[] = [ { - 'type': 'SISTER', - 'position': { - 'x': 283, - 'y': 951, + type: 'SISTER', + position: { + x: 283, + y: 951, }, - 'id': 0, + id: 0, }, { - 'type': 'SISTER', - 'position': { - 'x': 265, - 'y': 1065, + type: 'SISTER', + position: { + x: 265, + y: 1065, }, - 'id': 1, + id: 1, }, { - 'type': 'SISTER', - 'position': { - 'x': 382, - 'y': 1347, + type: 'SISTER', + position: { + x: 382, + y: 1347, }, - 'id': 2, + id: 2, }, { - 'type': 'SISTER', - 'position': { - 'x': 641, - 'y': 1158, + type: 'SISTER', + position: { + x: 641, + y: 1158, }, - 'id': 3, + id: 3, }, { - 'type': 'SISTER', - 'position': { - 'x': 1415, - 'y': 1626, + type: 'SISTER', + position: { + x: 1415, + y: 1626, }, - 'id': 4, + id: 4, }, { - 'type': 'SISTER', - 'position': { - 'x': 1408, - 'y': 1187, + type: 'SISTER', + position: { + x: 1408, + y: 1187, }, - 'id': 5, + id: 5, }, { - 'type': 'SISTER', - 'position': { - 'x': 1681, - 'y': 1155, + type: 'SISTER', + position: { + x: 1681, + y: 1155, }, - 'id': 6, + id: 6, }, { - 'type': 'SISTER', - 'position': { - 'x': 2127, - 'y': 1363, + type: 'SISTER', + position: { + x: 2127, + y: 1363, }, - 'id': 7, + id: 7, }, { - 'type': 'SISTER', - 'position': { - 'x': 1794, - 'y': 1130, + type: 'SISTER', + position: { + x: 1794, + y: 1130, }, - 'id': 8, + id: 8, }, { - 'type': 'WEAPON', - 'position': { - 'x': 238, - 'y': 975, + type: 'WEAPON', + position: { + x: 238, + y: 975, }, - 'id': 9, + id: 9, }, { - 'type': 'WEAPON', - 'position': { - 'x': 645, - 'y': 1511, + type: 'WEAPON', + position: { + x: 645, + y: 1511, }, - 'id': 10, + id: 10, }, { - 'type': 'WEAPON', - 'position': { - 'x': 1263, - 'y': 1929, + type: 'WEAPON', + position: { + x: 1263, + y: 1929, }, - 'id': 11, + id: 11, }, { - 'type': 'WEAPON', - 'position': { - 'x': 2169, - 'y': 1426, + type: 'WEAPON', + position: { + x: 2169, + y: 1426, }, - 'id': 12, + id: 12, }, { - 'type': 'WEAPON', - 'position': { - 'x': 1736, - 'y': 1148, + type: 'WEAPON', + position: { + x: 1736, + y: 1148, }, - 'id': 13, + id: 13, }, { - 'type': 'WEAPON', - 'position': { - 'x': 2434, - 'y': 1067, + type: 'WEAPON', + position: { + x: 2434, + y: 1067, }, - 'id': 14, + id: 14, }, { - 'type': 'WEAPON', - 'position': { - 'x': 2479, - 'y': 831, + type: 'WEAPON', + position: { + x: 2479, + y: 831, }, - 'id': 15, + id: 15, }, { - 'type': 'WEAPON', - 'position': { - 'x': 1177, - 'y': 861, + type: 'WEAPON', + position: { + x: 1177, + y: 861, }, - 'id': 16, + id: 16, }, { - 'type': 'WEAPON', - 'position': { - 'x': 1294, - 'y': 676, + type: 'WEAPON', + position: { + x: 1294, + y: 676, }, - 'id': 17, + id: 17, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 196, - 'y': 1071, + type: 'ALTARPIECE', + position: { + x: 196, + y: 1071, }, - 'id': 18, + id: 18, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 229, - 'y': 1812, + type: 'ALTARPIECE', + position: { + x: 229, + y: 1812, }, - 'id': 19, + id: 19, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 902, - 'y': 1336, + type: 'ALTARPIECE', + position: { + x: 902, + y: 1336, }, - 'id': 20, + id: 20, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 905, - 'y': 1304, + type: 'ALTARPIECE', + position: { + x: 905, + y: 1304, }, - 'id': 21, + id: 21, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 1470, - 'y': 1277, + type: 'ALTARPIECE', + position: { + x: 1470, + y: 1277, }, - 'id': 22, + id: 22, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 1948, - 'y': 1273, + type: 'ALTARPIECE', + position: { + x: 1948, + y: 1273, }, - 'id': 23, + id: 23, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 2002, - 'y': 1425, + type: 'ALTARPIECE', + position: { + x: 2002, + y: 1425, }, - 'id': 24, + id: 24, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 2474, - 'y': 924, + type: 'ALTARPIECE', + position: { + x: 2474, + y: 924, }, - 'id': 25, + id: 25, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 407, - 'y': 1126, + type: 'ALTARPIECE', + position: { + x: 407, + y: 1126, }, - 'id': 26, + id: 26, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 725, - 'y': 1095, + type: 'ALTARPIECE', + position: { + x: 725, + y: 1095, }, - 'id': 27, + id: 27, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 936, - 'y': 713, + type: 'ALTARPIECE', + position: { + x: 936, + y: 713, }, - 'id': 28, + id: 28, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 1322, - 'y': 890, + type: 'ALTARPIECE', + position: { + x: 1322, + y: 890, }, - 'id': 29, + id: 29, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 201, - 'y': 1100, + type: 'MARTYRDOM', + position: { + x: 201, + y: 1100, }, - 'id': 30, + id: 30, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1090, - 'y': 1600, + type: 'MARTYRDOM', + position: { + x: 1090, + y: 1600, }, - 'id': 31, + id: 31, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1133, - 'y': 1630, + type: 'MARTYRDOM', + position: { + x: 1133, + y: 1630, }, - 'id': 32, + id: 32, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1218, - 'y': 1720, + type: 'MARTYRDOM', + position: { + x: 1218, + y: 1720, }, - 'id': 33, + id: 33, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1178, - 'y': 1952, + type: 'MARTYRDOM', + position: { + x: 1178, + y: 1952, }, - 'id': 34, + id: 34, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 494, - 'y': 1333, + type: 'MARTYRDOM', + position: { + x: 494, + y: 1333, }, - 'id': 35, + id: 35, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 823, - 'y': 1360, + type: 'MARTYRDOM', + position: { + x: 823, + y: 1360, }, - 'id': 36, + id: 36, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1174, - 'y': 1455, + type: 'MARTYRDOM', + position: { + x: 1174, + y: 1455, }, - 'id': 37, + id: 37, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1354, - 'y': 1484, + type: 'MARTYRDOM', + position: { + x: 1354, + y: 1484, }, - 'id': 38, + id: 38, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1295, - 'y': 1479, + type: 'MARTYRDOM', + position: { + x: 1295, + y: 1479, }, - 'id': 39, + id: 39, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1295, - 'y': 1286, + type: 'MARTYRDOM', + position: { + x: 1295, + y: 1286, }, - 'id': 40, + id: 40, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1525, - 'y': 1518, + type: 'MARTYRDOM', + position: { + x: 1525, + y: 1518, }, - 'id': 41, + id: 41, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1651, - 'y': 1303, + type: 'MARTYRDOM', + position: { + x: 1651, + y: 1303, }, - 'id': 42, + id: 42, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1384, - 'y': 1214, + type: 'MARTYRDOM', + position: { + x: 1384, + y: 1214, }, - 'id': 43, + id: 43, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1615, - 'y': 1096, + type: 'MARTYRDOM', + position: { + x: 1615, + y: 1096, }, - 'id': 44, + id: 44, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1709, - 'y': 1007, + type: 'MARTYRDOM', + position: { + x: 1709, + y: 1007, }, - 'id': 45, + id: 45, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 2037, - 'y': 983, + type: 'MARTYRDOM', + position: { + x: 2037, + y: 983, }, - 'id': 46, + id: 46, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 2271, - 'y': 947, + type: 'MARTYRDOM', + position: { + x: 2271, + y: 947, }, - 'id': 47, + id: 47, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1443, - 'y': 832, + type: 'MARTYRDOM', + position: { + x: 1443, + y: 832, }, - 'id': 48, + id: 48, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1620, - 'y': 710, + type: 'MARTYRDOM', + position: { + x: 1620, + y: 710, }, - 'id': 49, + id: 49, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 441, - 'y': 1483, + type: 'MARTYRDOM', + position: { + x: 441, + y: 1483, }, - 'id': 50, + id: 50, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 435, - 'y': 1126, + type: 'MARTYRDOM', + position: { + x: 435, + y: 1126, }, - 'id': 51, + id: 51, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 610, - 'y': 1071, + type: 'MARTYRDOM', + position: { + x: 610, + y: 1071, }, - 'id': 52, + id: 52, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 851, - 'y': 949, + type: 'MARTYRDOM', + position: { + x: 851, + y: 949, }, - 'id': 53, + id: 53, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 792, - 'y': 1129, + type: 'MARTYRDOM', + position: { + x: 792, + y: 1129, }, - 'id': 54, + id: 54, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 938, - 'y': 1126, + type: 'MARTYRDOM', + position: { + x: 938, + y: 1126, }, - 'id': 55, + id: 55, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 951, - 'y': 979, + type: 'MARTYRDOM', + position: { + x: 951, + y: 979, }, - 'id': 56, + id: 56, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 951, - 'y': 929, + type: 'MARTYRDOM', + position: { + x: 951, + y: 929, }, - 'id': 57, + id: 57, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 953, - 'y': 810, + type: 'MARTYRDOM', + position: { + x: 953, + y: 810, }, - 'id': 58, + id: 58, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 940, - 'y': 742, + type: 'MARTYRDOM', + position: { + x: 940, + y: 742, }, - 'id': 59, + id: 59, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1106, - 'y': 420, + type: 'MARTYRDOM', + position: { + x: 1106, + y: 420, }, - 'id': 60, + id: 60, }, { - 'type': 'MARTYRDOM', - 'position': { - 'x': 1237, - 'y': 383, + type: 'MARTYRDOM', + position: { + x: 1237, + y: 383, }, - 'id': 61, + id: 61, }, { - 'type': 'ROSARY', - 'position': { - 'x': 1317, - 'y': 1486, + type: 'ROSARY', + position: { + x: 1317, + y: 1486, }, - 'id': 62, + id: 62, }, { - 'type': 'ROSARY', - 'position': { - 'x': 303, - 'y': 937, + type: 'ROSARY', + position: { + x: 303, + y: 937, }, - 'id': 63, + id: 63, }, { - 'type': 'ROSARY', - 'position': { - 'x': 1262, - 'y': 837, + type: 'ROSARY', + position: { + x: 1262, + y: 837, }, - 'id': 64, + id: 64, }, { - 'type': 'CHARIOT', - 'position': { - 'x': 1317, - 'y': 1486, + type: 'CHARIOT', + position: { + x: 1317, + y: 1486, }, - 'id': 65, + id: 65, }, { - 'type': 'CHARIOT', - 'position': { - 'x': 1589, - 'y': 1099, + type: 'CHARIOT', + position: { + x: 1589, + y: 1099, }, - 'id': 66, + id: 66, }, { - 'type': 'CHARIOT', - 'position': { - 'x': 1682, - 'y': 1011, + type: 'CHARIOT', + position: { + x: 1682, + y: 1011, }, - 'id': 67, + id: 67, }, { - 'type': 'NPC', - 'position': { - 'x': 202, - 'y': 1193, + type: 'NPC', + position: { + x: 202, + y: 1193, }, - 'id': 68, + id: 68, }, { - 'type': 'NPC', - 'position': { - 'x': 260, - 'y': 1803, + type: 'NPC', + position: { + x: 260, + y: 1803, }, - 'id': 69, + id: 69, }, { - 'type': 'NPC', - 'position': { - 'x': 672, - 'y': 1633, + type: 'NPC', + position: { + x: 672, + y: 1633, }, - 'id': 70, + id: 70, }, { - 'type': 'NPC', - 'position': { - 'x': 1152, - 'y': 2019, + type: 'NPC', + position: { + x: 1152, + y: 2019, }, - 'id': 71, + id: 71, }, { - 'type': 'NPC', - 'position': { - 'x': 319, - 'y': 1329, + type: 'NPC', + position: { + x: 319, + y: 1329, }, - 'id': 72, + id: 72, }, { - 'type': 'NPC', - 'position': { - 'x': 1175, - 'y': 1212, + type: 'NPC', + position: { + x: 1175, + y: 1212, }, - 'id': 73, + id: 73, }, { - 'type': 'NPC', - 'position': { - 'x': 1268, - 'y': 1308, + type: 'NPC', + position: { + x: 1268, + y: 1308, }, - 'id': 74, + id: 74, }, { - 'type': 'NPC', - 'position': { - 'x': 1650, - 'y': 1516, + type: 'NPC', + position: { + x: 1650, + y: 1516, }, - 'id': 75, + id: 75, }, { - 'type': 'NPC', - 'position': { - 'x': 2064, - 'y': 1218, + type: 'NPC', + position: { + x: 2064, + y: 1218, }, - 'id': 76, + id: 76, }, { - 'type': 'NPC', - 'position': { - 'x': 2329, - 'y': 980, + type: 'NPC', + position: { + x: 2329, + y: 980, }, - 'id': 77, + id: 77, }, { - 'type': 'NPC', - 'position': { - 'x': 1526, - 'y': 654, + type: 'NPC', + position: { + x: 1526, + y: 654, }, - 'id': 78, + id: 78, }, { - 'type': 'NPC', - 'position': { - 'x': 1351, - 'y': 744, + type: 'NPC', + position: { + x: 1351, + y: 744, }, - 'id': 79, + id: 79, }, { - 'type': 'NPC', - 'position': { - 'x': 553, - 'y': 1156, + type: 'NPC', + position: { + x: 553, + y: 1156, }, - 'id': 80, + id: 80, }, { - 'type': 'NPC', - 'position': { - 'x': 939, - 'y': 1038, + type: 'NPC', + position: { + x: 939, + y: 1038, }, - 'id': 81, + id: 81, }, { - 'type': 'NPC', - 'position': { - 'x': 1148, - 'y': 654, + type: 'NPC', + position: { + x: 1148, + y: 654, }, - 'id': 82, + id: 82, }, { - 'type': 'ABILITY', - 'position': { - 'x': 202, - 'y': 1220, + type: 'ABILITY', + position: { + x: 202, + y: 1220, }, - 'id': 83, + id: 83, }, { - 'type': 'ABILITY', - 'position': { - 'x': 1060, - 'y': 2080, + type: 'ABILITY', + position: { + x: 1060, + y: 2080, }, - 'id': 84, + id: 84, }, { - 'type': 'ABILITY', - 'position': { - 'x': 1295, - 'y': 1569, + type: 'ABILITY', + position: { + x: 1295, + y: 1569, }, - 'id': 85, + id: 85, }, { - 'type': 'ABILITY', - 'position': { - 'x': 2301, - 'y': 946, + type: 'ABILITY', + position: { + x: 2301, + y: 946, }, - 'id': 86, + id: 86, }, { - 'type': 'BOSS', - 'position': { - 'x': 243, - 'y': 1326, + type: 'BOSS', + position: { + x: 243, + y: 1326, }, - 'id': 87, + id: 87, }, { - 'type': 'BOSS', - 'position': { - 'x': 511, - 'y': 1633, + type: 'BOSS', + position: { + x: 511, + y: 1633, }, - 'id': 88, + id: 88, }, { - 'type': 'BOSS', - 'position': { - 'x': 1116, - 'y': 2017, + type: 'BOSS', + position: { + x: 1116, + y: 2017, }, - 'id': 89, + id: 89, }, { - 'type': 'BOSS', - 'position': { - 'x': 547, - 'y': 1366, + type: 'BOSS', + position: { + x: 547, + y: 1366, }, - 'id': 90, + id: 90, }, { - 'type': 'BOSS', - 'position': { - 'x': 1953, - 'y': 1427, + type: 'BOSS', + position: { + x: 1953, + y: 1427, }, - 'id': 91, + id: 91, }, { - 'type': 'BOSS', - 'position': { - 'x': 2139, - 'y': 831, + type: 'BOSS', + position: { + x: 2139, + y: 831, }, - 'id': 92, + id: 92, }, { - 'type': 'BOSS', - 'position': { - 'x': 2272, - 'y': 534, + type: 'BOSS', + position: { + x: 2272, + y: 534, }, - 'id': 93, + id: 93, }, { - 'type': 'BOSS', - 'position': { - 'x': 1478, - 'y': 655, + type: 'BOSS', + position: { + x: 1478, + y: 655, }, - 'id': 94, + id: 94, }, { - 'type': 'BOSS', - 'position': { - 'x': 598, - 'y': 1162, + type: 'BOSS', + position: { + x: 598, + y: 1162, }, - 'id': 95, + id: 95, }, { - 'type': 'BOSS', - 'position': { - 'x': 1218, - 'y': 120, + type: 'BOSS', + position: { + x: 1218, + y: 120, }, - 'id': 96, + id: 96, }, { - 'type': 'BOSS', - 'position': { - 'x': 1184, - 'y': 69, + type: 'BOSS', + position: { + x: 1184, + y: 69, }, - 'id': 97, + id: 97, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 216, - 'y': 1369, + type: 'QUEST_ITEM', + position: { + x: 216, + y: 1369, }, - 'id': 98, + id: 98, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 2031, - 'y': 1012, + type: 'QUEST_ITEM', + position: { + x: 2031, + y: 1012, }, - 'id': 99, + id: 99, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 2122, - 'y': 952, + type: 'QUEST_ITEM', + position: { + x: 2122, + y: 952, }, - 'id': 100, + id: 100, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 461, - 'y': 1042, + type: 'QUEST_ITEM', + position: { + x: 461, + y: 1042, }, - 'id': 101, + id: 101, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1293, - 'y': 1690, + type: 'QUEST_ITEM', + position: { + x: 1293, + y: 1690, }, - 'id': 102, + id: 102, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 349, - 'y': 1331, + type: 'QUEST_ITEM', + position: { + x: 349, + y: 1331, }, - 'id': 103, + id: 103, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1063, - 'y': 1278, + type: 'QUEST_ITEM', + position: { + x: 1063, + y: 1278, }, - 'id': 104, + id: 104, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1172, - 'y': 1290, + type: 'QUEST_ITEM', + position: { + x: 1172, + y: 1290, }, - 'id': 105, + id: 105, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1246, - 'y': 1547, + type: 'QUEST_ITEM', + position: { + x: 1246, + y: 1547, }, - 'id': 106, + id: 106, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1251, - 'y': 1310, + type: 'QUEST_ITEM', + position: { + x: 1251, + y: 1310, }, - 'id': 107, + id: 107, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1588, - 'y': 1394, + type: 'QUEST_ITEM', + position: { + x: 1588, + y: 1394, }, - 'id': 108, + id: 108, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1976, - 'y': 1305, + type: 'QUEST_ITEM', + position: { + x: 1976, + y: 1305, }, - 'id': 109, + id: 109, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 2122, - 'y': 1008, + type: 'QUEST_ITEM', + position: { + x: 2122, + y: 1008, }, - 'id': 110, + id: 110, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 2304, - 'y': 706, + type: 'QUEST_ITEM', + position: { + x: 2304, + y: 706, }, - 'id': 111, + id: 111, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1505, - 'y': 893, + type: 'QUEST_ITEM', + position: { + x: 1505, + y: 893, }, - 'id': 112, + id: 112, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 557, - 'y': 921, + type: 'QUEST_ITEM', + position: { + x: 557, + y: 921, }, - 'id': 113, + id: 113, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1140, - 'y': 893, + type: 'QUEST_ITEM', + position: { + x: 1140, + y: 893, }, - 'id': 114, + id: 114, }, { - 'type': 'QUEST_ITEM', - 'position': { - 'x': 1205, - 'y': 655, + type: 'QUEST_ITEM', + position: { + x: 1205, + y: 655, }, - 'id': 115, + id: 115, }, { - 'type': 'FERVENT_KISS', - 'position': { - 'x': 1441, - 'y': 1409, + type: 'FERVENT_KISS', + position: { + x: 1441, + y: 1409, }, - 'id': 116, + id: 116, }, { - 'type': 'FERVENT_KISS', - 'position': { - 'x': 2152, - 'y': 1395, + type: 'FERVENT_KISS', + position: { + x: 2152, + y: 1395, }, - 'id': 117, + id: 117, }, { - 'type': 'FERVENT_KISS', - 'position': { - 'x': 1621, - 'y': 815, + type: 'FERVENT_KISS', + position: { + x: 1621, + y: 815, }, - 'id': 118, + id: 118, }, { - 'type': 'FERVENT_KISS', - 'position': { - 'x': 1051, - 'y': 799, + type: 'FERVENT_KISS', + position: { + x: 1051, + y: 799, }, - 'id': 119, + id: 119, }, { - 'type': 'RECEPTACLE', - 'position': { - 'x': 264, - 'y': 1357, + type: 'RECEPTACLE', + position: { + x: 264, + y: 1357, }, - 'id': 120, + id: 120, }, { - 'type': 'RECEPTACLE', - 'position': { - 'x': 1087, - 'y': 1332, + type: 'RECEPTACLE', + position: { + x: 1087, + y: 1332, }, - 'id': 121, + id: 121, }, { - 'type': 'RECEPTACLE', - 'position': { - 'x': 1294, - 'y': 827, + type: 'RECEPTACLE', + position: { + x: 1294, + y: 827, }, - 'id': 122, + id: 122, }, { - 'type': 'CHERUB', - 'position': { - 'x': 229, - 'y': 1484, + type: 'CHERUB', + position: { + x: 229, + y: 1484, }, - 'id': 123, + id: 123, }, { - 'type': 'CHERUB', - 'position': { - 'x': 301, - 'y': 1514, + type: 'CHERUB', + position: { + x: 301, + y: 1514, }, - 'id': 124, + id: 124, }, { - 'type': 'CHERUB', - 'position': { - 'x': 185, - 'y': 1623, + type: 'CHERUB', + position: { + x: 185, + y: 1623, }, - 'id': 125, + id: 125, }, { - 'type': 'CHERUB', - 'position': { - 'x': 170, - 'y': 1783, + type: 'CHERUB', + position: { + x: 170, + y: 1783, }, - 'id': 126, + id: 126, }, { - 'type': 'CHERUB', - 'position': { - 'x': 583, - 'y': 1574, + type: 'CHERUB', + position: { + x: 583, + y: 1574, }, - 'id': 127, + id: 127, }, { - 'type': 'CHERUB', - 'position': { - 'x': 735, - 'y': 1629, + type: 'CHERUB', + position: { + x: 735, + y: 1629, }, - 'id': 128, + id: 128, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1012, - 'y': 1753, + type: 'CHERUB', + position: { + x: 1012, + y: 1753, }, - 'id': 129, + id: 129, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1354, - 'y': 1662, + type: 'CHERUB', + position: { + x: 1354, + y: 1662, }, - 'id': 130, + id: 130, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1113, - 'y': 1942, + type: 'CHERUB', + position: { + x: 1113, + y: 1942, }, - 'id': 131, + id: 131, }, { - 'type': 'CHERUB', - 'position': { - 'x': 788, - 'y': 1313, + type: 'CHERUB', + position: { + x: 788, + y: 1313, }, - 'id': 132, + id: 132, }, { - 'type': 'CHERUB', - 'position': { - 'x': 869, - 'y': 1306, + type: 'CHERUB', + position: { + x: 869, + y: 1306, }, - 'id': 133, + id: 133, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1063, - 'y': 1301, + type: 'CHERUB', + position: { + x: 1063, + y: 1301, }, - 'id': 134, + id: 134, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1208, - 'y': 1340, + type: 'CHERUB', + position: { + x: 1208, + y: 1340, }, - 'id': 135, + id: 135, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1273, - 'y': 1512, + type: 'CHERUB', + position: { + x: 1273, + y: 1512, }, - 'id': 136, + id: 136, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1405, - 'y': 1474, + type: 'CHERUB', + position: { + x: 1405, + y: 1474, }, - 'id': 137, + id: 137, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1265, - 'y': 1270, + type: 'CHERUB', + position: { + x: 1265, + y: 1270, }, - 'id': 138, + id: 138, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1440, - 'y': 1236, + type: 'CHERUB', + position: { + x: 1440, + y: 1236, }, - 'id': 139, + id: 139, }, { - 'type': 'CHERUB', - 'position': { - 'x': 2098, - 'y': 1272, + type: 'CHERUB', + position: { + x: 2098, + y: 1272, }, - 'id': 140, + id: 140, }, { - 'type': 'CHERUB', - 'position': { - 'x': 2125, - 'y': 1209, + type: 'CHERUB', + position: { + x: 2125, + y: 1209, }, - 'id': 141, + id: 141, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1858, - 'y': 1064, + type: 'CHERUB', + position: { + x: 1858, + y: 1064, }, - 'id': 142, + id: 142, }, { - 'type': 'CHERUB', - 'position': { - 'x': 2329, - 'y': 1067, + type: 'CHERUB', + position: { + x: 2329, + y: 1067, }, - 'id': 143, + id: 143, }, { - 'type': 'CHERUB', - 'position': { - 'x': 2403, - 'y': 833, + type: 'CHERUB', + position: { + x: 2403, + y: 833, }, - 'id': 144, + id: 144, }, { - 'type': 'CHERUB', - 'position': { - 'x': 2265, - 'y': 528, + type: 'CHERUB', + position: { + x: 2265, + y: 528, }, - 'id': 145, + id: 145, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1500, - 'y': 716, + type: 'CHERUB', + position: { + x: 1500, + y: 716, }, - 'id': 146, + id: 146, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1517, - 'y': 775, + type: 'CHERUB', + position: { + x: 1517, + y: 775, }, - 'id': 147, + id: 147, }, { - 'type': 'CHERUB', - 'position': { - 'x': 499, - 'y': 928, + type: 'CHERUB', + position: { + x: 499, + y: 928, }, - 'id': 148, + id: 148, }, { - 'type': 'CHERUB', - 'position': { - 'x': 825, - 'y': 1130, + type: 'CHERUB', + position: { + x: 825, + y: 1130, }, - 'id': 149, + id: 149, }, { - 'type': 'CHERUB', - 'position': { - 'x': 910, - 'y': 1072, + type: 'CHERUB', + position: { + x: 910, + y: 1072, }, - 'id': 150, + id: 150, }, { - 'type': 'CHERUB', - 'position': { - 'x': 998, - 'y': 1187, + type: 'CHERUB', + position: { + x: 998, + y: 1187, }, - 'id': 151, + id: 151, }, { - 'type': 'CHERUB', - 'position': { - 'x': 991, - 'y': 998, + type: 'CHERUB', + position: { + x: 991, + y: 998, }, - 'id': 152, + id: 152, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1303, - 'y': 715, + type: 'CHERUB', + position: { + x: 1303, + y: 715, }, - 'id': 153, + id: 153, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1053, - 'y': 658, + type: 'CHERUB', + position: { + x: 1053, + y: 658, }, - 'id': 154, + id: 154, }, { - 'type': 'CHERUB', - 'position': { - 'x': 1187, - 'y': 999, + type: 'CHERUB', + position: { + x: 1187, + y: 999, }, - 'id': 155, + id: 155, }, { - 'type': 'BEAD', - 'position': { - 'x': 258, - 'y': 1539, + type: 'BEAD', + position: { + x: 258, + y: 1539, }, - 'id': 156, + id: 156, }, { - 'type': 'BEAD', - 'position': { - 'x': 1146, - 'y': 1720, + type: 'BEAD', + position: { + x: 1146, + y: 1720, }, - 'id': 157, + id: 157, }, { - 'type': 'BEAD', - 'position': { - 'x': 1254, - 'y': 1577, + type: 'BEAD', + position: { + x: 1254, + y: 1577, }, - 'id': 158, + id: 158, }, { - 'type': 'BEAD', - 'position': { - 'x': 1383, - 'y': 1335, + type: 'BEAD', + position: { + x: 1383, + y: 1335, }, - 'id': 159, + id: 159, }, { - 'type': 'BEAD', - 'position': { - 'x': 1735, - 'y': 1392, + type: 'BEAD', + position: { + x: 1735, + y: 1392, }, - 'id': 160, + id: 160, }, { - 'type': 'BEAD', - 'position': { - 'x': 1826, - 'y': 1332, + type: 'BEAD', + position: { + x: 1826, + y: 1332, }, - 'id': 161, + id: 161, }, { - 'type': 'BEAD', - 'position': { - 'x': 1826, - 'y': 1155, + type: 'BEAD', + position: { + x: 1826, + y: 1155, }, - 'id': 162, + id: 162, }, { - 'type': 'BEAD', - 'position': { - 'x': 2392, - 'y': 979, + type: 'BEAD', + position: { + x: 2392, + y: 979, }, - 'id': 163, + id: 163, }, { - 'type': 'BEAD', - 'position': { - 'x': 1680, - 'y': 800, + type: 'BEAD', + position: { + x: 1680, + y: 800, }, - 'id': 164, + id: 164, }, { - 'type': 'BEAD', - 'position': { - 'x': 1680, - 'y': 710, + type: 'BEAD', + position: { + x: 1680, + y: 710, }, - 'id': 165, + id: 165, }, { - 'type': 'BEAD', - 'position': { - 'x': 347, - 'y': 1160, + type: 'BEAD', + position: { + x: 347, + y: 1160, }, - 'id': 166, + id: 166, }, { - 'type': 'BEAD', - 'position': { - 'x': 999, - 'y': 888, + type: 'BEAD', + position: { + x: 999, + y: 888, }, - 'id': 167, + id: 167, }, { - 'type': 'BEAD', - 'position': { - 'x': 1034, - 'y': 920, + type: 'BEAD', + position: { + x: 1034, + y: 920, }, - 'id': 168, + id: 168, }, { - 'type': 'BEAD', - 'position': { - 'x': 1083, - 'y': 741, + type: 'BEAD', + position: { + x: 1083, + y: 741, }, - 'id': 169, + id: 169, }, { - 'type': 'WAXSEED', - 'position': { - 'x': 93, - 'y': 1631, + type: 'WAXSEED', + position: { + x: 93, + y: 1631, }, - 'id': 170, + id: 170, }, { - 'type': 'WAXSEED', - 'position': { - 'x': 1652, - 'y': 1395, + type: 'WAXSEED', + position: { + x: 1652, + y: 1395, }, - 'id': 171, + id: 171, }, { - 'type': 'WAXSEED', - 'position': { - 'x': 1593, - 'y': 864, + type: 'WAXSEED', + position: { + x: 1593, + y: 864, }, - 'id': 172, + id: 172, }, { - 'type': 'WAXSEED', - 'position': { - 'x': 763, - 'y': 973, + type: 'WAXSEED', + position: { + x: 763, + y: 973, }, - 'id': 173, + id: 173, }, { - 'type': 'PRAYER', - 'position': { - 'x': 51, - 'y': 1692, + type: 'PRAYER', + position: { + x: 51, + y: 1692, }, - 'id': 174, + id: 174, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1148, - 'y': 1596, + type: 'PRAYER', + position: { + x: 1148, + y: 1596, }, - 'id': 175, + id: 175, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1417, - 'y': 1761, + type: 'PRAYER', + position: { + x: 1417, + y: 1761, }, - 'id': 176, + id: 176, }, { - 'type': 'PRAYER', - 'position': { - 'x': 816, - 'y': 1332, + type: 'PRAYER', + position: { + x: 816, + y: 1332, }, - 'id': 177, + id: 177, }, { - 'type': 'PRAYER', - 'position': { - 'x': 994, - 'y': 1363, + type: 'PRAYER', + position: { + x: 994, + y: 1363, }, - 'id': 178, + id: 178, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1239, - 'y': 1332, + type: 'PRAYER', + position: { + x: 1239, + y: 1332, }, - 'id': 179, + id: 179, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1175, - 'y': 1543, + type: 'PRAYER', + position: { + x: 1175, + y: 1543, }, - 'id': 180, + id: 180, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1562, - 'y': 1335, + type: 'PRAYER', + position: { + x: 1562, + y: 1335, }, - 'id': 181, + id: 181, }, { - 'type': 'PRAYER', - 'position': { - 'x': 1831, - 'y': 1036, + type: 'PRAYER', + position: { + x: 1831, + y: 1036, }, - 'id': 182, + id: 182, }, { - 'type': 'PRAYER', - 'position': { - 'x': 2298, - 'y': 1039, + type: 'PRAYER', + position: { + x: 2298, + y: 1039, }, - 'id': 183, + id: 183, }, { - 'type': 'PRAYER', - 'position': { - 'x': 2482, - 'y': 982, + type: 'PRAYER', + position: { + x: 2482, + y: 982, }, - 'id': 184, + id: 184, }, { - 'type': 'PRAYER', - 'position': { - 'x': 617, - 'y': 1098, + type: 'PRAYER', + position: { + x: 617, + y: 1098, }, - 'id': 185, + id: 185, }, { - 'type': 'TRIBUTE', - 'position': { - 'x': 140, - 'y': 1811, + type: 'TRIBUTE', + position: { + x: 140, + y: 1811, }, - 'id': 186, + id: 186, }, { - 'type': 'TRIBUTE', - 'position': { - 'x': 971, - 'y': 1627, + type: 'TRIBUTE', + position: { + x: 971, + y: 1627, }, - 'id': 187, + id: 187, }, { - 'type': 'TRIBUTE', - 'position': { - 'x': 608, - 'y': 918, + type: 'TRIBUTE', + position: { + x: 608, + y: 918, }, - 'id': 188, + id: 188, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 330, - 'y': 1750, + type: 'HIDDEN_SYMBOL', + position: { + x: 330, + y: 1750, }, - 'id': 189, + id: 189, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 707, - 'y': 1629, + type: 'HIDDEN_SYMBOL', + position: { + x: 707, + y: 1629, }, - 'id': 190, + id: 190, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 1116, - 'y': 1747, + type: 'HIDDEN_SYMBOL', + position: { + x: 1116, + y: 1747, }, - 'id': 191, + id: 191, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 317, - 'y': 1394, + type: 'HIDDEN_SYMBOL', + position: { + x: 317, + y: 1394, }, - 'id': 192, + id: 192, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 1174, - 'y': 1245, + type: 'HIDDEN_SYMBOL', + position: { + x: 1174, + y: 1245, }, - 'id': 193, + id: 193, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 1978, - 'y': 1336, + type: 'HIDDEN_SYMBOL', + position: { + x: 1978, + y: 1336, }, - 'id': 194, + id: 194, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 1665, - 'y': 1190, + type: 'HIDDEN_SYMBOL', + position: { + x: 1665, + y: 1190, }, - 'id': 195, + id: 195, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 2045, - 'y': 1048, + type: 'HIDDEN_SYMBOL', + position: { + x: 2045, + y: 1048, }, - 'id': 196, + id: 196, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 1539, - 'y': 864, + type: 'HIDDEN_SYMBOL', + position: { + x: 1539, + y: 864, }, - 'id': 197, + id: 197, }, { - 'type': 'HIDDEN_SYMBOL', - 'position': { - 'x': 736, - 'y': 1038, + type: 'HIDDEN_SYMBOL', + position: { + x: 736, + y: 1038, }, - 'id': 198, + id: 198, }, { - 'type': 'TOOL', - 'position': { - 'x': 377, - 'y': 1671, + type: 'TOOL', + position: { + x: 377, + y: 1671, }, - 'id': 199, + id: 199, }, { - 'type': 'TOOL', - 'position': { - 'x': 1119, - 'y': 1783, + type: 'TOOL', + position: { + x: 1119, + y: 1783, }, - 'id': 200, + id: 200, }, { - 'type': 'TOOL', - 'position': { - 'x': 942, - 'y': 1335, + type: 'TOOL', + position: { + x: 942, + y: 1335, }, - 'id': 201, + id: 201, }, { - 'type': 'TOOL', - 'position': { - 'x': 1054, - 'y': 1337, + type: 'TOOL', + position: { + x: 1054, + y: 1337, }, - 'id': 202, + id: 202, }, { - 'type': 'TOOL', - 'position': { - 'x': 883, - 'y': 1157, + type: 'TOOL', + position: { + x: 883, + y: 1157, }, - 'id': 203, + id: 203, }, { - 'type': 'ALTARPIECE', - 'position': { - 'x': 410, - 'y': 1781, + type: 'ALTARPIECE', + position: { + x: 410, + y: 1781, }, - 'id': 204, + id: 204, }, { - 'type': 'BEAD', - 'position': { - 'x': 463, - 'y': 1722, + type: 'BEAD', + position: { + x: 463, + y: 1722, }, - 'id': 205, + id: 205, }, { - 'type': 'BEAD', - 'position': { - 'x': 2243, - 'y': 766, + type: 'BEAD', + position: { + x: 2243, + y: 766, }, - 'id': 206, + id: 206, }, { - 'type': 'BEAD', - 'position': { - 'x': 529, - 'y': 1060, + type: 'BEAD', + position: { + x: 529, + y: 1060, }, - 'id': 207, + id: 207, }, { - 'type': 'BEAD', - 'position': { - 'x': 813, - 'y': 967, + type: 'BEAD', + position: { + x: 813, + y: 967, }, - 'id': 208, + id: 208, }, { - 'type': 'CHALICE', - 'position': { - 'x': 647, - 'y': 1571, + type: 'CHALICE', + position: { + x: 647, + y: 1571, }, - 'id': 209, + id: 209, }, { - 'type': 'CHALICE', - 'position': { - 'x': 1858, - 'y': 1274, + type: 'CHALICE', + position: { + x: 1858, + y: 1274, }, - 'id': 210, + id: 210, }, { - 'type': 'CHALICE', - 'position': { - 'x': 496, - 'y': 1158, + type: 'CHALICE', + position: { + x: 496, + y: 1158, }, - 'id': 211, + id: 211, }, { - 'type': 'DAUGHTER', - 'position': { - 'x': 1621, - 'y': 1274, + type: 'DAUGHTER', + position: { + x: 1621, + y: 1274, }, - 'id': 212, + id: 212, }, { - 'type': 'DAUGHTER', - 'position': { - 'x': 2360, - 'y': 834, + type: 'DAUGHTER', + position: { + x: 2360, + y: 834, }, - 'id': 213, + id: 213, }, { - 'type': 'DAUGHTER', - 'position': { - 'x': 2272, - 'y': 564, + type: 'DAUGHTER', + position: { + x: 2272, + y: 564, }, - 'id': 214, + id: 214, }, { - 'type': 'DAUGHTER', - 'position': { - 'x': 1115, - 'y': 684, + type: 'DAUGHTER', + position: { + x: 1115, + y: 684, }, - 'id': 215, + id: 215, }, { - 'type': 'CRYSTAL_SHARD', - 'position': { - 'x': 1974, - 'y': 1275, + type: 'CRYSTAL_SHARD', + position: { + x: 1974, + y: 1275, }, - 'id': 216, + id: 216, }, { - 'type': 'CRYSTAL_SHARD', - 'position': { - 'x': 1316, - 'y': 666, + type: 'CRYSTAL_SHARD', + position: { + x: 1316, + y: 666, }, - 'id': 217, + id: 217, }, -]; \ No newline at end of file +];