diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index 3c99377..805f265 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -82,6 +82,9 @@ "Watch": true, "toNative": true, "Vue": true, - "ComponentBase": true + "ComponentBase": true, + "EditorComponent": true, + "VueMarkdown": true, + "MarkdownRenderer": true } } diff --git a/.eslintrc.cjs b/.eslintrc.cjs index ea8d570..4e6789f 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -63,9 +63,7 @@ module.exports = { ], '@stylistic/function-paren-newline': [ 'error', - { - minItems: 5 - } + 'multiline-arguments' ], '@stylistic/indent': [ 'error', @@ -141,7 +139,10 @@ module.exports = { ], '@stylistic/quotes': [ 'error', - 'single' + 'single', + { + allowTemplateLiterals: true + } ], '@stylistic/rest-spread-spacing': [ 'error', @@ -187,6 +188,14 @@ module.exports = { 2 ], 'vue/multi-word-component-names': 'off', - 'vue/require-typed-ref': 'error' + 'vue/require-typed-ref': 'error', + 'vue/block-lang': [ + 'error', + { + script: { + lang: 'ts' + } + } + ] } }; diff --git a/auto-imports.d.ts b/auto-imports.d.ts index 5635f67..fb46694 100644 --- a/auto-imports.d.ts +++ b/auto-imports.d.ts @@ -7,9 +7,11 @@ export {} declare global { const Component: typeof import('vue-facing-decorator')['Component'] const ComponentBase: typeof import('vue-facing-decorator')['ComponentBase'] + const EditorComponent: typeof import('./src/components/EditorComponent.vue')['default'] const Emit: typeof import('vue-facing-decorator')['Emit'] const Hook: typeof import('vue-facing-decorator')['Hook'] const Inject: typeof import('vue-facing-decorator')['Inject'] + const MarkdownRenderer: typeof import('./src/components/MarkdownRenderer.vue')['default'] const Model: typeof import('vue-facing-decorator')['Model'] const NavbarComponent: typeof import('./src/components/NavbarComponent.vue')['default'] const Prop: typeof import('vue-facing-decorator')['Prop'] @@ -20,6 +22,7 @@ declare global { const VModel: typeof import('vue-facing-decorator')['VModel'] const Vanilla: typeof import('vue-facing-decorator')['Vanilla'] const Vue: typeof import('vue-facing-decorator')['Vue'] + const VueMarkdown: typeof import('vue-markdown')['VueMarkdown'] const Watch: typeof import('vue-facing-decorator')['Watch'] const toNative: typeof import('vue-facing-decorator')['toNative'] } diff --git a/components.d.ts b/components.d.ts index 458f781..988d4d4 100644 --- a/components.d.ts +++ b/components.d.ts @@ -8,6 +8,7 @@ export {} declare module 'vue' { export interface GlobalComponents { EditorComponent: typeof import('./src/components/EditorComponent.vue')['default'] + MarkdownRenderer: typeof import('./src/components/MarkdownRenderer.vue')['default'] NavbarComponent: typeof import('./src/components/NavbarComponent.vue')['default'] RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] diff --git a/package.json b/package.json index fb5b6f5..0717b52 100644 --- a/package.json +++ b/package.json @@ -1,49 +1,51 @@ { - "name": "the-bingo-experience", - "version": "0.0.0", - "private": true, - "scripts": { - "dev": "vite", - "build": "run-p type-check \"build-only {@}\" --", - "preview": "vite preview", - "test:unit": "vitest", - "build-only": "vite build", - "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", - "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" - }, - "dependencies": { - "@quasar/extras": "^1.16.8", - "class-transformer": "^0.5.1", - "pinia": "^2.1.7", - "quasar": "^2.13.1", - "reflect-metadata": "^0.1.13", - "vue": "^3.3.4", - "vue-facing-decorator": "^3.0.4", - "vue-router": "^4.2.5" - }, - "devDependencies": { - "@quasar/vite-plugin": "^1.6.0", - "@rushstack/eslint-patch": "^1.3.3", - "@stylistic/eslint-plugin": "^1.1.0", - "@tsconfig/node18": "^18.2.2", - "@types/jsdom": "^21.1.3", - "@types/node": "^18.18.5", - "@vitejs/plugin-vue": "^4.4.0", - "@vitejs/plugin-vue-jsx": "^3.0.2", - "@vue/eslint-config-typescript": "^12.0.0", - "@vue/test-utils": "^2.4.1", - "@vue/tsconfig": "^0.4.0", - "eslint": "^8.49.0", - "eslint-plugin-vue": "^9.17.0", - "jsdom": "^22.1.0", - "npm-run-all2": "^6.1.1", - "sass": "1.32.12", - "typescript": "~5.2.0", - "unplugin-auto-import": "^0.16.7", - "unplugin-vue-components": "^0.25.2", - "unplugin-vue-router": "^0.7.0", - "vite": "^4.4.11", - "vitest": "^0.34.6", - "vue-tsc": "^1.8.19" - } -} + "name": "the-bingo-experience", + "version": "0.0.0", + "private": true, + "scripts": { + "dev": "vite", + "build": "run-p type-check \"build-only {@}\" --", + "preview": "vite preview", + "test:unit": "vitest", + "build-only": "vite build", + "type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false", + "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore" + }, + "dependencies": { + "@quasar/extras": "^1.16.8", + "@types/markdown-it": "^13.0.6", + "class-transformer": "^0.5.1", + "markdown-it": "^13.0.2", + "pinia": "^2.1.7", + "quasar": "^2.13.1", + "reflect-metadata": "^0.1.13", + "vue": "^3.3.4", + "vue-facing-decorator": "^3.0.4", + "vue-router": "^4.2.5" + }, + "devDependencies": { + "@quasar/vite-plugin": "^1.6.0", + "@rushstack/eslint-patch": "^1.3.3", + "@stylistic/eslint-plugin": "^1.1.0", + "@tsconfig/node18": "^18.2.2", + "@types/jsdom": "^21.1.3", + "@types/node": "^18.18.5", + "@vitejs/plugin-vue": "^4.4.0", + "@vitejs/plugin-vue-jsx": "^3.0.2", + "@vue/eslint-config-typescript": "^12.0.0", + "@vue/test-utils": "^2.4.1", + "@vue/tsconfig": "^0.4.0", + "eslint": "^8.49.0", + "eslint-plugin-vue": "^9.17.0", + "jsdom": "^22.1.0", + "npm-run-all2": "^6.1.1", + "sass": "1.32.12", + "typescript": "~5.2.0", + "unplugin-auto-import": "^0.16.7", + "unplugin-vue-components": "^0.25.2", + "unplugin-vue-router": "^0.7.0", + "vite": "^4.4.11", + "vitest": "^0.34.6", + "vue-tsc": "^1.8.19" + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c53181d..b368f0f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,9 +8,15 @@ dependencies: '@quasar/extras': specifier: ^1.16.8 version: 1.16.8 + '@types/markdown-it': + specifier: ^13.0.6 + version: 13.0.6 class-transformer: specifier: ^0.5.1 version: 0.5.1 + markdown-it: + specifier: ^13.0.2 + version: 13.0.2 pinia: specifier: ^2.1.7 version: 2.1.7(typescript@5.2.2)(vue@3.3.8) @@ -840,6 +846,21 @@ packages: resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} dev: true + /@types/linkify-it@3.0.5: + resolution: {integrity: sha512-yg6E+u0/+Zjva+buc3EIb+29XEg4wltq7cSmd4Uc2EE/1nUVmxyzpX6gUXD0V8jIrG0r7YeOGVIbYRkxeooCtw==} + dev: false + + /@types/markdown-it@13.0.6: + resolution: {integrity: sha512-0VqpvusJn1/lwRegCxcHVdmLfF+wIsprsKMC9xW8UPcTxhFcQtoN/fBU1zMe8pH7D/RuueMh2CaBaNv+GrLqTw==} + dependencies: + '@types/linkify-it': 3.0.5 + '@types/mdurl': 1.0.5 + dev: false + + /@types/mdurl@1.0.5: + resolution: {integrity: sha512-6L6VymKTzYSrEf4Nev4Xa1LCHKrlTlYCBMTlQKFuddo1CvQcE52I0mwfOJayueUC7MJuXOeHTcIU683lzd0cUA==} + dev: false + /@types/node@18.18.9: resolution: {integrity: sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==} dependencies: @@ -1338,7 +1359,6 @@ packages: /argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - dev: true /array-union@2.1.0: resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} @@ -1666,6 +1686,11 @@ packages: resolution: {integrity: sha512-T5q3pjQon853xxxHUq3ZP68ZpvJHuSMY2+BZaW3QzjS4HvNuvsMmZ/+lU+nCrftre1jFZ+OSlExynXWBihnXzw==} dev: true + /entities@3.0.1: + resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} + engines: {node: '>=0.12'} + dev: false + /entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -2264,6 +2289,12 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true + /linkify-it@4.0.1: + resolution: {integrity: sha512-C7bfi1UZmoj8+PQx22XyeXCuBlokoyWQL5pWSP+EI6nzRylyThouddufc2c1NDIcP9k5agmN9fLpA7VNJfIiqw==} + dependencies: + uc.micro: 1.0.6 + dev: false + /local-pkg@0.4.3: resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} engines: {node: '>=14'} @@ -2331,6 +2362,21 @@ packages: dependencies: '@jridgewell/sourcemap-codec': 1.4.15 + /markdown-it@13.0.2: + resolution: {integrity: sha512-FtwnEuuK+2yVU7goGn/MJ0WBZMM9ZPgU9spqlFs7/A/pDIUNSOQZhUgOqYCficIuR2QaFnrt8LHqBWsbTAoI5w==} + hasBin: true + dependencies: + argparse: 2.0.1 + entities: 3.0.1 + linkify-it: 4.0.1 + mdurl: 1.0.1 + uc.micro: 1.0.6 + dev: false + + /mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + dev: false + /memorystream@0.3.1: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} @@ -2959,6 +3005,10 @@ packages: engines: {node: '>=14.17'} hasBin: true + /uc.micro@1.0.6: + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + dev: false + /ufo@1.3.1: resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==} dev: true diff --git a/src/components/EditorComponent.vue b/src/components/EditorComponent.vue index 8b56467..fa1825e 100644 --- a/src/components/EditorComponent.vue +++ b/src/components/EditorComponent.vue @@ -1,3 +1,156 @@ + + diff --git a/src/components/MarkdownRenderer.vue b/src/components/MarkdownRenderer.vue new file mode 100644 index 0000000..ba40f53 --- /dev/null +++ b/src/components/MarkdownRenderer.vue @@ -0,0 +1,22 @@ + + + diff --git a/src/js/Bingo.ts b/src/js/Bingo.ts index 2b0065d..4c28c5e 100644 --- a/src/js/Bingo.ts +++ b/src/js/Bingo.ts @@ -10,11 +10,13 @@ function stringCompare(a: string, b: string) { } export class BingoGame { - id: string; + id!: string; - name: string; + name!: string; - description: string; + short_description!: string; + + description!: string; generator: 'simple' | 'srl_v5' | 'srl_v8' = 'simple'; @@ -24,9 +26,10 @@ export class BingoGame { @Type(() => BingoGroup) groups: BingoGroup[] = []; - constructor(id: string, name: string, description: string) { + constructor(id: string, name: string, short_description: string, description: string) { this.id = id; this.name = name; + this.short_description = short_description; this.description = description; } @@ -83,9 +86,40 @@ export class BingoGame { return group ? this.removeGroup(group) : false; } + getGroupByName(name: string): BingoGroup | undefined { + return this.groups.find(group => stringCompare(group.name, name)); + } + getGoalsByTags(...tags: string[]): BingoGoal[] { return this.goals.filter(goal => goal.tags.some(_tag => tags.some(tag => stringCompare(_tag, tag)))); } + + getGoalsByGroup(includeParents: boolean, ...groups: BingoGroup[]): BingoGoal[] { + const result: BingoGoal[] = []; + + this.goals.map(goal => { + const goal_group = goal.group; + + if (includeParents) { + let parent = goal_group.parent; + while (parent) { + if (groups.includes(parent)) { + result.push(goal); + + return; + } + + parent = parent.parent; + } + } + + if (groups.includes(goal_group)) { + result.push(goal); + } + }); + + return result; + } } function getRandomInt(max: number): number { @@ -95,15 +129,15 @@ function getRandomInt(max: number): number { export class BingoGoal { // id: string; // uuid-by-string maybe? https://www.npmjs.com/package/uuid-by-string - name: string; + name!: string; - group?: BingoGroup; + group!: BingoGroup; tags: string[] = []; possible_spaces: number[] = []; - constructor(name: string, group?: BingoGroup) { + constructor(name: string, group: BingoGroup) { this.name = name; this.group = group; @@ -153,7 +187,12 @@ export class BingoGroup { // eslint-disable-next-line @typescript-eslint/no-unused-vars function test(): void { - const game = new BingoGame('yakuza_0', 'Yakuza 0', 'The funny game we used for all bingos.'); + const game = new BingoGame( + 'yakuza_0', + 'Yakuza 0', + 'The funny game we used for all bingos.', + 'Very long text here haha lmao' + ); const battle_group = new BingoGroup('Battle'); const defeat_enemies = new BingoGroup('Defeat enemies on the street', battle_group); game.addGroup(battle_group); diff --git a/src/js/ParseGamesJSON.ts b/src/js/ParseGamesJSON.ts index 41e1b83..b74ccc7 100644 --- a/src/js/ParseGamesJSON.ts +++ b/src/js/ParseGamesJSON.ts @@ -8,11 +8,18 @@ import { instanceToPlain } from 'class-transformer'; -function run() { - const games: Map = new Map; +import markdown_text from '@/js/testmarkdown.js'; +export const games: Map = new Map; + +function run() { for (const j_game of json) { - const game = new BingoGame(j_game.game_name, j_game.game_name, 'Empty Description'); + const game = new BingoGame( + j_game.game_name, + j_game.game_name, + 'Short Description', + markdown_text + ); for (const j_cat of j_game.categories) { const category = new BingoGroup(j_cat.category_name); @@ -32,10 +39,22 @@ function run() { } games.set(game.name, game); + + for (let i = 0; i < 3; i++) + games.set(`${ game.name }-${ i }`, game); } - console.log(instanceToPlain(games)); - console.log(JSON.stringify(instanceToPlain(games))); + // const game = games.get('Yakuza 0'); + // console.log(instanceToPlain(game)); + // console.log(JSON.stringify(instanceToPlain(game))); + + // const game = games.get('Yakuza 0'); + // const group = game?.getGroupByName('Adventure'); + // if (!group) + // return; + + // const goals = game?.getGoalsByGroup(true, group); + // console.log(goals); } run(); diff --git a/src/js/singlegame.json b/src/js/singlegame.json index 1b46801..6f838bd 100644 --- a/src/js/singlegame.json +++ b/src/js/singlegame.json @@ -1,10488 +1,10444 @@ { - "Yakuza 0": { - "id": "Yakuza 0", - "name": "Yakuza 0", - "description": "Empty Description", - "generator": "simple", - "goals": [ - { - "name": "Talk to people 50 times", - "group": { - "name": "Talk to people", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 7, - 8, - 9, - 10, - 14, - 15, - 19, - 23, - 24 - ] - }, - { - "name": "Talk to people 100 times", - "group": { - "name": "Talk to people", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 4, - 5, - 6, - 8, - 9, - 11, - 14, - 15, - 18, - 19, - 20 - ] - }, - { - "name": "Talk to people 300 times", - "group": { - "name": "Talk to people", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 6, - 8, - 10, - 14, - 15, - 16, - 18, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Dine at eateries 10 times", - "group": { - "name": "Dine at eateries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 5, - 6, - 7, - 8, - 9, - 11, - 12, - 13, - 14, - 15, - 16, - 20, - 23 - ] - }, - { - "name": "Dine at eateries 30 times", - "group": { - "name": "Dine at eateries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 4, - 10, - 11, - 14, - 16, - 17, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Dine at eateries 50 times", - "group": { - "name": "Dine at eateries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 5, - 6, - 7, - 9, - 12, - 13, - 14, - 15, - 17, - 19, - 21, - 22 - ] - }, - { - "name": "Dine at eateries 100 times", - "group": { - "name": "Dine at eateries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 9, - 16, - 19 - ] - }, - { - "name": "Buy from Dream Machines 5 times", - "group": { - "name": "Buy from Dream Machines", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 9, - 10, - 11, - 13, - 14, - 16, - 17, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Buy from Dream Machines 10 times", - "group": { - "name": "Buy from Dream Machines", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 4, - 6, - 7, - 8, - 12, - 15, - 19, - 21 - ] - }, - { - "name": "Buy from Dream Machines 20 times", - "group": { - "name": "Buy from Dream Machines", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 4, - 5, - 6, - 9, - 10, - 11, - 12, - 13, - 17, - 18, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Buy from Dream Machines 50 times", - "group": { - "name": "Buy from Dream Machines", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 5, - 8, - 9, - 11, - 12, - 13, - 15, - 17, - 18, - 19, - 21, - 23 - ] - }, - { - "name": "Entertain yourself 10 times", - "group": { - "name": "Entertain yourself", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 10, - 11, - 12, - 13, - 15, - 16, - 17, - 18, - 20, - 23, - 24 - ] - }, - { - "name": "Entertain yourself 30 times", - "group": { - "name": "Entertain yourself", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 5, - 6, - 8, - 9, - 10, - 14, - 15, - 18, - 19, - 21, - 22 - ] - }, - { - "name": "Entertain yourself 50 times", - "group": { - "name": "Entertain yourself", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 4, - 5, - 6, - 7, - 9, - 11, - 13, - 14, - 16, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Entertain yourself 100 times", - "group": { - "name": "Entertain yourself", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 5, - 6, - 7, - 9, - 12, - 15, - 19, - 21, - 23, - 24 - ] - }, - { - "name": "Eat 5 food items", - "group": { - "name": "Eat food items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 10, - 11, - 12, - 14, - 15, - 17, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Eat 15 food items", - "group": { - "name": "Eat food items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 6, - 10, - 11, - 12, - 14, - 16, - 18, - 19, - 22, - 23 - ] - }, - { - "name": "Eat 30 food items", - "group": { - "name": "Eat food items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 4, - 5, - 6, - 8, - 9, - 13, - 14, - 15, - 16, - 17 - ] - }, - { - "name": "Eat 5 medicine items", - "group": { - "name": "Eat medicine items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 5, - 7, - 8, - 9, - 10, - 11, - 14, - 15, - 16, - 17, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Eat 15 medicine items", - "group": { - "name": "Eat medicine items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 13, - 15, - 17, - 22, - 24 - ] - }, - { - "name": "Eat 30 medicine items", - "group": { - "name": "Eat medicine items", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 6, - 7, - 8, - 9, - 12, - 13, - 15, - 16, - 17, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Travel by taxi 5 times", - "group": { - "name": "Travel by taxi", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 8, - 9, - 11, - 14, - 16, - 19, - 22 - ] - }, - { - "name": "Travel by taxi 15 times", - "group": { - "name": "Travel by taxi", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 6, - 7, - 10, - 11, - 12, - 13, - 17, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Travel by taxi 30 times", - "group": { - "name": "Travel by taxi", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 5, - 7, - 11, - 12, - 17, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Travel 20km on foot", - "group": { - "name": "Travel on foot", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 7, - 8, - 9, - 11, - 12, - 18, - 19 - ] - }, - { - "name": "Travel 50km on foot", - "group": { - "name": "Travel on foot", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 5, - 8, - 9, - 12, - 14, - 17, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Travel 100km on foot", - "group": { - "name": "Travel on foot", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 8, - 10, - 12, - 14, - 15, - 18, - 20, - 21, - 23 - ] - }, - { - "name": "Travel 2km by dashing", - "group": { - "name": "Travel by dashing", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 6, - 8, - 9, - 10, - 11, - 16, - 17, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Travel 5km by dashing", - "group": { - "name": "Travel by dashing", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 10, - 12, - 13, - 14, - 15, - 18, - 21, - 23, - 24 - ] - }, - { - "name": "Travel 10km by dashing", - "group": { - "name": "Travel by dashing", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 4, - 5, - 6, - 13, - 15, - 19, - 20, - 22 - ] - }, - { - "name": "Earn a total of 20 mil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 7, - 8, - 9, - 12, - 13, - 14, - 16, - 19, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Earn a total of 50 mil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 4, - 5, - 6, - 8, - 9, - 12, - 13, - 16, - 17, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Earn a total of 100 mil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 9, - 10, - 14, - 16, - 18, - 19, - 20, - 21, - 22 - ] - }, - { - "name": "Earn a total of 1 bil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 5, - 6, - 9, - 11, - 13, - 14, - 16, - 19, - 21, - 23 - ] - }, - { - "name": "Earn a total of 10 bil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 8, - 9, - 13, - 21, - 23 - ] - }, - { - "name": "Earn a total of 50 bil yen", - "group": { - "name": "Earn money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 5, - 8, - 12, - 14, - 16, - 17, - 18, - 19, - 20, - 21 - ] - }, - { - "name": "Spend a total of 1 mil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 8, - 10, - 11, - 12, - 19, - 22, - 24 - ] - }, - { - "name": "Spend a total of 10 mil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 6, - 11, - 15, - 17, - 18, - 19, - 21, - 22, - 23 - ] - }, - { - "name": "Spend a total of 100 mil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 8, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Spend a total of 1 bil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 5, - 6, - 8, - 9, - 10, - 12, - 15, - 20, - 21 - ] - }, - { - "name": "Spend a total of 5 bil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 5, - 6, - 7, - 9, - 13, - 16, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Spend a total of 10 bil yen", - "group": { - "name": "Spend money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 6, - 7, - 10, - 11, - 12, - 13, - 15, - 18, - 19, - 21, - 23 - ] - }, - { - "name": "Scatter a total of 1 mil yen", - "group": { - "name": "Scatter money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 9, - 10, - 11, - 13, - 14, - 16, - 18, - 20, - 22, - 23 - ] - }, - { - "name": "Scatter a total of 3 mil yen", - "group": { - "name": "Scatter money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 6, - 7, - 11, - 12, - 13, - 16, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Scatter a total of 5 mil yen", - "group": { - "name": "Scatter money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 8, - 10, - 11, - 14, - 16, - 18, - 20, - 22, - 23 - ] - }, - { - "name": "Scatter a total of 10 mil yen", - "group": { - "name": "Scatter money", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 6, - 7, - 8, - 10, - 15, - 16, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Collect 5 telephone cards (Kiryu)", - "group": { - "name": "Collect telephone cards (Kiryu)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 4, - 11, - 12, - 13, - 16, - 18, - 19, - 21 - ] - }, - { - "name": "Collect 20 telephone cards (Kiryu)", - "group": { - "name": "Collect telephone cards (Kiryu)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 8, - 11, - 14, - 15, - 16, - 18, - 20, - 24 - ] - }, - { - "name": "Collect 45 telephone cards (Kiryu)", - "group": { - "name": "Collect telephone cards (Kiryu)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 5, - 6, - 7, - 11, - 14, - 21 - ] - }, - { - "name": "Collect 5 telephone cards (Majima)", - "group": { - "name": "Collect telephone cards (Majima)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 7, - 9, - 11, - 13, - 16, - 18, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Collect 20 telephone cards (Majima)", - "group": { - "name": "Collect telephone cards (Majima)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 10, - 12, - 13, - 15, - 16, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Collect 45 telephone cards (Majima)", - "group": { - "name": "Collect telephone cards (Majima)", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 10, - 12, - 14, - 15, - 16, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Watch 5 different video clips", - "group": { - "name": "Watch different video clips", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 5, - 6, - 9, - 10, - 12, - 13, - 16, - 18, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Watch 15 different video clips", - "group": { - "name": "Watch different video clips", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 8, - 12, - 14, - 15, - 16, - 19, - 20, - 24 - ] - }, - { - "name": "Watch 30 different video clips", - "group": { - "name": "Watch different video clips", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 4, - 5, - 7, - 8, - 12, - 16, - 19, - 20, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Gindaco)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 6, - 7, - 8, - 9, - 10, - 12, - 13, - 15, - 16, - 17, - 22, - 23 - ] - }, - { - "name": "Complete Dinery (Yoronotaki)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 4, - 6, - 9, - 13, - 14, - 18, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Ringer Hut)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 5, - 6, - 7, - 8, - 14, - 16, - 17, - 19, - 20, - 22 - ] - }, - { - "name": "Complete Dinery (Fuji Soba)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 4, - 7, - 16, - 17, - 18, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Complete Dinery (Akaushimaru)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 7, - 10, - 12, - 15, - 17, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Tengokuken)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 5, - 6, - 9, - 17, - 19, - 23 - ] - }, - { - "name": "Complete Dinery (Sushi Gin)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 13, - 14, - 15, - 18, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Cafe Alps)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 4, - 5, - 8, - 9, - 10, - 11, - 13, - 14, - 17, - 18, - 20, - 24 - ] - }, - { - "name": "Complete Dinery (Kanrai)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 11, - 12, - 17, - 19, - 23 - ] - }, - { - "name": "Complete Dinery (Smile Burger)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 6, - 7, - 8, - 12, - 13, - 14, - 15, - 17, - 20, - 21, - 23 - ] - }, - { - "name": "Complete Dinery (Maharaja)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 5, - 6, - 8, - 9, - 11, - 14, - 18, - 19, - 20, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Heroine)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 6, - 7, - 8, - 11, - 13, - 14, - 15, - 17, - 18, - 19, - 20 - ] - }, - { - "name": "Complete Dinery (Earth Angel)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 7, - 8, - 10, - 11, - 13, - 17, - 18, - 23 - ] - }, - { - "name": "Complete Dinery (Shellac)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 9, - 10, - 16, - 18, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Complete Dinery (Vincent)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 9, - 14, - 16, - 19, - 21, - 24 - ] - }, - { - "name": "Complete Dinery (Tsuruhashi Fugetsu)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 8, - 9, - 11, - 15, - 18, - 19, - 21, - 24 - ] - }, - { - "name": "Complete Dinery (Ganko Sushi)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 6, - 19, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Kinryu Ramen)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 18, - 20, - 22, - 24 - ] - }, - { - "name": "Complete Dinery (Kani Douraku)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 6, - 8, - 12, - 13, - 14, - 15, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Complete Dinery (Zuboraya)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 6, - 8, - 11, - 13, - 14, - 16, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Complete Dinery (Kushikatsu Daruma)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 10, - 11, - 14, - 18, - 20, - 21, - 22 - ] - }, - { - "name": "Complete Dinery (Komian)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 8, - 10, - 11, - 12, - 15, - 19, - 22 - ] - }, - { - "name": "Complete Dinery (Utahime)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 5, - 6, - 8, - 9, - 10, - 11, - 14, - 16, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Complete Dinery (Shot Bar STIJL)", - "group": { - "name": "Complete dineries", - "parent": { - "name": "Adventure" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 6, - 7, - 8, - 10, - 12, - 15, - 16, - 18, - 20, - 23, - 24 - ] - }, - { - "name": "Defeat 50 enemies on the street", - "group": { - "name": "Defeat enemies on the street", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 6, - 11, - 12, - 14, - 15, - 16, - 17, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Defeat 150 enemies on the street", - "group": { - "name": "Defeat enemies on the street", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 12, - 13, - 14, - 17, - 18, - 21, - 22 - ] - }, - { - "name": "Defeat 300 enemies on the street", - "group": { - "name": "Defeat enemies on the street", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 6, - 7, - 11, - 12, - 13, - 17, - 18, - 19, - 23 - ] - }, - { - "name": "Defeat 500 enemies on the street", - "group": { - "name": "Defeat enemies on the street", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 10, - 11, - 13, - 16, - 17, - 19, - 20, - 22, - 23 - ] - }, - { - "name": "Defeat 5 enemies in the Brawler Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Brawler Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 9, - 11, - 12, - 14, - 16, - 18, - 23 - ] - }, - { - "name": "Defeat 100 enemies in the Brawler Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Brawler Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 4, - 7, - 8, - 9, - 10, - 11, - 14, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Defeat 200 enemies in the Brawler Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Brawler Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 8, - 10, - 12, - 17, - 20, - 21, - 24 - ] - }, - { - "name": "Defeat 50 enemies in the Rush Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Rush Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 5, - 6, - 10, - 15, - 17, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Defeat 100 enemies in the Rush Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Rush Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 6, - 8, - 9, - 11, - 14, - 16, - 18, - 19, - 23, - 24 - ] - }, - { - "name": "Defeat 200 enemies in the Rush Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Rush Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 4, - 8, - 14, - 16, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Defeat 50 enemies in the Beast Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Beast Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 6, - 7, - 9, - 10, - 13, - 14, - 15, - 17, - 18, - 19, - 20, - 23 - ] - }, - { - "name": "Defeat 100 enemies in the Beast Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Beast Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 4, - 9, - 12, - 13, - 16, - 17, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 200 enemies in the Beast Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Beast Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 8, - 13, - 16, - 17, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Defeat 50 enemies in the Dragon Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Dragon Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 7, - 9, - 11, - 12, - 13, - 14, - 15, - 18, - 19, - 20, - 21 - ] - }, - { - "name": "Defeat 100 enemies in the Dragon Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Dragon Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 5, - 6, - 7, - 8, - 9, - 12, - 17, - 21, - 22, - 23 - ] - }, - { - "name": "Defeat 200 enemies in the Dragon Style (Kiryu)", - "group": { - "name": "Defeat enemies in the Dragon Style (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 10, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 20, - 21 - ] - }, - { - "name": "Defeat 50 enemies in the Thug Style (Majima)", - "group": { - "name": "Defeat enemies in the Thug Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 7, - 10, - 11, - 12, - 13, - 15, - 18, - 19, - 20, - 24 - ] - }, - { - "name": "Defeat 100 enemies in the Thug Style (Majima)", - "group": { - "name": "Defeat enemies in the Thug Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 5, - 7, - 9, - 12, - 13, - 15, - 16, - 17, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 200 enemies in the Thug Style (Majima)", - "group": { - "name": "Defeat enemies in the Thug Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 6, - 7, - 8, - 10, - 11, - 12, - 14, - 19, - 23 - ] - }, - { - "name": "Defeat 50 enemies in the Slugger Style (Majima)", - "group": { - "name": "Defeat enemies in the Slugger Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 10, - 13, - 16, - 17, - 19, - 20, - 23 - ] - }, - { - "name": "Defeat 100 enemies in the Slugger Style (Majima)", - "group": { - "name": "Defeat enemies in the Slugger Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 6, - 9, - 10, - 11, - 17, - 21 - ] - }, - { - "name": "Defeat 200 enemies in the Slugger Style (Majima)", - "group": { - "name": "Defeat enemies in the Slugger Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 7, - 9, - 10, - 14, - 15, - 16, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 50 enemies in the Breaker Style (Majima)", - "group": { - "name": "Defeat enemies in the Breaker Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 5, - 6, - 8, - 9, - 15, - 16, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Defeat 100 enemies in the Breaker Style (Majima)", - "group": { - "name": "Defeat enemies in the Breaker Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 6, - 7, - 8, - 11, - 12, - 13, - 15, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 200 enemies in the Breaker Style (Majima)", - "group": { - "name": "Defeat enemies in the Breaker Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 5, - 9, - 11, - 12, - 13, - 17, - 18, - 23, - 24 - ] - }, - { - "name": "Defeat 50 enemies in the Mad Dog Style (Majima)", - "group": { - "name": "Defeat enemies in the Mad Dog Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 11, - 12, - 15, - 18, - 19, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 100 enemies in the Mad Dog Style (Majima)", - "group": { - "name": "Defeat enemies in the Mad Dog Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 4, - 5, - 8, - 10, - 11, - 12, - 13, - 14, - 15, - 18 - ] - }, - { - "name": "Defeat 200 enemies in the Mad Dog Style (Majima)", - "group": { - "name": "Defeat enemies in the Mad Dog Style (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 10, - 11, - 12, - 13, - 15, - 18, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Help 5 attack victims around town", - "group": { - "name": "Help attack victims around town", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 6, - 7, - 10, - 15, - 17, - 18, - 20, - 21 - ] - }, - { - "name": "Help 15 attack victims around town", - "group": { - "name": "Help attack victims around town", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 4, - 6, - 7, - 12, - 13, - 14, - 15, - 16, - 24 - ] - }, - { - "name": "Help 30 attack victims around town", - "group": { - "name": "Help attack victims around town", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 6, - 9, - 11, - 12, - 14, - 17, - 19, - 22, - 23, - 24 - ] - }, - { - "name": "Win 10 coliseum tournaments", - "group": { - "name": "Win coliseum tournaments", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 5, - 7, - 9, - 13, - 18, - 20, - 21, - 24 - ] - }, - { - "name": "Win 20 coliseum tournaments", - "group": { - "name": "Win coliseum tournaments", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 6, - 8, - 9, - 11, - 12, - 13, - 14, - 16, - 18, - 19, - 22, - 23 - ] - }, - { - "name": "Win 30 coliseum tournaments", - "group": { - "name": "Win coliseum tournaments", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 6, - 8, - 9, - 10, - 12, - 16, - 17, - 18, - 21 - ] - }, - { - "name": "Win 40 coliseum tournaments", - "group": { - "name": "Win coliseum tournaments", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 8, - 9, - 10, - 12, - 13, - 14, - 17, - 19, - 24 - ] - }, - { - "name": "Win 50 coliseum tournaments", - "group": { - "name": "Win coliseum tournaments", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 7, - 8, - 10, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 23, - 24 - ] - }, - { - "name": "Defeat 5 coliseum opponents", - "group": { - "name": "Defeat coliseum opponents", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 7, - 10, - 14, - 15, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Defeat 15 coliseum opponents", - "group": { - "name": "Defeat coliseum opponents", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 8, - 13, - 14, - 17, - 18, - 19, - 23 - ] - }, - { - "name": "Defeat 25 coliseum opponents", - "group": { - "name": "Defeat coliseum opponents", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 11, - 14, - 19, - 22, - 24 - ] - }, - { - "name": "Defeat 1 nouveau riche enemy", - "group": { - "name": "Defeat nouveau riche enemies", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 3, - 4, - 7, - 9, - 10, - 11, - 12, - 13, - 15, - 20, - 22, - 23 - ] - }, - { - "name": "Defeat 5 nouveau riche enemies", - "group": { - "name": "Defeat nouveau riche enemies", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 6, - 7, - 11, - 12, - 13, - 14, - 17, - 19, - 23, - 24 - ] - }, - { - "name": "Defeat 10 nouveau riche enemies", - "group": { - "name": "Defeat nouveau riche enemies", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 4, - 5, - 7, - 9, - 10, - 11, - 13, - 14, - 15, - 17, - 18, - 20, - 21 - ] - }, - { - "name": "Defeat Mr. Shakedown 1 time (Kiryu)", - "group": { - "name": "Defeat Mr. Shakedown (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 8, - 10, - 12, - 14, - 15, - 20, - 21, - 24 - ] - }, - { - "name": "Defeat Mr. Shakedown 5 times (Kiryu)", - "group": { - "name": "Defeat Mr. Shakedown (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 7, - 13, - 18, - 19, - 23, - 24 - ] - }, - { - "name": "Defeat Mr. Shakedown 10 times (Kiryu)", - "group": { - "name": "Defeat Mr. Shakedown (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 6, - 8, - 10, - 11, - 13, - 18, - 20, - 21 - ] - }, - { - "name": "Defeat Mr. Shakedown 1 time (Majima)", - "group": { - "name": "Defeat Mr. Shakedown (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 7, - 10, - 15, - 17, - 21, - 22, - 24 - ] - }, - { - "name": "Defeat Mr. Shakedown 5 times (Majima)", - "group": { - "name": "Defeat Mr. Shakedown (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 6, - 7, - 8, - 9, - 14, - 15, - 16, - 19, - 20 - ] - }, - { - "name": "Defeat Mr. Shakedown 10 times (Majima)", - "group": { - "name": "Defeat Mr. Shakedown (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 6, - 10, - 11, - 12, - 13, - 14, - 16, - 19, - 22 - ] - }, - { - "name": "Defeat Sega 1 time", - "group": { - "name": "Defeat Sega", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 6, - 7, - 8, - 9, - 16, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Earn a total of 1 mil in battle", - "group": { - "name": "Earn a total in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 4, - 5, - 7, - 11, - 14, - 15, - 22, - 23 - ] - }, - { - "name": "Earn a total of 5 mil in battle", - "group": { - "name": "Earn a total in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 6, - 9, - 10, - 11, - 12, - 14, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Earn a total of 10 mil in battle", - "group": { - "name": "Earn a total in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 6, - 9, - 13, - 15, - 17, - 18, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Earn a total of 100 mil in battle", - "group": { - "name": "Earn a total in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 6, - 8, - 10, - 11, - 12, - 15, - 18, - 20, - 21, - 22 - ] - }, - { - "name": "Use Heat Actions 20 times", - "group": { - "name": "Use Heat Actions", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 7, - 8, - 10, - 15, - 17, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Use Heat Actions 50 times", - "group": { - "name": "Use Heat Actions", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 6, - 7, - 8, - 11, - 12, - 15, - 16, - 17, - 20, - 23, - 24 - ] - }, - { - "name": "Use Heat Actions 100 times", - "group": { - "name": "Use Heat Actions", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 4, - 5, - 7, - 10, - 11, - 18, - 19, - 21, - 23, - 24 - ] - }, - { - "name": "Use Heat Actions 200 times", - "group": { - "name": "Use Heat Actions", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 4, - 6, - 7, - 8, - 11, - 12, - 13, - 18, - 20, - 22, - 24 - ] - }, - { - "name": "Use Heat Actions 300 times", - "group": { - "name": "Use Heat Actions", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 5, - 6, - 10, - 11, - 14, - 18, - 20, - 22, - 23 - ] - }, - { - "name": "Use 10 different Heat Actions (Kiryu)", - "group": { - "name": "Use different Heat Actions (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 7, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 17, - 21, - 23, - 24 - ] - }, - { - "name": "Use 20 different Heat Actions (Kiryu)", - "group": { - "name": "Use different Heat Actions (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 3, - 6, - 7, - 16, - 18, - 22, - 23 - ] - }, - { - "name": "Use 40 different Heat Actions (Kiryu)", - "group": { - "name": "Use different Heat Actions (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 7, - 10, - 11, - 13, - 14, - 24 - ] - }, - { - "name": "Use 10 different Heat Actions (Majima)", - "group": { - "name": "Use different Heat Actions (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 7, - 9, - 12, - 14, - 15, - 16, - 22, - 24 - ] - }, - { - "name": "Use 20 different Heat Actions (Majima)", - "group": { - "name": "Use different Heat Actions (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 6, - 7, - 9, - 11, - 12, - 13, - 14, - 15, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Use 30 different Heat Actions (Majima)", - "group": { - "name": "Use different Heat Actions (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 5, - 8, - 10, - 11, - 12, - 13, - 14, - 15, - 18, - 19, - 20, - 23 - ] - }, - { - "name": "Break 20 objects in battle", - "group": { - "name": "Break objects in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 5, - 6, - 9, - 13, - 14, - 15, - 18, - 20, - 22 - ] - }, - { - "name": "Break 50 objects in battle", - "group": { - "name": "Break objects in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 10, - 11, - 13, - 15, - 18 - ] - }, - { - "name": "Break 100 objects in battle", - "group": { - "name": "Break objects in battle", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 7, - 8, - 10, - 18, - 19, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Acquire 10 different weapons", - "group": { - "name": "Acquire different weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 5, - 7, - 8, - 9, - 10, - 14, - 15, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Acquire 40 different weapons", - "group": { - "name": "Acquire different weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 6, - 8, - 9, - 13, - 15, - 16 - ] - }, - { - "name": "Acquire 70 different weapons", - "group": { - "name": "Acquire different weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 4, - 5, - 6, - 7, - 8, - 10, - 11, - 16, - 17, - 18, - 21, - 24 - ] - }, - { - "name": "Acquire 100 different weapons", - "group": { - "name": "Acquire different weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 5, - 8, - 9, - 10, - 11, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20 - ] - }, - { - "name": "Acquire 10 different gear items", - "group": { - "name": "Acquire different gear items", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 5, - 8, - 9, - 10, - 11, - 12, - 16, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Acquire 25 different gear items", - "group": { - "name": "Acquire different gear items", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 13, - 14, - 18, - 19, - 20, - 23 - ] - }, - { - "name": "Acquire 45 different gear items", - "group": { - "name": "Acquire different gear items", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 6, - 8, - 11, - 13, - 15, - 18, - 21 - ] - }, - { - "name": "Acquire 70 different gear items", - "group": { - "name": "Acquire different gear items", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 6, - 8, - 10, - 13, - 14, - 15, - 16, - 17, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Defeat 10 enemies using weapons", - "group": { - "name": "Defeat enemies using weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 7, - 11, - 12, - 14, - 15, - 16, - 17, - 18, - 19, - 21, - 22, - 23 - ] - }, - { - "name": "Defeat 50 enemies using weapons", - "group": { - "name": "Defeat enemies using weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 9, - 13, - 16, - 20, - 21, - 24 - ] - }, - { - "name": "Defeat 100 enemies using weapons", - "group": { - "name": "Defeat enemies using weapons", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 6, - 12, - 13, - 14, - 15, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Learn all of Bacchus' moves (Kiryu)", - "group": { - "name": "Learn all moves (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 5, - 8, - 11, - 12, - 14, - 15, - 16, - 21, - 22 - ] - }, - { - "name": "Learn all of Kamoji's moves (Kiryu)", - "group": { - "name": "Learn all moves (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 8, - 10, - 11, - 13, - 14, - 16, - 17, - 20, - 22, - 24 - ] - }, - { - "name": "Learn all of Miss Tatsu's moves (Kiryu)", - "group": { - "name": "Learn all moves (Kiryu)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 9, - 10, - 14, - 15, - 16, - 18, - 19, - 20, - 21 - ] - }, - { - "name": "Finish all bouts with Komeki (Majima)", - "group": { - "name": "Learn all moves (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 7, - 10, - 13, - 15, - 16, - 17, - 18, - 19, - 21, - 24 - ] - }, - { - "name": "Learn all of Fei Hu's moves (Majima)", - "group": { - "name": "Learn all moves (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 9, - 12, - 19, - 20, - 24 - ] - }, - { - "name": "Learn all of Areshi's moves (Majima)", - "group": { - "name": "Learn all moves (Majima)", - "parent": { - "name": "Battle" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 5, - 9, - 10, - 11, - 12, - 13, - 15, - 16, - 17, - 23 - ] - }, - { - "name": "Collect total proceeds of 1 mil (Kiryu)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 10, - 11, - 13, - 14, - 15, - 16, - 17, - 20, - 24 - ] - }, - { - "name": "Collect total proceeds of 10 mil (Kiryu)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 8, - 9, - 15, - 18, - 20, - 23, - 24 - ] - }, - { - "name": "Collect total proceeds of 100 mil (Kiryu)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 9, - 10, - 12, - 14, - 20 - ] - }, - { - "name": "Collect total proceeds of 1 bil (Kiryu)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 4, - 6, - 9, - 14, - 15, - 16, - 18, - 19, - 20, - 21, - 22 - ] - }, - { - "name": "Buy 1 Leisure King property", - "group": { - "name": "Buy Leisure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 6, - 7, - 9, - 11, - 15, - 17, - 18, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Buy 4 Leisure King properties", - "group": { - "name": "Buy Leisure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 5, - 6, - 7, - 8, - 10, - 12, - 13, - 15, - 16, - 17 - ] - }, - { - "name": "Buy 7 Leisure King properties", - "group": { - "name": "Buy Leisure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 5, - 6, - 7, - 9, - 10, - 16, - 17, - 21, - 22, - 24 - ] - }, - { - "name": "Buy 2 Electronics King properties", - "group": { - "name": "Buy Electronics King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 6, - 7, - 8, - 12, - 13, - 14, - 17, - 18, - 19, - 20, - 24 - ] - }, - { - "name": "Buy 5 Electronics King properties", - "group": { - "name": "Buy Electronics King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 6, - 7, - 9, - 11, - 12, - 16, - 17, - 18, - 21, - 22 - ] - }, - { - "name": "Buy 8 Electronics King properties", - "group": { - "name": "Buy Electronics King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 7, - 8, - 9, - 16, - 18, - 22, - 23 - ] - }, - { - "name": "Buy 3 Pleasure King properties", - "group": { - "name": "Buy Pleasure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 6, - 9, - 10, - 14, - 16, - 17, - 18, - 20, - 21, - 22 - ] - }, - { - "name": "Buy 6 Pleasure King properties", - "group": { - "name": "Buy Pleasure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 8, - 9, - 11, - 15, - 16, - 17, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Buy 9 Pleasure King properties", - "group": { - "name": "Buy Pleasure King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 7, - 8, - 14, - 15, - 16, - 20, - 22, - 24 - ] - }, - { - "name": "Buy 2 Gambling King properties", - "group": { - "name": "Buy Gambling King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 5, - 6, - 7, - 10, - 12, - 13, - 16, - 17, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Buy 5 Gambling King properties", - "group": { - "name": "Buy Gambling King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 8, - 9, - 10, - 11, - 12, - 15, - 16, - 17, - 21, - 24 - ] - }, - { - "name": "Buy 8 Gambling King properties", - "group": { - "name": "Buy Gambling King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 4, - 5, - 7, - 9, - 11, - 16, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Buy 2 Media King properties", - "group": { - "name": "Buy Media King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 5, - 8, - 11, - 15, - 16, - 17, - 20, - 21 - ] - }, - { - "name": "Buy 5 Media King properties", - "group": { - "name": "Buy Media King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 8, - 13, - 15, - 16, - 21, - 22, - 24 - ] - }, - { - "name": "Buy 8 Media King properties", - "group": { - "name": "Buy Media King properties", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 5, - 7, - 8, - 11, - 12, - 16, - 17, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Raise 5 shops to Rank S", - "group": { - "name": "Raise shops to Rank S", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 6, - 8, - 9, - 11, - 14, - 16, - 21, - 23, - 24 - ] - }, - { - "name": "Raise 20 shops to Rank S", - "group": { - "name": "Raise shops to Rank S", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 4, - 5, - 6, - 9, - 10, - 11, - 12, - 13, - 14, - 16, - 17, - 18, - 21, - 23 - ] - }, - { - "name": "Raise 50 shops to Rank S", - "group": { - "name": "Raise shops to Rank S", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 5, - 6, - 8, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Recruit 3 managers", - "group": { - "name": "Recruit managers", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 4, - 5, - 6, - 7, - 8, - 10, - 11, - 12, - 15, - 16, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Recruit 8 managers", - "group": { - "name": "Recruit managers", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 6, - 7, - 9, - 10, - 11, - 13, - 20, - 22 - ] - }, - { - "name": "Recruit 3 advisors", - "group": { - "name": "Recruit advisors", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 7, - 15, - 18, - 21 - ] - }, - { - "name": "Recruit 8 advisors", - "group": { - "name": "Recruit advisors", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 13, - 16, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Recruit 3 security", - "group": { - "name": "Recruit security", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 7, - 8, - 13, - 14, - 15, - 16, - 22, - 23, - 24 - ] - }, - { - "name": "Recruit 8 security", - "group": { - "name": "Recruit security", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 4, - 5, - 6, - 7, - 9, - 10, - 12, - 13, - 14, - 15, - 16, - 21, - 24 - ] - }, - { - "name": "Defeat the Leisure King", - "group": { - "name": "Defeat the Kings", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 8, - 9, - 12, - 13, - 15, - 17, - 19, - 21 - ] - }, - { - "name": "Defeat the Electronics King", - "group": { - "name": "Defeat the Kings", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 15, - 21, - 22, - 23 - ] - }, - { - "name": "Defeat the Pleasure King", - "group": { - "name": "Defeat the Kings", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 6, - 7, - 10, - 11, - 12, - 13, - 16, - 17, - 18, - 20, - 23 - ] - }, - { - "name": "Defeat the Gambling King", - "group": { - "name": "Defeat the Kings", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 7, - 8, - 9, - 13, - 18, - 21, - 24 - ] - }, - { - "name": "Defeat the Media King", - "group": { - "name": "Defeat the Kings", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 9, - 11, - 12, - 13, - 15, - 16, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Occupy 100% of the Leisure King area", - "group": { - "name": "Occupy 100% of an area", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 7, - 8, - 9, - 10, - 12, - 13, - 18, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Occupy 100% of the Electronics King area", - "group": { - "name": "Occupy 100% of an area", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 10, - 14, - 15, - 17, - 21, - 24 - ] - }, - { - "name": "Occupy 100% of the Pleasure King area", - "group": { - "name": "Occupy 100% of an area", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 3, - 5, - 10, - 13, - 16, - 19, - 20, - 24 - ] - }, - { - "name": "Occupy 100% of the Gambling King area", - "group": { - "name": "Occupy 100% of an area", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 6, - 10, - 11, - 16, - 17, - 22 - ] - }, - { - "name": "Occupy 100% of the Media King area", - "group": { - "name": "Occupy 100% of an area", - "parent": { - "name": "Business - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 9, - 10, - 12, - 15, - 16, - 18, - 23, - 24 - ] - }, - { - "name": "Collect total proceeds of 10 mil (Majima)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 4, - 5, - 7, - 8, - 9, - 10, - 13, - 14, - 15, - 16, - 17, - 18, - 21, - 23 - ] - }, - { - "name": "Collect total proceeds of 100 mil (Majima)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 7, - 9, - 10, - 14, - 15, - 16, - 18, - 19, - 20 - ] - }, - { - "name": "Collect total proceeds of 400 mil (Majima)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 4, - 5, - 6, - 8, - 11, - 12, - 13, - 15, - 16, - 19, - 21, - 22 - ] - }, - { - "name": "Collect total proceeds of 1 bil (Majima)", - "group": { - "name": "Collect total proceeds", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 6, - 8, - 9, - 11, - 12, - 24 - ] - }, - { - "name": "Complete Yuki's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 4, - 6, - 7, - 9, - 10, - 12, - 15, - 16, - 18 - ] - }, - { - "name": "Complete Ai's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 5, - 9, - 10, - 11, - 12, - 17, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Complete Saki's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 7, - 10, - 11, - 16, - 18, - 19, - 20 - ] - }, - { - "name": "Complete Hibiki's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 13, - 14, - 17, - 20 - ] - }, - { - "name": "Complete Chika's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 7, - 8, - 12, - 16, - 17, - 24 - ] - }, - { - "name": "Complete Mana's Substory", - "group": { - "name": "Complete substories", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 11, - 12, - 14, - 15, - 17, - 21, - 22, - 23 - ] - }, - { - "name": "Yuki's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 8, - 11, - 12, - 19, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Yuki's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 8, - 9, - 10, - 14, - 15, - 17, - 19, - 22 - ] - }, - { - "name": "Yuki's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 3, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 18, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Ai's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 6, - 8, - 9, - 10, - 11, - 14, - 15, - 17, - 18, - 20, - 24 - ] - }, - { - "name": "Ai's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 7, - 8, - 9, - 12, - 14, - 16, - 18, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Ai's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 4, - 5, - 8, - 9, - 11, - 12, - 16, - 18, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Saki's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 6, - 8, - 10, - 12, - 13, - 17, - 20, - 21 - ] - }, - { - "name": "Saki's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 9, - 10, - 11, - 13, - 14, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Saki's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 4, - 5, - 8, - 10, - 11, - 15, - 16, - 17, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Hibiki's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 6, - 8, - 12, - 14, - 16, - 17, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Hibiki's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 8, - 10, - 19, - 20, - 24 - ] - }, - { - "name": "Hibiki's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 6, - 7, - 12, - 17, - 18, - 21, - 24 - ] - }, - { - "name": "Chika's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 4, - 5, - 7, - 9, - 13, - 14, - 15, - 16, - 17, - 19, - 23 - ] - }, - { - "name": "Chika's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 6, - 8, - 9, - 10, - 12, - 13, - 20, - 24 - ] - }, - { - "name": "Chika's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 8, - 9, - 12, - 13, - 16, - 17, - 18, - 20, - 21, - 24 - ] - }, - { - "name": "Mana's Accessory Collection 10", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 6, - 7, - 9, - 10, - 14, - 15, - 16, - 19, - 20, - 21 - ] - }, - { - "name": "Mana's Accessory Collection 20", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 7, - 8, - 10, - 11, - 15, - 16, - 19, - 20 - ] - }, - { - "name": "Mana's Accessory Collection 30", - "group": { - "name": "Accessory Collections", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 9, - 10, - 11, - 12, - 13, - 14, - 16, - 21, - 22, - 23 - ] - }, - { - "name": "Serve a total of 100 customers", - "group": { - "name": "Serve a total customers", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 11, - 13, - 14, - 19, - 22, - 24 - ] - }, - { - "name": "Serve a total of 200 customers", - "group": { - "name": "Serve a total customers", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 15, - 24 - ] - }, - { - "name": "Serve a total of 500 customers", - "group": { - "name": "Serve a total customers", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 3, - 6, - 8, - 11, - 15, - 17, - 19, - 22, - 23 - ] - }, - { - "name": "Recruit 6 bronze hostesses", - "group": { - "name": "Recruit hostesses", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 5, - 6, - 7, - 8, - 10, - 12, - 13, - 15, - 19, - 21, - 22 - ] - }, - { - "name": "Recruit 4 silver hostesses", - "group": { - "name": "Recruit hostesses", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 7, - 9, - 10, - 11, - 17, - 19 - ] - }, - { - "name": "Recruit 4 gold hostesses", - "group": { - "name": "Recruit hostesses", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 7, - 11, - 13, - 15, - 16, - 17, - 18, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Recruit 6 platinum hostesses", - "group": { - "name": "Recruit hostesses", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 3, - 5, - 7, - 8, - 9, - 10, - 13, - 15, - 16, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Partner with 3 shops in Mars area", - "group": { - "name": "Partner with shops in Mars area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 9, - 11, - 13, - 14, - 16, - 17, - 18, - 20, - 22, - 23 - ] - }, - { - "name": "Partner with 6 shops in Mars area", - "group": { - "name": "Partner with shops in Mars area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 5, - 6, - 7, - 9, - 10, - 12, - 14, - 15, - 17, - 21, - 23, - 24 - ] - }, - { - "name": "Partner with 10 shops in Mars area", - "group": { - "name": "Partner with shops in Mars area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 7, - 9, - 10, - 12, - 14, - 15, - 17, - 19, - 24 - ] - }, - { - "name": "Partner with 3 shops in Jupiter area", - "group": { - "name": "Partner with shops in Jupiter area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 6, - 7, - 9, - 10, - 12, - 15, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Partner with 6 shops in Jupiter area", - "group": { - "name": "Partner with shops in Jupiter area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 5, - 6, - 7, - 9, - 10, - 11, - 12, - 13, - 18, - 22 - ] - }, - { - "name": "Partner with 10 shops in Jupiter area", - "group": { - "name": "Partner with shops in Jupiter area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 6, - 11, - 12, - 13, - 15, - 19, - 23 - ] - }, - { - "name": "Partner with 3 shops in Venus area", - "group": { - "name": "Partner with shops in Venus area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 5, - 6, - 7, - 9, - 15, - 16, - 17, - 19, - 22, - 23, - 24 - ] - }, - { - "name": "Partner with 6 shops in Venus area", - "group": { - "name": "Partner with shops in Venus area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 10, - 13, - 17, - 18, - 20, - 22 - ] - }, - { - "name": "Partner with 10 shops in Venus area", - "group": { - "name": "Partner with shops in Venus area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 6, - 7, - 9, - 10, - 12, - 13, - 14, - 15, - 18, - 20, - 21 - ] - }, - { - "name": "Partner with 3 shops in Mercury area", - "group": { - "name": "Partner with shops in Mercury area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 7, - 9, - 10, - 11, - 14, - 18, - 19, - 20, - 22 - ] - }, - { - "name": "Partner with 6 shops in Mercury area", - "group": { - "name": "Partner with shops in Mercury area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 4, - 5, - 6, - 8, - 9, - 10, - 11, - 13, - 16, - 17, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Partner with 10 shops in Mercury area", - "group": { - "name": "Partner with shops in Mercury area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 8, - 10, - 14, - 16, - 18, - 19, - 23 - ] - }, - { - "name": "Partner with 3 shops in Moon area", - "group": { - "name": "Partner with shops in Moon area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 4, - 6, - 8, - 9, - 12, - 14, - 21, - 22, - 23 - ] - }, - { - "name": "Partner with 6 shops in Moon area", - "group": { - "name": "Partner with shops in Moon area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 6, - 12, - 13, - 16, - 17, - 18, - 19, - 21, - 23, - 24 - ] - }, - { - "name": "Partner with 10 shops in Moon area", - "group": { - "name": "Partner with shops in Moon area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 4, - 7, - 8, - 11, - 12, - 14, - 22, - 23, - 24 - ] - }, - { - "name": "Take over Mars area", - "group": { - "name": "Take over an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 5, - 6, - 9, - 10, - 11, - 12, - 13, - 15, - 16, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Take over Jupiter area", - "group": { - "name": "Take over an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 7, - 10, - 13, - 16, - 17, - 19, - 21, - 22 - ] - }, - { - "name": "Take over Mercury area", - "group": { - "name": "Take over an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 10, - 13, - 14, - 16, - 17, - 18, - 19, - 21, - 23, - 24 - ] - }, - { - "name": "Take over Venus area", - "group": { - "name": "Take over an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 9, - 13, - 15, - 16, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Take over Moon area", - "group": { - "name": "Take over an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 6, - 8, - 11, - 12, - 13, - 19, - 21, - 23, - 24 - ] - }, - { - "name": "Earn 1500 fans in Mars area", - "group": { - "name": "Earn fans in an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 7, - 9, - 12, - 14, - 18, - 19, - 21 - ] - }, - { - "name": "Earn 3000 fans in Jupiter area", - "group": { - "name": "Earn fans in an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 6, - 8, - 10, - 11, - 13, - 14, - 15, - 17, - 18, - 19, - 23 - ] - }, - { - "name": "Earn 4000 fans in Mercury area", - "group": { - "name": "Earn fans in an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 5, - 6, - 8, - 9, - 11, - 16, - 17, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Earn 5000 fans in Venus area", - "group": { - "name": "Earn fans in an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 6, - 7, - 11, - 12, - 14, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Earn 10000 fans in Moon area", - "group": { - "name": "Earn fans in an area", - "parent": { - "name": "Business - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 8, - 11, - 13, - 14, - 15, - 19, - 20 - ] - }, - { - "name": "Complete 5 Kiryu Substories", - "group": { - "name": "Complete Kiryu Substories", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 5, - 6, - 7, - 11, - 14, - 15, - 16, - 17, - 18, - 20 - ] - }, - { - "name": "Complete 10 Kiryu Substories", - "group": { - "name": "Complete Kiryu Substories", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 6, - 7, - 8, - 9, - 10, - 16, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Complete 20 Kiryu Substories", - "group": { - "name": "Complete Kiryu Substories", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 3, - 7, - 8, - 14, - 20, - 22 - ] - }, - { - "name": "Complete 30 Kiryu Substories", - "group": { - "name": "Complete Kiryu Substories", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 5, - 10, - 13, - 14, - 15, - 16, - 18, - 20, - 22, - 24 - ] - }, - { - "name": "Complete 40 Kiryu Substories", - "group": { - "name": "Complete Kiryu Substories", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 3, - 7, - 9, - 10, - 11, - 13, - 19, - 20, - 23 - ] - }, - { - "name": "Befriend Officer Kikuchi", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 7, - 8, - 9, - 10, - 12, - 13, - 18, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Befriend Kitajima the Shroomer", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 6, - 8, - 9, - 12, - 13, - 15, - 17, - 19, - 21, - 22 - ] - }, - { - "name": "Befriend Mr. Libido - Akimoto", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 10, - 11, - 12, - 13, - 14, - 16, - 17, - 18, - 19, - 21, - 22 - ] - }, - { - "name": "Befriend Mr. Moneybags - Fukushima", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 6, - 9, - 11, - 12, - 13, - 14, - 15, - 17, - 18, - 19, - 20, - 22, - 23 - ] - }, - { - "name": "Befriend Pocket Circuit Fighter", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 6, - 11, - 12, - 13, - 14, - 15, - 16, - 18, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Befriend Miho", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 5, - 6, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 16, - 17, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Befriend Emiri", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 6, - 7, - 8, - 11, - 12, - 13, - 14, - 15, - 18, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Befriend the Sushi Gin Chef", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 4, - 6, - 8, - 9, - 12, - 13, - 14, - 15, - 17, - 18, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Befriend Luka", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Kiryu" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 9, - 13, - 19, - 21, - 22 - ] - }, - { - "name": "Complete 5 Majima Substories", - "group": { - "name": "Complete Majima Substories", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 5, - 9, - 13, - 14, - 15, - 16, - 18, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Complete 10 Majima Substories", - "group": { - "name": "Complete Majima Substories", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 7, - 8, - 11, - 12, - 13, - 15, - 16, - 18, - 19, - 22 - ] - }, - { - "name": "Complete 20 Majima Substories", - "group": { - "name": "Complete Majima Substories", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 4, - 6, - 12, - 17, - 18, - 20, - 21, - 23 - ] - }, - { - "name": "Complete 30 Majima Substories", - "group": { - "name": "Complete Majima Substories", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 4, - 5, - 6, - 12, - 13, - 14, - 15, - 17, - 18, - 20, - 23 - ] - }, - { - "name": "Complete 40 Majima Substories", - "group": { - "name": "Complete Majima Substories", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 2, - 5, - 7, - 8, - 9, - 10, - 19, - 20, - 24 - ] - }, - { - "name": "Befriend Simon the Mystery Man", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 11, - 13, - 16, - 18, - 19, - 20, - 22, - 23 - ] - }, - { - "name": "Befriend Mr. Moneybags - Tanioka", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 11, - 12, - 13, - 14, - 15, - 16, - 19, - 22, - 23, - 24 - ] - }, - { - "name": "Befriend Mr. Libido - Habu", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 4, - 5, - 7, - 8, - 10, - 11, - 15, - 16, - 18, - 20, - 22 - ] - }, - { - "name": "Befriend Doll Girl", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 5, - 6, - 8, - 10, - 14, - 16, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Befriend the boss at Komian", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 4, - 5, - 7, - 8, - 9, - 12, - 13, - 14, - 15, - 20, - 22 - ] - }, - { - "name": "Befriend the barkeep", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 5, - 6, - 7, - 9, - 11, - 14, - 18, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Befriend the Gandhara staff member", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 5, - 6, - 7, - 9, - 11, - 15, - 16, - 19, - 24 - ] - }, - { - "name": "Befriend Kyoko", - "group": { - "name": "Befriend people", - "parent": { - "name": "Substories - Majima" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 6, - 7, - 10, - 11, - 14, - 20, - 22, - 23 - ] - }, - { - "name": "Collect 5 different tires", - "group": { - "name": "Collect different tires", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 6, - 7, - 8, - 10, - 12, - 13, - 21 - ] - }, - { - "name": "Collect 10 different tires", - "group": { - "name": "Collect different tires", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 4, - 5, - 7, - 8, - 11, - 12, - 15, - 16, - 18, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Collect 20 different tires", - "group": { - "name": "Collect different tires", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 13, - 17, - 18, - 19, - 20, - 21, - 22 - ] - }, - { - "name": "Collect 5 different motors", - "group": { - "name": "Collect different motors", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 7, - 8, - 13, - 16, - 17, - 18, - 19, - 23, - 24 - ] - }, - { - "name": "Collect 10 different motors", - "group": { - "name": "Collect different motors", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 5, - 6, - 8, - 9, - 11, - 14, - 17, - 18, - 22, - 23, - 24 - ] - }, - { - "name": "Collect 15 different motors", - "group": { - "name": "Collect different motors", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 5, - 10, - 12, - 13, - 14, - 16, - 18, - 19, - 21, - 22 - ] - }, - { - "name": "Collect 5 different gears", - "group": { - "name": "Collect different gears", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 5, - 10, - 11, - 15, - 17, - 19, - 22 - ] - }, - { - "name": "Collect 10 different gears", - "group": { - "name": "Collect different gears", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 4, - 5, - 6, - 7, - 9, - 10, - 12, - 14, - 15, - 17, - 24 - ] - }, - { - "name": "Collect 20 different gears", - "group": { - "name": "Collect different gears", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 12, - 14, - 15, - 16, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Collect 5 different frames", - "group": { - "name": "Collect different frames", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 7, - 10, - 12, - 13, - 14, - 16, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Collect 10 different frames", - "group": { - "name": "Collect different frames", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 5, - 6, - 9, - 10, - 13, - 14, - 15, - 20, - 21, - 22 - ] - }, - { - "name": "Collect 20 different frames", - "group": { - "name": "Collect different frames", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 4, - 5, - 8, - 9, - 10, - 13, - 14, - 18, - 19, - 20, - 23 - ] - }, - { - "name": "Compete in races 10 times", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 5, - 6, - 7, - 11, - 13, - 15, - 19, - 23 - ] - }, - { - "name": "Win the Introductory Race", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 6, - 7, - 8, - 9, - 10, - 14, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Win the Little Racers' Cup", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 6, - 7, - 9, - 12, - 14, - 15, - 16, - 18, - 19, - 21, - 22, - 24 - ] - }, - { - "name": "Win the Rookies' Race", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 4, - 7, - 8, - 9, - 10, - 12, - 13, - 15, - 19, - 22, - 23 - ] - }, - { - "name": "Win the Pro-Am Race", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 8, - 9, - 11, - 16, - 17, - 19, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Win the Experts' Race", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 4, - 6, - 8, - 11, - 12, - 13, - 15, - 16, - 17, - 22, - 23 - ] - }, - { - "name": "Win the Champions' Cup", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 6, - 9, - 10, - 11, - 14, - 18, - 19, - 22, - 24 - ] - }, - { - "name": "Win the King of Speed Cup", - "group": { - "name": "Win / compete in races", - "parent": { - "name": "Minigames - Pocket Circuit" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 3, - 4, - 5, - 6, - 7, - 11, - 17, - 18, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Get 5 million points in Space Harrier", - "group": { - "name": "Get points in game", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 4, - 6, - 8, - 9, - 12, - 13, - 17, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Get 5 million points in Out Run", - "group": { - "name": "Get points in game", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 5, - 6, - 7, - 11, - 13, - 16, - 17, - 19 - ] - }, - { - "name": "Get 100,000 points in Fantasy Zone", - "group": { - "name": "Get points in game", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 8, - 9, - 13, - 14, - 16, - 17, - 18, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Get 5 million points in Super Hang-On", - "group": { - "name": "Get points in game", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 8, - 9, - 11, - 12, - 14, - 15, - 17, - 18, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Acquire 5 different prizes", - "group": { - "name": "Acquire different prizes", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 8, - 9, - 11, - 13, - 14, - 16, - 21, - 22, - 24 - ] - }, - { - "name": "Acquire 15 different prizes", - "group": { - "name": "Acquire different prizes", - "parent": { - "name": "Minigames - Arcade" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 4, - 6, - 8, - 10, - 11, - 12, - 15, - 16, - 17, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Win 1 shogi game without a take back", - "group": { - "name": "Win shogi games without a take back", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 4, - 6, - 8, - 9, - 11, - 12, - 14, - 15, - 16, - 20, - 23, - 24 - ] - }, - { - "name": "Win 3 shogi games without a take back", - "group": { - "name": "Win shogi games without a take back", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 4, - 6, - 8, - 11, - 12, - 14, - 15, - 16, - 22, - 23 - ] - }, - { - "name": "Win 5 shogi games without a take back", - "group": { - "name": "Win shogi games without a take back", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 3, - 10, - 12, - 15, - 16, - 18, - 19, - 22 - ] - }, - { - "name": "Go out 10 times", - "group": { - "name": "Go out", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 6, - 7, - 8, - 9, - 10, - 12, - 14, - 15, - 17, - 19, - 20, - 22 - ] - }, - { - "name": "Go out with Mangan 5 times", - "group": { - "name": "Go out", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 14, - 17, - 23 - ] - }, - { - "name": "Go out with Haneman 1 time", - "group": { - "name": "Go out", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 3, - 5, - 7, - 8, - 10, - 15, - 17, - 19, - 20, - 21 - ] - }, - { - "name": "Go out with Riichi Ippatsu", - "group": { - "name": "Go out", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 5, - 6, - 8, - 9, - 12, - 13, - 14, - 15, - 16, - 18, - 20, - 22 - ] - }, - { - "name": "Go out with Full Straight", - "group": { - "name": "Go out", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 6, - 7, - 11, - 12, - 13, - 15, - 17, - 18, - 19, - 20, - 21, - 22, - 23 - ] - }, - { - "name": "Earn a total of 10 million in mahjong", - "group": { - "name": "Earn a total in Mahjong", - "parent": { - "name": "Minigames - Mahjong" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 4, - 5, - 10, - 13, - 14, - 17, - 24 - ] - }, - { - "name": "Collect 5 different freshwater fish", - "group": { - "name": "Collect different freshwater fish", - "parent": { - "name": "Minigames - Fishing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 3, - 4, - 6, - 8, - 10, - 11, - 12, - 13, - 14, - 16, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Collect 15 different freshwater fish", - "group": { - "name": "Collect different freshwater fish", - "parent": { - "name": "Minigames - Fishing" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 2, - 4, - 5, - 6, - 8, - 11, - 14, - 16, - 19, - 22, - 24 - ] - }, - { - "name": "Collect 5 different saltwater fish", - "group": { - "name": "Collect different saltwater fish", - "parent": { - "name": "Minigames - Fishing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 5, - 6, - 9, - 10, - 12, - 13, - 16, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Collect 18 different saltwater fish", - "group": { - "name": "Collect different saltwater fish", - "parent": { - "name": "Minigames - Fishing" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 8, - 9, - 10, - 12, - 14, - 15, - 17, - 20, - 22, - 23 - ] - }, - { - "name": "Earn a total of 1 million in cho-han", - "group": { - "name": "Earn a total with gambling", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 3, - 5, - 6, - 7, - 10, - 12, - 13, - 14, - 18, - 19, - 20, - 23, - 24 - ] - }, - { - "name": "Earn a total of 1 million in cee-lo", - "group": { - "name": "Earn a total with gambling", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 3, - 4, - 11, - 12, - 13, - 15, - 16, - 17, - 18, - 20, - 23, - 24 - ] - }, - { - "name": "Earn a total of 1 million in koi-koi", - "group": { - "name": "Earn a total with gambling", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 7, - 12, - 14, - 15, - 17, - 18, - 19, - 20, - 21, - 23 - ] - }, - { - "name": "Earn a total of 1 million in oicho-kabu", - "group": { - "name": "Earn a total with gambling", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 6, - 7, - 8, - 13, - 14, - 16, - 18, - 19, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Win a total of 1mil yen in Catfights", - "group": { - "name": "Win a total in Catfights", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 5, - 6, - 9, - 10, - 11, - 15, - 16, - 17, - 20, - 21, - 22 - ] - }, - { - "name": "Win a total of 10mil yen in Catfights", - "group": { - "name": "Win a total in Catfights", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 6, - 9, - 10, - 13, - 14, - 17, - 19, - 23, - 24 - ] - }, - { - "name": "Win a total of 100mil yen in Catfights", - "group": { - "name": "Win a total in Catfights", - "parent": { - "name": "Minigames - Gambling" - } - }, - "tags": [ - "Hard" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 7, - 8, - 9, - 10, - 11, - 15, - 17, - 18, - 19, - 20, - 21, - 24 - ] - }, - { - "name": "Earn a total of 10 million in poker", - "group": { - "name": "Earn a total with the casino", - "parent": { - "name": "Minigames - Casino" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 4, - 6, - 8, - 10, - 14, - 15, - 16, - 18, - 19, - 20, - 23, - 24 - ] - }, - { - "name": "Earn a total of 5 million in blackjack", - "group": { - "name": "Earn a total with the casino", - "parent": { - "name": "Minigames - Casino" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 2, - 4, - 5, - 9, - 10, - 11, - 15, - 16, - 18, - 19, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Earn a total of 10 million in baccarat", - "group": { - "name": "Earn a total with the casino", - "parent": { - "name": "Minigames - Casino" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 9, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 19, - 24 - ] - }, - { - "name": "Earn a total of 10 million in roulette", - "group": { - "name": "Earn a total with the casino", - "parent": { - "name": "Minigames - Casino" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 9, - 12, - 14, - 15, - 16, - 17, - 19, - 20, - 22, - 23, - 24 - ] - }, - { - "name": "Earn a total of 10 million in darts", - "group": { - "name": "Earn a total with sports", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 4, - 5, - 9, - 10, - 14, - 16, - 17, - 18, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Earn a total of 10 million in pool", - "group": { - "name": "Earn a total with sports", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 7, - 9, - 11, - 14, - 16, - 17, - 18, - 22 - ] - }, - { - "name": "Earn a total of 5 million by batting", - "group": { - "name": "Earn a total with sports", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 8, - 10, - 12, - 13, - 14, - 15, - 17, - 19 - ] - }, - { - "name": "Earn a total of 10 million in split games", - "group": { - "name": "Earn a total with sports", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 7, - 11, - 16, - 17, - 18, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Perform 10 hat tricks", - "group": { - "name": "Perform various things", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 6, - 10, - 11, - 12, - 14, - 15, - 22, - 23, - 24 - ] - }, - { - "name": "Perform 3 combination shots", - "group": { - "name": "Perform various things", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 3, - 6, - 8, - 10, - 11, - 14, - 15, - 16, - 19, - 21, - 23 - ] - }, - { - "name": "Perform 3 carom shots", - "group": { - "name": "Perform various things", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 5, - 6, - 7, - 9, - 12, - 17, - 18, - 19, - 24 - ] - }, - { - "name": "Bowl 10 strikes", - "group": { - "name": "Perform various things", - "parent": { - "name": "Minigames - Sports" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 5, - 7, - 9, - 15, - 18, - 19, - 20, - 21 - ] - }, - { - "name": "Friday Night (Easy)", - "group": { - "name": "Dancing (Easy)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 3, - 4, - 6, - 8, - 9, - 10, - 13, - 14, - 16, - 17, - 19, - 20 - ] - }, - { - "name": "Queen of Passion (Easy)", - "group": { - "name": "Dancing (Easy)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 7, - 10, - 13, - 15, - 16, - 17, - 18, - 19, - 22, - 23 - ] - }, - { - "name": "I'm Gonna Make Her Mine (Easy)", - "group": { - "name": "Dancing (Easy)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 5, - 6, - 16, - 17, - 19, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "I Wanna Take You Home (Easy)", - "group": { - "name": "Dancing (Easy)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 2, - 3, - 7, - 11, - 14, - 15, - 16, - 18, - 19, - 21, - 22, - 23 - ] - }, - { - "name": "Koi no DISCO QUEEN (Easy)", - "group": { - "name": "Dancing (Easy)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 5, - 6, - 7, - 8, - 10, - 11, - 13, - 19, - 21, - 22, - 23 - ] - }, - { - "name": "Friday Night (Normal)", - "group": { - "name": "Dancing (Normal)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 6, - 7, - 8, - 10, - 12, - 13, - 14, - 18, - 20, - 24 - ] - }, - { - "name": "Queen of Passion (Normal)", - "group": { - "name": "Dancing (Normal)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 6, - 7, - 15, - 18, - 19, - 20, - 23 - ] - }, - { - "name": "I'm Gonna Make Her Mine (Normal)", - "group": { - "name": "Dancing (Normal)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 9, - 10, - 12, - 13, - 17, - 22, - 24 - ] - }, - { - "name": "I Wanna Take You Home (Normal)", - "group": { - "name": "Dancing (Normal)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 3, - 6, - 9, - 12, - 14, - 15, - 16, - 17, - 18, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Koi no DISCO QUEEN (Normal)", - "group": { - "name": "Dancing (Normal)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 6, - 7, - 8, - 11, - 13, - 16, - 18, - 22, - 24 - ] - }, - { - "name": "Friday Night (Hard)", - "group": { - "name": "Dancing (Hard)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 13, - 19, - 22, - 23 - ] - }, - { - "name": "I'm Gonna Make Her Mine (Hard)", - "group": { - "name": "Dancing (Hard)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 3, - 6, - 7, - 8, - 10, - 13, - 17, - 22, - 24 - ] - }, - { - "name": "Queen of Passion (Hard)", - "group": { - "name": "Dancing (Hard)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 4, - 5, - 7, - 9, - 12, - 15, - 16, - 18 - ] - }, - { - "name": "I Wanna Take You Home (Hard)", - "group": { - "name": "Dancing (Hard)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 4, - 7, - 9, - 10, - 12, - 13, - 19, - 20, - 22, - 24 - ] - }, - { - "name": "Koi no DISCO QUEEN (Hard)", - "group": { - "name": "Dancing (Hard)", - "parent": { - "name": "Minigames - Dancing" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 5, - 9, - 10, - 11, - 13, - 14, - 15, - 16, - 19, - 21 - ] - }, - { - "name": "Get 90+ in Judgement -Shinpan- (Kiryu)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 1, - 5, - 7, - 9, - 10, - 11, - 14, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24 - ] - }, - { - "name": "Get 90+ in Bakamitai (Kiryu)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 2, - 5, - 6, - 8, - 11, - 12, - 13, - 15, - 16, - 18, - 19, - 22, - 23, - 24 - ] - }, - { - "name": "Get 90+ in x3 Shine (Kiryu)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 5, - 6, - 7, - 10, - 11, - 12, - 14, - 17, - 18, - 19, - 20, - 24 - ] - }, - { - "name": "Get 90+ in Heartbreak Mermaid (Kiryu)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 3, - 4, - 5, - 10, - 11, - 12, - 14, - 15, - 17, - 20, - 21, - 22, - 24 - ] - }, - { - "name": "Get 90+ in Rouge of Love (Kiryu)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 3, - 4, - 10, - 14, - 16, - 17, - 21, - 23, - 24 - ] - }, - { - "name": "Get 90+ in 24-hour Cinderella (Majima)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 0, - 2, - 4, - 6, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 23, - 24 - ] - }, - { - "name": "Get 90+ in x3 Shine (Majima)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 1, - 5, - 6, - 7, - 8, - 10, - 11, - 12, - 14, - 20, - 21, - 23, - 24 - ] - }, - { - "name": "Get 90+ in Heartbreak Mermaid (Majima)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 4, - 5, - 12, - 13, - 22 - ] - }, - { - "name": "Get 90+ in Rouge of Love (Majima)", - "group": { - "name": "Get 90+ in a song", - "parent": { - "name": "Minigames - Karaoke" - } - }, - "tags": [ - "Easy" - ], - "possible_spaces": [ - 3, - 5, - 7, - 8, - 9, - 10, - 14, - 15, - 24 - ] - }, - { - "name": "Befriend Haruki", - "group": { - "name": "Befriend girlfriend", - "parent": { - "name": "Minigames - Dates" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 9, - 14, - 17, - 19, - 20, - 23, - 24 - ] - }, - { - "name": "Befriend Ayaka", - "group": { - "name": "Befriend girlfriend", - "parent": { - "name": "Minigames - Dates" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 0, - 1, - 2, - 5, - 6, - 7, - 8, - 10, - 12, - 13, - 14, - 16, - 17, - 18, - 20, - 21, - 24 - ] - }, - { - "name": "Befriend Riku", - "group": { - "name": "Befriend girlfriend", - "parent": { - "name": "Minigames - Dates" - } - }, - "tags": [ - "Normal" - ], - "possible_spaces": [ - 2, - 3, - 5, - 6, - 9, - 11, - 12, - 15, - 20, - 21, - 23, - 24 - ] - } - ], - "groups": [ - { - "name": "Adventure" - }, - { + "id": "Yakuza 0", + "name": "Yakuza 0", + "short_description": "Short Description", + "description": "---\n__Advertisement :)__\n\n- __[pica](https://nodeca.github.io/pica/demo/)__ - high quality and fast image\n resize in browser.\n- __[babelfish](https://github.com/nodeca/babelfish/)__ - developer friendly\n i18n with plurals support and easy syntax.\n\nYou will like those projects!\n\n---\n\n# h1 Heading 8-)\n## h2 Heading\n### h3 Heading\n#### h4 Heading\n##### h5 Heading\n###### h6 Heading\n\n\n## Horizontal Rules\n\n___\n\n---\n\n***\n\n\n## Typographic replacements\n\nEnable typographer option to see result.\n\n(c) (C) (r) (R) (tm) (TM) (p) (P) +-\n\ntest.. test... test..... test?..... test!....\n\n!!!!!! ???? ,, -- ---\n\n\"Smartypants, double quotes\" and 'single quotes'\n\n\n## Emphasis\n\n**This is bold text**\n\n__This is bold text__\n\n*This is italic text*\n\n_This is italic text_\n\n~~Strikethrough~~\n\n\n## Blockquotes\n\n\n> Blockquotes can also be nested...\n>> ...by using additional greater-than signs right next to each other...\n> > > ...or with spaces between arrows.\n\n\n## Lists\n\nUnordered\n\n+ Create a list by starting a line with `+`, `-`, or `*`\n+ Sub-lists are made by indenting 2 spaces:\n - Marker character change forces new list start:\n * Ac tristique libero volutpat at\n + Facilisis in pretium nisl aliquet\n - Nulla volutpat aliquam velit\n+ Very easy!\n\nOrdered\n\n1. Lorem ipsum dolor sit amet\n2. Consectetur adipiscing elit\n3. Integer molestie lorem at massa\n\n\n1. You can use sequential numbers...\n1. ...or keep all the numbers as `1.`\n\nStart numbering with offset:\n\n57. foo\n1. bar\n\n\n## Code\n\nInline `code`\n\nIndented code\n\n // Some comments\n line 1 of code\n line 2 of code\n line 3 of code\n\n\nBlock code \"fences\"\n\n```\nSample text here...\n```\n\nSyntax highlighting\n\n``` js\nvar foo = function (bar) {\n return bar++;\n};\n\nconsole.log(foo(5));\n```\n\n## Tables\n\n| Option | Description |\n| ------ | ----------- |\n| data | path to data files to supply the data that will be passed into templates. |\n| engine | engine to be used for processing templates. Handlebars is the default. |\n| ext | extension to be used for dest files. |\n\nRight aligned columns\n\n| Option | Description |\n| ------:| -----------:|\n| data | path to data files to supply the data that will be passed into templates. |\n| engine | engine to be used for processing templates. Handlebars is the default. |\n| ext | extension to be used for dest files. |\n\n\n## Links\n\n[link text](http://dev.nodeca.com)\n\n[link with title](http://nodeca.github.io/pica/demo/ \"title text!\")\n\nAutoconverted link https://github.com/nodeca/pica (enable linkify to see)\n\n\n## Images\n\n![Minion](https://octodex.github.com/images/minion.png)\n![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg \"The Stormtroopocat\")\n\nLike links, Images also have a footnote style syntax\n\n![Alt text][id]\n\nWith a reference later in the document defining the URL location:\n\n[id]: https://octodex.github.com/images/dojocat.jpg \"The Dojocat\"\n\n\n## Plugins\n\nThe killer feature of `markdown-it` is very effective support of\n[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).\n\n\n### [Emojies](https://github.com/markdown-it/markdown-it-emoji)\n\n> Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum:\n>\n> Shortcuts (emoticons): :-) :-( 8-) ;)\n\nsee [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.\n\n\n### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)\n\n- 19^th^\n- H~2~O\n\n\n### [](https://github.com/markdown-it/markdown-it-ins)\n\n++Inserted text++\n\n\n### [](https://github.com/markdown-it/markdown-it-mark)\n\n==Marked text==\n\n\n### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)\n\nFootnote 1 link[^first].\n\nFootnote 2 link[^second].\n\nInline footnote^[Text of inline footnote] definition.\n\nDuplicated footnote reference[^second].\n\n[^first]: Footnote **can have markup**\n\n and multiple paragraphs.\n\n[^second]: Footnote text.\n\n\n### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)\n\nTerm 1\n\n: Definition 1\nwith lazy continuation.\n\nTerm 2 with *inline markup*\n\n: Definition 2\n\n { some code, part of Definition 2 }\n\n Third paragraph of definition 2.\n\n_Compact style:_\n\nTerm 1\n ~ Definition 1\n\nTerm 2\n ~ Definition 2a\n ~ Definition 2b\n\n\n### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)\n\nThis is HTML abbreviation example.\n\nIt converts \"HTML\", but keep intact partial entries like \"xxxHTMLyyy\" and so on.\n\n*[HTML]: Hyper Text Markup Language\n\n### [Custom containers](https://github.com/markdown-it/markdown-it-container)\n\n::: warning\n*here be dragons*\n:::", + "generator": "simple", + "goals": [ + { + "name": "Talk to people 50 times", + "group": { "name": "Talk to people", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 6, + 7, + 9, + 12, + 13, + 15, + 18, + 21, + 24 + ] + }, + { + "name": "Talk to people 100 times", + "group": { + "name": "Talk to people", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 3, + 5, + 7, + 11, + 12, + 13, + 14, + 15, + 17, + 19, + 22 + ] + }, + { + "name": "Talk to people 300 times", + "group": { + "name": "Talk to people", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 7, + 8, + 9, + 10, + 14, + 15, + 16, + 18, + 22, + 23, + 24 + ] + }, + { + "name": "Dine at eateries 10 times", + "group": { "name": "Dine at eateries", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 9, + 10, + 11, + 12, + 14, + 18, + 19, + 20, + 22 + ] + }, + { + "name": "Dine at eateries 30 times", + "group": { + "name": "Dine at eateries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 6, + 8, + 10, + 12, + 14, + 18, + 19, + 22, + 23 + ] + }, + { + "name": "Dine at eateries 50 times", + "group": { + "name": "Dine at eateries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 5, + 7, + 12, + 16, + 17, + 19, + 22, + 23 + ] + }, + { + "name": "Dine at eateries 100 times", + "group": { + "name": "Dine at eateries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 5, + 10, + 11, + 13, + 14, + 18, + 20, + 23 + ] + }, + { + "name": "Buy from Dream Machines 5 times", + "group": { "name": "Buy from Dream Machines", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 5, + 6, + 8, + 10, + 12, + 13, + 14, + 15, + 16, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Buy from Dream Machines 10 times", + "group": { + "name": "Buy from Dream Machines", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 4, + 5, + 6, + 7, + 9, + 12, + 13, + 15, + 16, + 17, + 19, + 20 + ] + }, + { + "name": "Buy from Dream Machines 20 times", + "group": { + "name": "Buy from Dream Machines", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 6, + 7, + 8, + 10, + 12, + 15, + 16, + 18, + 19, + 20, + 21 + ] + }, + { + "name": "Buy from Dream Machines 50 times", + "group": { + "name": "Buy from Dream Machines", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 6, + 9, + 12, + 14, + 18, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Entertain yourself 10 times", + "group": { "name": "Entertain yourself", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 5, + 6, + 9, + 10, + 11, + 15, + 18, + 24 + ] + }, + { + "name": "Entertain yourself 30 times", + "group": { + "name": "Entertain yourself", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 5, + 6, + 7, + 8, + 12, + 16, + 19, + 20, + 22 + ] + }, + { + "name": "Entertain yourself 50 times", + "group": { + "name": "Entertain yourself", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 5, + 8, + 9, + 11, + 12, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Entertain yourself 100 times", + "group": { + "name": "Entertain yourself", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 6, + 7, + 8, + 9, + 11, + 14, + 17, + 18, + 21, + 22, + 23 + ] + }, + { + "name": "Eat 5 food items", + "group": { "name": "Eat food items", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 6, + 7, + 8, + 12, + 13, + 16, + 18, + 20, + 22, + 24 + ] + }, + { + "name": "Eat 15 food items", + "group": { + "name": "Eat food items", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 7, + 9, + 10, + 12, + 16, + 19, + 22, + 23 + ] + }, + { + "name": "Eat 30 food items", + "group": { + "name": "Eat food items", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 7, + 8, + 9, + 10, + 13, + 15, + 17, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Eat 5 medicine items", + "group": { "name": "Eat medicine items", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 6, + 9, + 11, + 12, + 17, + 18, + 19 + ] + }, + { + "name": "Eat 15 medicine items", + "group": { + "name": "Eat medicine items", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 5, + 6, + 7, + 10, + 13, + 14, + 15, + 17, + 18, + 21, + 23 + ] + }, + { + "name": "Eat 30 medicine items", + "group": { + "name": "Eat medicine items", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 5, + 6, + 8, + 9, + 11, + 13, + 14, + 16, + 17 + ] + }, + { + "name": "Travel by taxi 5 times", + "group": { "name": "Travel by taxi", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 5, + 6, + 8, + 11, + 12, + 13, + 14, + 15, + 17, + 20, + 23, + 24 + ] + }, + { + "name": "Travel by taxi 15 times", + "group": { + "name": "Travel by taxi", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 11, + 12, + 13, + 16, + 19, + 20 + ] + }, + { + "name": "Travel by taxi 30 times", + "group": { + "name": "Travel by taxi", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 11, + 13, + 16, + 19, + 20, + 22, + 23 + ] + }, + { + "name": "Travel 20km on foot", + "group": { "name": "Travel on foot", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 18, + 19, + 22, + 24 + ] + }, + { + "name": "Travel 50km on foot", + "group": { + "name": "Travel on foot", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 9, + 15, + 16, + 17, + 19, + 20, + 22, + 24 + ] + }, + { + "name": "Travel 100km on foot", + "group": { + "name": "Travel on foot", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 6, + 8, + 10, + 11, + 12, + 14, + 17, + 22, + 23, + 24 + ] + }, + { + "name": "Travel 2km by dashing", + "group": { "name": "Travel by dashing", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 11, + 12, + 15, + 17, + 18, + 22, + 23 + ] + }, + { + "name": "Travel 5km by dashing", + "group": { + "name": "Travel by dashing", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 5, + 11, + 12, + 13, + 17, + 18, + 24 + ] + }, + { + "name": "Travel 10km by dashing", + "group": { + "name": "Travel by dashing", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 8, + 10, + 11, + 14, + 15, + 17, + 19, + 21, + 22 + ] + }, + { + "name": "Earn a total of 20 mil yen", + "group": { "name": "Earn money", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 4, + 5, + 6, + 9, + 10, + 13, + 16, + 18, + 24 + ] + }, + { + "name": "Earn a total of 50 mil yen", + "group": { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 17, + 18, + 20, + 23 + ] + }, + { + "name": "Earn a total of 100 mil yen", + "group": { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 10, + 12, + 14, + 15, + 16 + ] + }, + { + "name": "Earn a total of 1 bil yen", + "group": { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 6, + 7, + 8, + 9, + 12, + 16, + 17, + 18, + 21, + 22, + 23 + ] + }, + { + "name": "Earn a total of 10 bil yen", + "group": { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 7, + 10, + 14, + 16, + 19, + 22 + ] + }, + { + "name": "Earn a total of 50 bil yen", + "group": { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 5, + 6, + 8, + 12, + 13, + 14, + 15, + 19, + 22, + 23 + ] + }, + { + "name": "Spend a total of 1 mil yen", + "group": { "name": "Spend money", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 5, + 6, + 7, + 8, + 9, + 10, + 14, + 17, + 19, + 22, + 24 + ] + }, + { + "name": "Spend a total of 10 mil yen", + "group": { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 3, + 5, + 15, + 22, + 24 + ] + }, + { + "name": "Spend a total of 100 mil yen", + "group": { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 7, + 10, + 11, + 13, + 16, + 21, + 23, + 24 + ] + }, + { + "name": "Spend a total of 1 bil yen", + "group": { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 6, + 8, + 9, + 10, + 11, + 12, + 16, + 18, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Spend a total of 5 bil yen", + "group": { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 4, + 7, + 9, + 10, + 12, + 14, + 15, + 17, + 20, + 22 + ] + }, + { + "name": "Spend a total of 10 bil yen", + "group": { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 6, + 8, + 10, + 13, + 15, + 16, + 17, + 18, + 19, + 22 + ] + }, + { + "name": "Scatter a total of 1 mil yen", + "group": { "name": "Scatter money", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 6, + 8, + 11, + 13, + 14, + 15, + 17, + 19, + 20, + 23 + ] + }, + { + "name": "Scatter a total of 3 mil yen", + "group": { + "name": "Scatter money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 5, + 7, + 8, + 9, + 11, + 15, + 24 + ] + }, + { + "name": "Scatter a total of 5 mil yen", + "group": { + "name": "Scatter money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 5, + 7, + 9, + 12, + 16, + 17, + 19, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Scatter a total of 10 mil yen", + "group": { + "name": "Scatter money", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 6, + 7, + 9, + 10, + 11, + 14, + 15, + 17, + 20, + 23 + ] + }, + { + "name": "Collect 5 telephone cards (Kiryu)", + "group": { "name": "Collect telephone cards (Kiryu)", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 6, + 9, + 10, + 11, + 13, + 15, + 16, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Collect 20 telephone cards (Kiryu)", + "group": { + "name": "Collect telephone cards (Kiryu)", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 5, + 7, + 8, + 10, + 15, + 18, + 20, + 21, + 22 + ] + }, + { + "name": "Collect 45 telephone cards (Kiryu)", + "group": { + "name": "Collect telephone cards (Kiryu)", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 7, + 11, + 13, + 14, + 15, + 16, + 19 + ] + }, + { + "name": "Collect 5 telephone cards (Majima)", + "group": { "name": "Collect telephone cards (Majima)", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 4, + 5, + 6, + 7, + 8, + 12, + 13, + 15, + 20, + 22, + 23 + ] + }, + { + "name": "Collect 20 telephone cards (Majima)", + "group": { + "name": "Collect telephone cards (Majima)", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 6, + 7, + 10, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "name": "Collect 45 telephone cards (Majima)", + "group": { + "name": "Collect telephone cards (Majima)", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 11, + 12, + 15, + 17, + 20, + 22 + ] + }, + { + "name": "Watch 5 different video clips", + "group": { "name": "Watch different video clips", "parent": { "name": "Adventure" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 5, + 6, + 7, + 9, + 11, + 12, + 13, + 15, + 16, + 18, + 20, + 23, + 24 + ] + }, + { + "name": "Watch 15 different video clips", + "group": { + "name": "Watch different video clips", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 5, + 6, + 7, + 10, + 12, + 16, + 21, + 23, + 24 + ] + }, + { + "name": "Watch 30 different video clips", + "group": { + "name": "Watch different video clips", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 8, + 9, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Complete Dinery (Gindaco)", + "group": { "name": "Complete dineries", "parent": { "name": "Adventure" } }, - { - "name": "Battle" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 5, + 6, + 7, + 8, + 10, + 11, + 13, + 14, + 16, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Yoronotaki)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 4, + 6, + 8, + 9, + 14, + 15, + 16, + 17, + 18, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Ringer Hut)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 6, + 11, + 14, + 15, + 16, + 17, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Fuji Soba)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 5, + 6, + 7, + 8, + 9, + 13, + 15, + 16, + 17, + 21, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Akaushimaru)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 8, + 9, + 12, + 14, + 20, + 22 + ] + }, + { + "name": "Complete Dinery (Tengokuken)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 4, + 5, + 9, + 10, + 13, + 16, + 17, + 20, + 22, + 23 + ] + }, + { + "name": "Complete Dinery (Sushi Gin)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 5, + 6, + 7, + 8, + 12, + 19, + 20, + 21 + ] + }, + { + "name": "Complete Dinery (Cafe Alps)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 5, + 7, + 13, + 17, + 20, + 21, + 24 + ] + }, + { + "name": "Complete Dinery (Kanrai)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 7, + 8, + 9, + 10, + 12, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Complete Dinery (Smile Burger)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 5, + 9, + 16, + 17, + 21, + 22 + ] + }, + { + "name": "Complete Dinery (Maharaja)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 4, + 5, + 6, + 11, + 12, + 14, + 15, + 17, + 19, + 22 + ] + }, + { + "name": "Complete Dinery (Heroine)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 11, + 12, + 13, + 14, + 17, + 18, + 19, + 22, + 24 + ] + }, + { + "name": "Complete Dinery (Earth Angel)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 8, + 9, + 11, + 13, + 14, + 16, + 19, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Shellac)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 5, + 7, + 13, + 14, + 15, + 16, + 17, + 19, + 20, + 24 + ] + }, + { + "name": "Complete Dinery (Vincent)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 4, + 5, + 7, + 8, + 12, + 15, + 17, + 18, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Tsuruhashi Fugetsu)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 7, + 10, + 11, + 13, + 14, + 16, + 17, + 19, + 22, + 23 + ] + }, + { + "name": "Complete Dinery (Ganko Sushi)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 7, + 9, + 10, + 11, + 14, + 15, + 17, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Kinryu Ramen)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 7, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Kani Douraku)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 4, + 5, + 8, + 9, + 11, + 14, + 15, + 16, + 18, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Zuboraya)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 5, + 6, + 7, + 9, + 10, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + }, + { + "name": "Complete Dinery (Kushikatsu Daruma)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 4, + 8, + 9, + 10, + 15, + 16, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Komian)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 8, + 9, + 13, + 15, + 16, + 18, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Complete Dinery (Utahime)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 8, + 14, + 18, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Complete Dinery (Shot Bar STIJL)", + "group": { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 7, + 8, + 11, + 16, + 17, + 18, + 21, + 22 + ] + }, + { + "name": "Defeat 50 enemies on the street", + "group": { "name": "Defeat enemies on the street", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 6, + 7, + 8, + 14, + 16, + 17, + 18, + 20, + 21, + 22 + ] + }, + { + "name": "Defeat 150 enemies on the street", + "group": { + "name": "Defeat enemies on the street", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 4, + 7, + 10, + 11, + 12, + 17, + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Defeat 300 enemies on the street", + "group": { + "name": "Defeat enemies on the street", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 5, + 6, + 8, + 22, + 23 + ] + }, + { + "name": "Defeat 500 enemies on the street", + "group": { + "name": "Defeat enemies on the street", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 19, + 21, + 24 + ] + }, + { + "name": "Defeat 5 enemies in the Brawler Style (Kiryu)", + "group": { "name": "Defeat enemies in the Brawler Style (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 5, + 6, + 12, + 13, + 14, + 15, + 16, + 18, + 21, + 23 + ] + }, + { + "name": "Defeat 100 enemies in the Brawler Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Brawler Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 5, + 9, + 10, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 24 + ] + }, + { + "name": "Defeat 200 enemies in the Brawler Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Brawler Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 6, + 7, + 8, + 9, + 14, + 17, + 20, + 22, + 23 + ] + }, + { + "name": "Defeat 50 enemies in the Rush Style (Kiryu)", + "group": { "name": "Defeat enemies in the Rush Style (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 8, + 10, + 11, + 19, + 22, + 24 + ] + }, + { + "name": "Defeat 100 enemies in the Rush Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Rush Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 17, + 18, + 19, + 21, + 24 + ] + }, + { + "name": "Defeat 200 enemies in the Rush Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Rush Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 11, + 14, + 17, + 18, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Defeat 50 enemies in the Beast Style (Kiryu)", + "group": { "name": "Defeat enemies in the Beast Style (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 9, + 11, + 14, + 15, + 21, + 24 + ] + }, + { + "name": "Defeat 100 enemies in the Beast Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Beast Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 4, + 6, + 7, + 11, + 12, + 17, + 20, + 22 + ] + }, + { + "name": "Defeat 200 enemies in the Beast Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Beast Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 4, + 6, + 10, + 11, + 13, + 14, + 15, + 17, + 23 + ] + }, + { + "name": "Defeat 50 enemies in the Dragon Style (Kiryu)", + "group": { "name": "Defeat enemies in the Dragon Style (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 5, + 6, + 9, + 11, + 13, + 17, + 18, + 19, + 20 + ] + }, + { + "name": "Defeat 100 enemies in the Dragon Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Dragon Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 10, + 12, + 15, + 20, + 21, + 23 + ] + }, + { + "name": "Defeat 200 enemies in the Dragon Style (Kiryu)", + "group": { + "name": "Defeat enemies in the Dragon Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 6, + 7, + 13, + 16, + 18, + 19 + ] + }, + { + "name": "Defeat 50 enemies in the Thug Style (Majima)", + "group": { "name": "Defeat enemies in the Thug Style (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 5, + 6, + 8, + 10, + 11, + 12, + 17, + 18, + 22 + ] + }, + { + "name": "Defeat 100 enemies in the Thug Style (Majima)", + "group": { + "name": "Defeat enemies in the Thug Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 6, + 7, + 8, + 9, + 11, + 13, + 15, + 16, + 18, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat 200 enemies in the Thug Style (Majima)", + "group": { + "name": "Defeat enemies in the Thug Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 5, + 6, + 7, + 11, + 14, + 18, + 20, + 21, + 22 + ] + }, + { + "name": "Defeat 50 enemies in the Slugger Style (Majima)", + "group": { "name": "Defeat enemies in the Slugger Style (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 6, + 7, + 9, + 10, + 12, + 13, + 17, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat 100 enemies in the Slugger Style (Majima)", + "group": { + "name": "Defeat enemies in the Slugger Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 6, + 7, + 9, + 13, + 14, + 18, + 20, + 23, + 24 + ] + }, + { + "name": "Defeat 200 enemies in the Slugger Style (Majima)", + "group": { + "name": "Defeat enemies in the Slugger Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 5, + 6, + 11, + 16, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat 50 enemies in the Breaker Style (Majima)", + "group": { "name": "Defeat enemies in the Breaker Style (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 6, + 9, + 11, + 13, + 14, + 15, + 17, + 18, + 21 + ] + }, + { + "name": "Defeat 100 enemies in the Breaker Style (Majima)", + "group": { + "name": "Defeat enemies in the Breaker Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 6, + 12, + 15, + 16, + 17, + 18, + 19, + 21 + ] + }, + { + "name": "Defeat 200 enemies in the Breaker Style (Majima)", + "group": { + "name": "Defeat enemies in the Breaker Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 5, + 7, + 8, + 9, + 10, + 15, + 16, + 17, + 18, + 19, + 23, + 24 + ] + }, + { + "name": "Defeat 50 enemies in the Mad Dog Style (Majima)", + "group": { "name": "Defeat enemies in the Mad Dog Style (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 9, + 12, + 13, + 14, + 17, + 21, + 22 + ] + }, + { + "name": "Defeat 100 enemies in the Mad Dog Style (Majima)", + "group": { + "name": "Defeat enemies in the Mad Dog Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 10, + 12, + 13, + 15, + 16, + 17, + 19, + 21, + 23 + ] + }, + { + "name": "Defeat 200 enemies in the Mad Dog Style (Majima)", + "group": { + "name": "Defeat enemies in the Mad Dog Style (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 5, + 6, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 18, + 20, + 21, + 24 + ] + }, + { + "name": "Help 5 attack victims around town", + "group": { "name": "Help attack victims around town", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 6, + 8, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 22 + ] + }, + { + "name": "Help 15 attack victims around town", + "group": { + "name": "Help attack victims around town", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 7, + 15, + 18, + 19, + 24 + ] + }, + { + "name": "Help 30 attack victims around town", + "group": { + "name": "Help attack victims around town", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 5, + 9, + 11, + 12, + 17, + 18, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Win 10 coliseum tournaments", + "group": { "name": "Win coliseum tournaments", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 3, + 7, + 9, + 10, + 11, + 14, + 16, + 18, + 20, + 23 + ] + }, + { + "name": "Win 20 coliseum tournaments", + "group": { + "name": "Win coliseum tournaments", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 6, + 11, + 13, + 15, + 16, + 17, + 18, + 21, + 22 + ] + }, + { + "name": "Win 30 coliseum tournaments", + "group": { + "name": "Win coliseum tournaments", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 5, + 6, + 10, + 11, + 16, + 18, + 20, + 21 + ] + }, + { + "name": "Win 40 coliseum tournaments", + "group": { + "name": "Win coliseum tournaments", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 7, + 8, + 9, + 11, + 13, + 15, + 24 + ] + }, + { + "name": "Win 50 coliseum tournaments", + "group": { + "name": "Win coliseum tournaments", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 21 + ] + }, + { + "name": "Defeat 5 coliseum opponents", + "group": { "name": "Defeat coliseum opponents", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 4, + 5, + 7, + 10, + 11, + 13, + 15, + 16, + 20, + 21, + 24 + ] + }, + { + "name": "Defeat 15 coliseum opponents", + "group": { + "name": "Defeat coliseum opponents", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 6, + 12, + 14, + 18, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Defeat 25 coliseum opponents", + "group": { + "name": "Defeat coliseum opponents", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 15, + 16, + 22 + ] + }, + { + "name": "Defeat 1 nouveau riche enemy", + "group": { "name": "Defeat nouveau riche enemies", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 6, + 7, + 10, + 11, + 12, + 13, + 14, + 16, + 17, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat 5 nouveau riche enemies", + "group": { + "name": "Defeat nouveau riche enemies", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 7, + 16, + 18, + 19, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat 10 nouveau riche enemies", + "group": { + "name": "Defeat nouveau riche enemies", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 6, + 7, + 10, + 13, + 15, + 16, + 18, + 22, + 23 + ] + }, + { + "name": "Defeat Mr. Shakedown 1 time (Kiryu)", + "group": { "name": "Defeat Mr. Shakedown (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 6, + 7, + 8, + 10, + 12, + 16, + 17, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat Mr. Shakedown 5 times (Kiryu)", + "group": { + "name": "Defeat Mr. Shakedown (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 4, + 6, + 7, + 10, + 13, + 14, + 15, + 16, + 17, + 18, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat Mr. Shakedown 10 times (Kiryu)", + "group": { + "name": "Defeat Mr. Shakedown (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 4, + 6, + 9, + 11, + 12, + 16, + 18, + 21 + ] + }, + { + "name": "Defeat Mr. Shakedown 1 time (Majima)", + "group": { "name": "Defeat Mr. Shakedown (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 4, + 8, + 9, + 11, + 12, + 13, + 15, + 16, + 17, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Defeat Mr. Shakedown 5 times (Majima)", + "group": { + "name": "Defeat Mr. Shakedown (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 10, + 11, + 12, + 18, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Defeat Mr. Shakedown 10 times (Majima)", + "group": { + "name": "Defeat Mr. Shakedown (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 9, + 10, + 11, + 12, + 15, + 16, + 22 + ] + }, + { + "name": "Defeat Sega 1 time", + "group": { "name": "Defeat Sega", "parent": { "name": "Battle" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 7, + 8, + 9, + 13, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Earn a total of 1 mil in battle", + "group": { "name": "Earn a total in battle", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 5, + 9, + 11, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Earn a total of 5 mil in battle", + "group": { + "name": "Earn a total in battle", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 4, + 5, + 7, + 8, + 9, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Earn a total of 10 mil in battle", + "group": { + "name": "Earn a total in battle", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 4, + 5, + 8, + 14, + 16, + 17, + 21, + 22 + ] + }, + { + "name": "Earn a total of 100 mil in battle", + "group": { + "name": "Earn a total in battle", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 5, + 9, + 10, + 11, + 13, + 14, + 15, + 16, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Use Heat Actions 20 times", + "group": { "name": "Use Heat Actions", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 6, + 11, + 12, + 15, + 22, + 23, + 24 + ] + }, + { + "name": "Use Heat Actions 50 times", + "group": { + "name": "Use Heat Actions", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 4, + 6, + 12, + 13, + 14, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Use Heat Actions 100 times", + "group": { + "name": "Use Heat Actions", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 4, + 5, + 7, + 9, + 10, + 13, + 16, + 18, + 21 + ] + }, + { + "name": "Use Heat Actions 200 times", + "group": { + "name": "Use Heat Actions", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 4, + 6, + 7, + 10, + 11, + 12, + 13, + 14, + 17, + 19, + 23 + ] + }, + { + "name": "Use Heat Actions 300 times", + "group": { + "name": "Use Heat Actions", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 6, + 7, + 8, + 10, + 17, + 22 + ] + }, + { + "name": "Use 10 different Heat Actions (Kiryu)", + "group": { "name": "Use different Heat Actions (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 5, + 6, + 8, + 9, + 11, + 13, + 15, + 16, + 17, + 22, + 24 + ] + }, + { + "name": "Use 20 different Heat Actions (Kiryu)", + "group": { + "name": "Use different Heat Actions (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 6, + 7, + 10, + 11, + 14, + 15, + 17, + 18, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Use 40 different Heat Actions (Kiryu)", + "group": { + "name": "Use different Heat Actions (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 6, + 11, + 14, + 20, + 21, + 22 + ] + }, + { + "name": "Use 10 different Heat Actions (Majima)", + "group": { "name": "Use different Heat Actions (Majima)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 4, + 6, + 12, + 13, + 14, + 15, + 22, + 23, + 24 + ] + }, + { + "name": "Use 20 different Heat Actions (Majima)", + "group": { + "name": "Use different Heat Actions (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 4, + 7, + 8, + 11, + 16, + 19, + 21, + 24 + ] + }, + { + "name": "Use 30 different Heat Actions (Majima)", + "group": { + "name": "Use different Heat Actions (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 5, + 8, + 12, + 13, + 15, + 16, + 17, + 19, + 21 + ] + }, + { + "name": "Break 20 objects in battle", + "group": { "name": "Break objects in battle", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 7, + 10, + 12, + 17, + 21, + 23, + 24 + ] + }, + { + "name": "Break 50 objects in battle", + "group": { + "name": "Break objects in battle", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 5, + 6, + 7, + 8, + 9, + 11, + 12, + 13, + 14, + 16, + 18, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Break 100 objects in battle", + "group": { + "name": "Break objects in battle", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 4, + 8, + 10, + 12, + 13, + 16, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Acquire 10 different weapons", + "group": { "name": "Acquire different weapons", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 5, + 8, + 9, + 13, + 18, + 19, + 21, + 24 + ] + }, + { + "name": "Acquire 40 different weapons", + "group": { + "name": "Acquire different weapons", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 6, + 9, + 10, + 11, + 15, + 16, + 19, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Acquire 70 different weapons", + "group": { + "name": "Acquire different weapons", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 6, + 10, + 13, + 17, + 18, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Acquire 100 different weapons", + "group": { + "name": "Acquire different weapons", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 5, + 8, + 9, + 10, + 14, + 15, + 18, + 22, + 24 + ] + }, + { + "name": "Acquire 10 different gear items", + "group": { "name": "Acquire different gear items", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 7, + 8, + 9, + 11, + 12, + 13, + 14, + 16, + 19, + 20, + 21 + ] + }, + { + "name": "Acquire 25 different gear items", + "group": { + "name": "Acquire different gear items", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 13, + 16, + 18, + 21, + 23, + 24 + ] + }, + { + "name": "Acquire 45 different gear items", + "group": { + "name": "Acquire different gear items", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 5, + 6, + 10, + 12, + 15, + 19, + 20, + 22, + 24 + ] + }, + { + "name": "Acquire 70 different gear items", + "group": { + "name": "Acquire different gear items", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 10, + 11, + 16, + 17, + 20, + 23, + 24 + ] + }, + { + "name": "Defeat 10 enemies using weapons", + "group": { "name": "Defeat enemies using weapons", "parent": { "name": "Battle" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 7, + 9, + 11, + 13, + 14, + 15, + 18 + ] + }, + { + "name": "Defeat 50 enemies using weapons", + "group": { + "name": "Defeat enemies using weapons", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 7, + 8, + 9, + 11, + 12, + 14, + 15, + 16, + 21, + 22, + 24 + ] + }, + { + "name": "Defeat 100 enemies using weapons", + "group": { + "name": "Defeat enemies using weapons", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 5, + 7, + 9, + 10, + 14, + 15, + 17, + 18, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Learn all of Bacchus' moves (Kiryu)", + "group": { "name": "Learn all moves (Kiryu)", "parent": { "name": "Battle" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 16, + 17, + 18, + 19, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Learn all of Kamoji's moves (Kiryu)", + "group": { + "name": "Learn all moves (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 4, + 6, + 7, + 8, + 11, + 12, + 13, + 16, + 18, + 19, + 23 + ] + }, + { + "name": "Learn all of Miss Tatsu's moves (Kiryu)", + "group": { + "name": "Learn all moves (Kiryu)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 6, + 13, + 15, + 16, + 18, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Finish all bouts with Komeki (Majima)", + "group": { "name": "Learn all moves (Majima)", "parent": { "name": "Battle" } }, - { - "name": "Business - Kiryu" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 6, + 7, + 9, + 11, + 13, + 15, + 16, + 17, + 18, + 19 + ] + }, + { + "name": "Learn all of Fei Hu's moves (Majima)", + "group": { + "name": "Learn all moves (Majima)", + "parent": { + "name": "Battle" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 3, + 4, + 5, + 6, + 9, + 12, + 13, + 15, + 17, + 19, + 20, + 21, + 23 + ] + }, + { + "name": "Learn all of Areshi's moves (Majima)", + "group": { + "name": "Learn all moves (Majima)", + "parent": { + "name": "Battle" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 6, + 8, + 9, + 10, + 11, + 12, + 18, + 22, + 23 + ] + }, + { + "name": "Collect total proceeds of 1 mil (Kiryu)", + "group": { "name": "Collect total proceeds", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 5, + 6, + 8, + 14, + 17, + 18, + 20, + 21, + 23 + ] + }, + { + "name": "Collect total proceeds of 10 mil (Kiryu)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 6, + 8, + 11, + 15, + 18, + 19, + 21, + 24 + ] + }, + { + "name": "Collect total proceeds of 100 mil (Kiryu)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 4, + 6, + 8, + 12, + 14, + 15, + 16, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Collect total proceeds of 1 bil (Kiryu)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 7, + 8, + 11, + 12, + 14, + 15, + 17, + 18, + 20, + 21, + 24 + ] + }, + { + "name": "Buy 1 Leisure King property", + "group": { "name": "Buy Leisure King properties", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 6, + 8, + 9, + 10, + 11, + 13, + 14, + 17, + 18, + 24 + ] + }, + { + "name": "Buy 4 Leisure King properties", + "group": { + "name": "Buy Leisure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 7, + 8, + 9, + 10, + 12, + 13, + 16, + 17, + 23, + 24 + ] + }, + { + "name": "Buy 7 Leisure King properties", + "group": { + "name": "Buy Leisure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 8, + 9, + 10, + 12, + 15, + 18, + 23 + ] + }, + { + "name": "Buy 2 Electronics King properties", + "group": { "name": "Buy Electronics King properties", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 5, + 6, + 8, + 11, + 15, + 17, + 18, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Buy 5 Electronics King properties", + "group": { + "name": "Buy Electronics King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 13, + 18, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Buy 8 Electronics King properties", + "group": { + "name": "Buy Electronics King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 6, + 9, + 10, + 11, + 12, + 15, + 16, + 17, + 19 + ] + }, + { + "name": "Buy 3 Pleasure King properties", + "group": { "name": "Buy Pleasure King properties", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 4, + 5, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 17, + 20, + 24 + ] + }, + { + "name": "Buy 6 Pleasure King properties", + "group": { + "name": "Buy Pleasure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 6, + 10, + 12, + 13, + 18, + 20 + ] + }, + { + "name": "Buy 9 Pleasure King properties", + "group": { + "name": "Buy Pleasure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 7, + 9, + 10, + 11, + 13, + 14, + 16, + 17, + 19 + ] + }, + { + "name": "Buy 2 Gambling King properties", + "group": { "name": "Buy Gambling King properties", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 5, + 7, + 8, + 11, + 12, + 14, + 16, + 17, + 23 + ] + }, + { + "name": "Buy 5 Gambling King properties", + "group": { + "name": "Buy Gambling King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 6, + 7, + 8, + 10, + 11, + 15, + 17, + 21, + 24 + ] + }, + { + "name": "Buy 8 Gambling King properties", + "group": { + "name": "Buy Gambling King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 6, + 7, + 8, + 10, + 12, + 13, + 14, + 15, + 16, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Buy 2 Media King properties", + "group": { "name": "Buy Media King properties", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 4, + 5, + 7, + 11, + 13, + 15, + 17, + 19, + 20 + ] + }, + { + "name": "Buy 5 Media King properties", + "group": { + "name": "Buy Media King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 3, + 4, + 5, + 6, + 9, + 12, + 15, + 16, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Buy 8 Media King properties", + "group": { + "name": "Buy Media King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 5, + 7, + 10, + 12, + 14, + 15, + 19, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Raise 5 shops to Rank S", + "group": { "name": "Raise shops to Rank S", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 7, + 10, + 13, + 16, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Raise 20 shops to Rank S", + "group": { + "name": "Raise shops to Rank S", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 5, + 6, + 8, + 12, + 14, + 15, + 16, + 17, + 20, + 21, + 22 + ] + }, + { + "name": "Raise 50 shops to Rank S", + "group": { + "name": "Raise shops to Rank S", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 4, + 5, + 6, + 7, + 9, + 11, + 14, + 15, + 17, + 19, + 21, + 24 + ] + }, + { + "name": "Recruit 3 managers", + "group": { "name": "Recruit managers", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 5, + 6, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 18, + 19, + 21, + 24 + ] + }, + { + "name": "Recruit 8 managers", + "group": { + "name": "Recruit managers", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 4, + 6, + 8, + 15, + 16, + 21, + 22, + 24 + ] + }, + { + "name": "Recruit 3 advisors", + "group": { "name": "Recruit advisors", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 5, + 7, + 13, + 14, + 15, + 17, + 19, + 22 + ] + }, + { + "name": "Recruit 8 advisors", + "group": { + "name": "Recruit advisors", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 5, + 9, + 10, + 11, + 15, + 17, + 20, + 23, + 24 + ] + }, + { + "name": "Recruit 3 security", + "group": { "name": "Recruit security", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 7, + 9, + 10, + 12, + 13, + 15, + 18, + 19, + 22, + 24 + ] + }, + { + "name": "Recruit 8 security", + "group": { + "name": "Recruit security", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 3, + 4, + 7, + 8, + 10, + 11, + 13, + 15, + 16, + 17, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Defeat the Leisure King", + "group": { "name": "Defeat the Kings", "parent": { "name": "Business - Kiryu" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 6, + 7, + 10, + 12, + 17, + 18, + 19, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Defeat the Electronics King", + "group": { + "name": "Defeat the Kings", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 4, + 7, + 8, + 9, + 13, + 16, + 19, + 22, + 24 + ] + }, + { + "name": "Defeat the Pleasure King", + "group": { + "name": "Defeat the Kings", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 5, + 6, + 11, + 16, + 20, + 22, + 23 + ] + }, + { + "name": "Defeat the Gambling King", + "group": { + "name": "Defeat the Kings", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 5, + 6, + 11, + 12, + 14, + 17, + 20, + 23, + 24 + ] + }, + { + "name": "Defeat the Media King", + "group": { + "name": "Defeat the Kings", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 7, + 10, + 11, + 12, + 15, + 17, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Occupy 100% of the Leisure King area", + "group": { "name": "Occupy 100% of an area", "parent": { "name": "Business - Kiryu" } }, - { - "name": "Business - Majima" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 22, + 23, + 24 + ] + }, + { + "name": "Occupy 100% of the Electronics King area", + "group": { + "name": "Occupy 100% of an area", + "parent": { + "name": "Business - Kiryu" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 4, + 7, + 8, + 9, + 10, + 11, + 13, + 14, + 16, + 17, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Occupy 100% of the Pleasure King area", + "group": { + "name": "Occupy 100% of an area", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 7, + 8, + 9, + 10, + 12, + 13, + 14, + 18, + 21, + 23, + 24 + ] + }, + { + "name": "Occupy 100% of the Gambling King area", + "group": { + "name": "Occupy 100% of an area", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 7, + 9, + 10, + 12, + 13, + 15, + 16, + 18, + 19, + 21, + 22 + ] + }, + { + "name": "Occupy 100% of the Media King area", + "group": { + "name": "Occupy 100% of an area", + "parent": { + "name": "Business - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 6, + 7, + 8, + 9, + 12, + 14, + 17, + 22, + 23, + 24 + ] + }, + { + "name": "Collect total proceeds of 10 mil (Majima)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 5, + 8, + 9, + 10, + 17, + 18, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Collect total proceeds of 100 mil (Majima)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 7, + 8, + 9, + 11, + 15, + 16, + 17, + 18, + 19, + 22, + 23 + ] + }, + { + "name": "Collect total proceeds of 400 mil (Majima)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 8, + 9, + 11, + 12, + 14, + 16, + 18, + 19, + 20, + 22 + ] + }, + { + "name": "Collect total proceeds of 1 bil (Majima)", + "group": { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 5, + 6, + 8, + 14, + 19, + 22 + ] + }, + { + "name": "Complete Yuki's Substory", + "group": { "name": "Complete substories", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 5, + 6, + 9, + 12, + 13, + 14, + 15, + 16, + 19, + 20, + 24 + ] + }, + { + "name": "Complete Ai's Substory", + "group": { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 4, + 6, + 7, + 9, + 10, + 12, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "name": "Complete Saki's Substory", + "group": { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 5, + 6, + 11, + 12, + 13, + 14, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Complete Hibiki's Substory", + "group": { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 6, + 9, + 11, + 13, + 14, + 15, + 17, + 18, + 21, + 22 + ] + }, + { + "name": "Complete Chika's Substory", + "group": { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 6, + 7, + 10, + 12, + 15, + 16, + 17, + 18, + 20 + ] + }, + { + "name": "Complete Mana's Substory", + "group": { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 10, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Yuki's Accessory Collection 10", + "group": { "name": "Accessory Collections", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 5, + 9, + 11, + 12, + 13, + 15, + 16, + 18, + 21, + 22 + ] + }, + { + "name": "Yuki's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 6, + 9, + 10, + 14, + 16, + 17, + 18 + ] + }, + { + "name": "Yuki's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 5, + 7, + 8, + 10, + 11, + 14, + 17, + 18, + 19, + 21 + ] + }, + { + "name": "Ai's Accessory Collection 10", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 8, + 10, + 11, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Ai's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 4, + 8, + 9, + 10, + 15, + 16, + 17, + 18, + 19, + 20, + 22, + 24 + ] + }, + { + "name": "Ai's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 3, + 4, + 10, + 11, + 12, + 14, + 20, + 21, + 23 + ] + }, + { + "name": "Saki's Accessory Collection 10", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 12, + 13, + 14, + 16, + 18, + 19, + 20, + 21, + 23 + ] + }, + { + "name": "Saki's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 6, + 8, + 10, + 13, + 15, + 18, + 20, + 24 + ] + }, + { + "name": "Saki's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 6, + 7, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Hibiki's Accessory Collection 10", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 7, + 8, + 13, + 14, + 16, + 17, + 18, + 22, + 23 + ] + }, + { + "name": "Hibiki's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 5, + 7, + 8, + 11, + 13, + 15, + 17, + 19, + 21, + 23 + ] + }, + { + "name": "Hibiki's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 4, + 6, + 9, + 10, + 12, + 14, + 15, + 16, + 17, + 18, + 21, + 22, + 24 + ] + }, + { + "name": "Chika's Accessory Collection 10", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 5, + 7, + 9, + 10, + 12, + 13, + 17, + 18, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Chika's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 7, + 8, + 9, + 13, + 14, + 18, + 19, + 21, + 24 + ] + }, + { + "name": "Chika's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 14, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Mana's Accessory Collection 10", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 5, + 7, + 8, + 10, + 12, + 13, + 15, + 18, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Mana's Accessory Collection 20", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 4, + 6, + 7, + 9, + 10, + 12, + 16, + 21, + 22 + ] + }, + { + "name": "Mana's Accessory Collection 30", + "group": { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 9, + 12, + 14, + 17, + 18, + 21, + 23 + ] + }, + { + "name": "Serve a total of 100 customers", + "group": { "name": "Serve a total customers", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 5, + 6, + 7, + 9, + 10, + 15, + 16, + 17, + 19, + 20, + 22 + ] + }, + { + "name": "Serve a total of 200 customers", + "group": { + "name": "Serve a total customers", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 6, + 7, + 8, + 10, + 12, + 13, + 15, + 17, + 19, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Serve a total of 500 customers", + "group": { + "name": "Serve a total customers", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 6, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 16, + 18, + 24 + ] + }, + { + "name": "Recruit 6 bronze hostesses", + "group": { "name": "Recruit hostesses", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 4, + 6, + 7, + 8, + 10, + 12, + 13, + 14, + 23 + ] + }, + { + "name": "Recruit 4 silver hostesses", + "group": { + "name": "Recruit hostesses", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 6, + 9, + 10, + 14, + 15, + 19, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Recruit 4 gold hostesses", + "group": { + "name": "Recruit hostesses", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 8, + 10, + 11, + 13, + 17, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Recruit 6 platinum hostesses", + "group": { + "name": "Recruit hostesses", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 5, + 11, + 14, + 16, + 18, + 19, + 20, + 24 + ] + }, + { + "name": "Partner with 3 shops in Mars area", + "group": { "name": "Partner with shops in Mars area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 4, + 5, + 13, + 14, + 16, + 22, + 24 + ] + }, + { + "name": "Partner with 6 shops in Mars area", + "group": { + "name": "Partner with shops in Mars area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 6, + 7, + 13, + 14, + 17, + 19 + ] + }, + { + "name": "Partner with 10 shops in Mars area", + "group": { + "name": "Partner with shops in Mars area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 7, + 14, + 22 + ] + }, + { + "name": "Partner with 3 shops in Jupiter area", + "group": { "name": "Partner with shops in Jupiter area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 5, + 6, + 11, + 12, + 13, + 15, + 17, + 21, + 22, + 23 + ] + }, + { + "name": "Partner with 6 shops in Jupiter area", + "group": { + "name": "Partner with shops in Jupiter area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 5, + 7, + 10, + 11, + 14, + 15, + 16, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Partner with 10 shops in Jupiter area", + "group": { + "name": "Partner with shops in Jupiter area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 5, + 9, + 13, + 15, + 16, + 17, + 19, + 21, + 22 + ] + }, + { + "name": "Partner with 3 shops in Venus area", + "group": { "name": "Partner with shops in Venus area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 4, + 9, + 10, + 13, + 18, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Partner with 6 shops in Venus area", + "group": { + "name": "Partner with shops in Venus area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 4, + 11, + 12, + 15, + 19, + 22, + 24 + ] + }, + { + "name": "Partner with 10 shops in Venus area", + "group": { + "name": "Partner with shops in Venus area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 6, + 8, + 11, + 12, + 14, + 15, + 16, + 17, + 21, + 23, + 24 + ] + }, + { + "name": "Partner with 3 shops in Mercury area", + "group": { "name": "Partner with shops in Mercury area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 9, + 11, + 12, + 13, + 15, + 18, + 20, + 21, + 22 + ] + }, + { + "name": "Partner with 6 shops in Mercury area", + "group": { + "name": "Partner with shops in Mercury area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 4, + 5, + 6, + 8, + 9, + 14, + 16, + 20, + 23 + ] + }, + { + "name": "Partner with 10 shops in Mercury area", + "group": { + "name": "Partner with shops in Mercury area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 5, + 6, + 7, + 9, + 11, + 12, + 16, + 17, + 20, + 23 + ] + }, + { + "name": "Partner with 3 shops in Moon area", + "group": { "name": "Partner with shops in Moon area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 6, + 7, + 8, + 12, + 13, + 14, + 16, + 17, + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Partner with 6 shops in Moon area", + "group": { + "name": "Partner with shops in Moon area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 4, + 7, + 11, + 12, + 16, + 21, + 24 + ] + }, + { + "name": "Partner with 10 shops in Moon area", + "group": { + "name": "Partner with shops in Moon area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 4, + 6, + 8, + 10, + 11, + 15, + 18, + 20 + ] + }, + { + "name": "Take over Mars area", + "group": { "name": "Take over an area", "parent": { "name": "Business - Majima" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 5, + 9, + 11, + 12, + 14, + 18, + 20, + 22, + 23 + ] + }, + { + "name": "Take over Jupiter area", + "group": { + "name": "Take over an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 5, + 6, + 8, + 9, + 14, + 17, + 18, + 19, + 20, + 21 + ] + }, + { + "name": "Take over Mercury area", + "group": { + "name": "Take over an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 6, + 8, + 9, + 11, + 12, + 13, + 14, + 18, + 20, + 23, + 24 + ] + }, + { + "name": "Take over Venus area", + "group": { + "name": "Take over an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 5, + 8, + 9, + 11, + 16, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Take over Moon area", + "group": { + "name": "Take over an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 5, + 6, + 8, + 9, + 10, + 12, + 13, + 14, + 15, + 19, + 21 + ] + }, + { + "name": "Earn 1500 fans in Mars area", + "group": { "name": "Earn fans in an area", "parent": { "name": "Business - Majima" } }, - { - "name": "Substories - Kiryu" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 9, + 10, + 11, + 12, + 14, + 17, + 19, + 22, + 24 + ] + }, + { + "name": "Earn 3000 fans in Jupiter area", + "group": { + "name": "Earn fans in an area", + "parent": { + "name": "Business - Majima" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 4, + 6, + 8, + 9, + 12, + 13, + 14, + 16, + 21, + 22, + 23 + ] + }, + { + "name": "Earn 4000 fans in Mercury area", + "group": { + "name": "Earn fans in an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 12, + 15, + 16, + 17, + 18, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Earn 5000 fans in Venus area", + "group": { + "name": "Earn fans in an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 10, + 11, + 13, + 14, + 17, + 18, + 20, + 21, + 24 + ] + }, + { + "name": "Earn 10000 fans in Moon area", + "group": { + "name": "Earn fans in an area", + "parent": { + "name": "Business - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 12, + 18, + 21 + ] + }, + { + "name": "Complete 5 Kiryu Substories", + "group": { "name": "Complete Kiryu Substories", "parent": { "name": "Substories - Kiryu" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 15, + 19, + 23 + ] + }, + { + "name": "Complete 10 Kiryu Substories", + "group": { + "name": "Complete Kiryu Substories", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 12, + 13, + 14, + 18, + 22, + 23 + ] + }, + { + "name": "Complete 20 Kiryu Substories", + "group": { + "name": "Complete Kiryu Substories", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 11, + 14, + 15, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Complete 30 Kiryu Substories", + "group": { + "name": "Complete Kiryu Substories", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 5, + 11, + 12, + 15, + 16, + 18, + 21, + 22, + 24 + ] + }, + { + "name": "Complete 40 Kiryu Substories", + "group": { + "name": "Complete Kiryu Substories", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 7, + 9, + 10, + 13, + 16, + 17, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Befriend Officer Kikuchi", + "group": { "name": "Befriend people", "parent": { "name": "Substories - Kiryu" } }, - { - "name": "Substories - Majima" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 9, + 10, + 11, + 12, + 17, + 23 + ] + }, + { + "name": "Befriend Kitajima the Shroomer", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 3, + 4, + 6, + 7, + 10, + 11, + 13, + 15, + 18, + 20, + 23, + 24 + ] + }, + { + "name": "Befriend Mr. Libido - Akimoto", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 17, + 19 + ] + }, + { + "name": "Befriend Mr. Moneybags - Fukushima", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 6, + 8, + 9, + 11, + 12, + 13, + 14, + 16, + 18, + 21, + 24 + ] + }, + { + "name": "Befriend Pocket Circuit Fighter", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 5, + 6, + 7, + 8, + 9, + 11, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Befriend Miho", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 4, + 6, + 11, + 12, + 15, + 16, + 17, + 19, + 20, + 23 + ] + }, + { + "name": "Befriend Emiri", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 8, + 9, + 10, + 11, + 12, + 14, + 18, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Befriend the Sushi Gin Chef", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13, + 15, + 16, + 17, + 19, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Befriend Luka", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 5, + 7, + 9, + 15, + 18, + 21, + 22, + 24 + ] + }, + { + "name": "Complete 5 Majima Substories", + "group": { "name": "Complete Majima Substories", "parent": { "name": "Substories - Majima" } }, - { - "name": "Minigames - Pocket Circuit" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 7, + 8, + 9, + 11, + 14, + 16, + 17, + 20, + 24 + ] + }, + { + "name": "Complete 10 Majima Substories", + "group": { + "name": "Complete Majima Substories", + "parent": { + "name": "Substories - Majima" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 6, + 7, + 8, + 11, + 18, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Complete 20 Majima Substories", + "group": { + "name": "Complete Majima Substories", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 21, + 23, + 24 + ] + }, + { + "name": "Complete 30 Majima Substories", + "group": { + "name": "Complete Majima Substories", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 3, + 4, + 5, + 6, + 9, + 10, + 13, + 16, + 17, + 18, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Complete 40 Majima Substories", + "group": { + "name": "Complete Majima Substories", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 3, + 4, + 9, + 10, + 13, + 16, + 17, + 18, + 19, + 20, + 21 + ] + }, + { + "name": "Befriend Simon the Mystery Man", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 6, + 7, + 9, + 10, + 11, + 12, + 14, + 15, + 17, + 20, + 22, + 23 + ] + }, + { + "name": "Befriend Mr. Moneybags - Tanioka", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 5, + 8, + 11, + 12, + 13, + 14, + 15, + 18, + 21 + ] + }, + { + "name": "Befriend Mr. Libido - Habu", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 6, + 7, + 9, + 10, + 11, + 12, + 15, + 16, + 17, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Befriend Doll Girl", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 9, + 10, + 12, + 13, + 14, + 17, + 21, + 23, + 24 + ] + }, + { + "name": "Befriend the boss at Komian", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 4, + 6, + 7, + 8, + 9, + 12, + 16, + 17, + 19, + 22, + 24 + ] + }, + { + "name": "Befriend the barkeep", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 5, + 8, + 9, + 17, + 18, + 20, + 24 + ] + }, + { + "name": "Befriend the Gandhara staff member", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 6, + 7, + 10, + 13, + 16, + 19, + 23, + 24 + ] + }, + { + "name": "Befriend Kyoko", + "group": { + "name": "Befriend people", + "parent": { + "name": "Substories - Majima" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 4, + 6, + 7, + 10, + 12, + 16, + 17, + 20, + 22, + 23, + 24 + ] + }, + { + "name": "Collect 5 different tires", + "group": { "name": "Collect different tires", "parent": { "name": "Minigames - Pocket Circuit" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 4, + 9, + 11, + 13, + 14, + 17, + 18, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Collect 10 different tires", + "group": { + "name": "Collect different tires", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 4, + 7, + 8, + 9, + 10, + 13, + 14, + 16, + 17, + 19, + 23 + ] + }, + { + "name": "Collect 20 different tires", + "group": { + "name": "Collect different tires", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 5, + 6, + 9, + 10, + 12, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Collect 5 different motors", + "group": { "name": "Collect different motors", "parent": { "name": "Minigames - Pocket Circuit" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 5, + 9, + 10, + 11, + 12, + 19, + 20, + 21, + 23 + ] + }, + { + "name": "Collect 10 different motors", + "group": { + "name": "Collect different motors", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 5, + 7, + 8, + 9, + 12, + 14, + 17, + 21 + ] + }, + { + "name": "Collect 15 different motors", + "group": { + "name": "Collect different motors", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 6, + 8, + 12, + 13, + 15, + 17, + 18 + ] + }, + { + "name": "Collect 5 different gears", + "group": { "name": "Collect different gears", "parent": { "name": "Minigames - Pocket Circuit" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 7, + 10, + 11, + 22, + 24 + ] + }, + { + "name": "Collect 10 different gears", + "group": { + "name": "Collect different gears", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 5, + 10, + 12, + 14, + 15, + 23, + 24 + ] + }, + { + "name": "Collect 20 different gears", + "group": { + "name": "Collect different gears", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 8, + 9, + 11, + 13, + 16, + 20, + 22, + 23 + ] + }, + { + "name": "Collect 5 different frames", + "group": { "name": "Collect different frames", "parent": { "name": "Minigames - Pocket Circuit" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 6, + 7, + 9, + 10, + 11, + 17, + 18, + 23, + 24 + ] + }, + { + "name": "Collect 10 different frames", + "group": { + "name": "Collect different frames", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 5, + 6, + 7, + 8, + 10, + 12, + 16, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Collect 20 different frames", + "group": { + "name": "Collect different frames", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 2, + 5, + 11, + 12, + 13, + 14, + 15, + 17, + 20, + 22, + 23 + ] + }, + { + "name": "Compete in races 10 times", + "group": { "name": "Win / compete in races", "parent": { "name": "Minigames - Pocket Circuit" } }, - { - "name": "Minigames - Arcade" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 10, + 11, + 14 + ] + }, + { + "name": "Win the Introductory Race", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 5, + 6, + 7, + 8, + 9, + 14, + 17, + 18, + 20, + 22, + 24 + ] + }, + { + "name": "Win the Little Racers' Cup", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 6, + 9, + 11, + 12, + 14, + 16, + 19, + 20, + 22 + ] + }, + { + "name": "Win the Rookies' Race", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 4, + 5, + 7, + 9, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 22, + 23, + 24 + ] + }, + { + "name": "Win the Pro-Am Race", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 9, + 11, + 13, + 14, + 16, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Win the Experts' Race", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 4, + 6, + 7, + 9, + 10, + 11, + 13, + 14, + 18, + 23, + 24 + ] + }, + { + "name": "Win the Champions' Cup", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 2, + 4, + 5, + 6, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 17, + 20, + 21, + 22 + ] + }, + { + "name": "Win the King of Speed Cup", + "group": { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 8, + 11, + 13, + 14, + 16, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Get 5 million points in Space Harrier", + "group": { "name": "Get points in game", "parent": { "name": "Minigames - Arcade" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 10, + 13, + 15, + 16, + 17, + 19, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Get 5 million points in Out Run", + "group": { + "name": "Get points in game", + "parent": { + "name": "Minigames - Arcade" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 8, + 15, + 16, + 20, + 21, + 24 + ] + }, + { + "name": "Get 100,000 points in Fantasy Zone", + "group": { + "name": "Get points in game", + "parent": { + "name": "Minigames - Arcade" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 6, + 11, + 12, + 14, + 15, + 19, + 20, + 24 + ] + }, + { + "name": "Get 5 million points in Super Hang-On", + "group": { + "name": "Get points in game", + "parent": { + "name": "Minigames - Arcade" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 8, + 9, + 10, + 13, + 14, + 15, + 16, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Acquire 5 different prizes", + "group": { "name": "Acquire different prizes", "parent": { "name": "Minigames - Arcade" } }, - { - "name": "Minigames - Mahjong" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 16, + 21, + 22, + 24 + ] + }, + { + "name": "Acquire 15 different prizes", + "group": { + "name": "Acquire different prizes", + "parent": { + "name": "Minigames - Arcade" + } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 7, + 13, + 14, + 15, + 16, + 17, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Win 1 shogi game without a take back", + "group": { "name": "Win shogi games without a take back", "parent": { "name": "Minigames - Mahjong" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 5, + 6, + 8, + 9, + 12, + 16, + 17, + 18, + 19, + 21, + 22, + 24 + ] + }, + { + "name": "Win 3 shogi games without a take back", + "group": { + "name": "Win shogi games without a take back", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 7, + 8, + 9, + 10, + 14, + 15, + 22, + 23, + 24 + ] + }, + { + "name": "Win 5 shogi games without a take back", + "group": { + "name": "Win shogi games without a take back", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 2, + 3, + 6, + 7, + 9, + 11, + 14, + 15, + 16, + 19, + 21, + 22, + 24 + ] + }, + { + "name": "Go out 10 times", + "group": { "name": "Go out", "parent": { "name": "Minigames - Mahjong" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 5, + 8, + 10, + 13, + 14, + 15, + 16, + 17, + 22, + 23, + 24 + ] + }, + { + "name": "Go out with Mangan 5 times", + "group": { + "name": "Go out", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 6, + 7, + 8, + 10, + 18, + 22, + 24 + ] + }, + { + "name": "Go out with Haneman 1 time", + "group": { + "name": "Go out", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 5, + 10, + 11, + 12, + 14, + 16, + 17, + 20 + ] + }, + { + "name": "Go out with Riichi Ippatsu", + "group": { + "name": "Go out", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 19, + 21, + 23, + 24 + ] + }, + { + "name": "Go out with Full Straight", + "group": { + "name": "Go out", + "parent": { + "name": "Minigames - Mahjong" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 3, + 7, + 8, + 12, + 13, + 14, + 15, + 19, + 20, + 21, + 24 + ] + }, + { + "name": "Earn a total of 10 million in mahjong", + "group": { "name": "Earn a total in Mahjong", "parent": { "name": "Minigames - Mahjong" } }, - { - "name": "Minigames - Fishing" - }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 1, + 4, + 5, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 20, + 22, + 23 + ] + }, + { + "name": "Collect 5 different freshwater fish", + "group": { "name": "Collect different freshwater fish", "parent": { "name": "Minigames - Fishing" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 5, + 7, + 9, + 10, + 12, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "Collect 15 different freshwater fish", + "group": { + "name": "Collect different freshwater fish", + "parent": { + "name": "Minigames - Fishing" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 5, + 8, + 9, + 13, + 15, + 17, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Collect 5 different saltwater fish", + "group": { "name": "Collect different saltwater fish", "parent": { "name": "Minigames - Fishing" } }, - { - "name": "Minigames - Gambling" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 5, + 6, + 9, + 11, + 13, + 14, + 15, + 19, + 23 + ] + }, + { + "name": "Collect 18 different saltwater fish", + "group": { + "name": "Collect different saltwater fish", + "parent": { + "name": "Minigames - Fishing" + } }, - { + "tags": [ + "Hard" + ], + "possible_spaces": [ + 3, + 5, + 6, + 7, + 10, + 11, + 12, + 13, + 15, + 17, + 20, + 21 + ] + }, + { + "name": "Earn a total of 1 million in cho-han", + "group": { "name": "Earn a total with gambling", "parent": { "name": "Minigames - Gambling" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 18, + 21, + 22, + 23 + ] + }, + { + "name": "Earn a total of 1 million in cee-lo", + "group": { + "name": "Earn a total with gambling", + "parent": { + "name": "Minigames - Gambling" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 4, + 5, + 9, + 11, + 12, + 14, + 15, + 16, + 18, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Earn a total of 1 million in koi-koi", + "group": { + "name": "Earn a total with gambling", + "parent": { + "name": "Minigames - Gambling" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 3, + 5, + 7, + 9, + 10, + 11, + 13, + 14, + 15, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Earn a total of 1 million in oicho-kabu", + "group": { + "name": "Earn a total with gambling", + "parent": { + "name": "Minigames - Gambling" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 6, + 7, + 9, + 10, + 12, + 17, + 18, + 23 + ] + }, + { + "name": "Win a total of 1mil yen in Catfights", + "group": { "name": "Win a total in Catfights", "parent": { "name": "Minigames - Gambling" } }, - { - "name": "Minigames - Casino" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 4, + 6, + 7, + 10, + 11, + 13, + 14, + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Win a total of 10mil yen in Catfights", + "group": { + "name": "Win a total in Catfights", + "parent": { + "name": "Minigames - Gambling" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 6, + 8, + 9, + 10, + 11, + 14, + 17, + 18, + 19, + 20, + 22, + 24 + ] + }, + { + "name": "Win a total of 100mil yen in Catfights", + "group": { + "name": "Win a total in Catfights", + "parent": { + "name": "Minigames - Gambling" + } + }, + "tags": [ + "Hard" + ], + "possible_spaces": [ + 0, + 6, + 7, + 8, + 10, + 11, + 12, + 14, + 18, + 22, + 23 + ] + }, + { + "name": "Earn a total of 10 million in poker", + "group": { "name": "Earn a total with the casino", "parent": { "name": "Minigames - Casino" } }, - { - "name": "Minigames - Sports" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 6, + 12, + 13, + 15, + 16, + 18, + 19, + 20, + 21, + 22 + ] + }, + { + "name": "Earn a total of 5 million in blackjack", + "group": { + "name": "Earn a total with the casino", + "parent": { + "name": "Minigames - Casino" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 6, + 7, + 8, + 9, + 12, + 13, + 16, + 17, + 19, + 21, + 22 + ] + }, + { + "name": "Earn a total of 10 million in baccarat", + "group": { + "name": "Earn a total with the casino", + "parent": { + "name": "Minigames - Casino" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 6, + 7, + 8, + 11, + 14, + 15, + 16, + 17, + 18, + 21, + 22, + 23 + ] + }, + { + "name": "Earn a total of 10 million in roulette", + "group": { + "name": "Earn a total with the casino", + "parent": { + "name": "Minigames - Casino" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 5, + 7, + 8, + 9, + 10, + 11, + 13, + 15, + 16, + 17, + 18, + 19, + 20, + 23 + ] + }, + { + "name": "Earn a total of 10 million in darts", + "group": { "name": "Earn a total with sports", "parent": { "name": "Minigames - Sports" } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 4, + 5, + 7, + 12, + 13, + 15, + 16, + 23, + 24 + ] + }, + { + "name": "Earn a total of 10 million in pool", + "group": { + "name": "Earn a total with sports", + "parent": { + "name": "Minigames - Sports" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 2, + 5, + 6, + 7, + 11, + 13, + 14, + 15, + 16, + 17, + 19, + 20, + 22, + 24 + ] + }, + { + "name": "Earn a total of 5 million by batting", + "group": { + "name": "Earn a total with sports", + "parent": { + "name": "Minigames - Sports" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 8, + 9, + 11, + 12, + 13, + 14, + 17, + 18, + 20, + 21, + 22, + 23, + 24 + ] + }, + { + "name": "Earn a total of 10 million in split games", + "group": { + "name": "Earn a total with sports", + "parent": { + "name": "Minigames - Sports" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 3, + 4, + 7, + 8, + 9, + 10, + 11, + 13, + 14, + 21, + 24 + ] + }, + { + "name": "Perform 10 hat tricks", + "group": { "name": "Perform various things", "parent": { "name": "Minigames - Sports" } }, - { - "name": "Minigames - Dancing" + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 3, + 5, + 10, + 12, + 14, + 18, + 22 + ] + }, + { + "name": "Perform 3 combination shots", + "group": { + "name": "Perform various things", + "parent": { + "name": "Minigames - Sports" + } }, - { + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 4, + 5, + 6, + 7, + 9, + 11, + 12, + 14, + 15, + 16, + 18, + 20, + 24 + ] + }, + { + "name": "Perform 3 carom shots", + "group": { + "name": "Perform various things", + "parent": { + "name": "Minigames - Sports" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 6, + 12, + 14, + 15, + 19, + 21, + 22 + ] + }, + { + "name": "Bowl 10 strikes", + "group": { + "name": "Perform various things", + "parent": { + "name": "Minigames - Sports" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 4, + 6, + 7, + 11, + 14, + 15, + 16, + 22, + 24 + ] + }, + { + "name": "Friday Night (Easy)", + "group": { "name": "Dancing (Easy)", "parent": { "name": "Minigames - Dancing" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 5, + 7, + 8, + 10, + 11, + 13, + 15, + 16, + 18, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Queen of Passion (Easy)", + "group": { + "name": "Dancing (Easy)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 3, + 5, + 8, + 13, + 14, + 15, + 16, + 18, + 21, + 23 + ] + }, + { + "name": "I'm Gonna Make Her Mine (Easy)", + "group": { + "name": "Dancing (Easy)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 5, + 6, + 11, + 12, + 14, + 16, + 18, + 19, + 20, + 21, + 23 + ] + }, + { + "name": "I Wanna Take You Home (Easy)", + "group": { + "name": "Dancing (Easy)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 12, + 14, + 15, + 21, + 22, + 23 + ] + }, + { + "name": "Koi no DISCO QUEEN (Easy)", + "group": { + "name": "Dancing (Easy)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 10, + 12, + 13, + 14, + 16, + 17, + 22, + 23 + ] + }, + { + "name": "Friday Night (Normal)", + "group": { "name": "Dancing (Normal)", "parent": { "name": "Minigames - Dancing" } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 3, + 7, + 10, + 11, + 13, + 15, + 17, + 21, + 23 + ] + }, + { + "name": "Queen of Passion (Normal)", + "group": { + "name": "Dancing (Normal)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 7, + 16, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "I'm Gonna Make Her Mine (Normal)", + "group": { + "name": "Dancing (Normal)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 7, + 8, + 9, + 11, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "I Wanna Take You Home (Normal)", + "group": { + "name": "Dancing (Normal)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 5, + 6, + 8, + 9, + 10, + 13, + 17, + 18, + 22, + 24 + ] + }, + { + "name": "Koi no DISCO QUEEN (Normal)", + "group": { + "name": "Dancing (Normal)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 6, + 7, + 9, + 10, + 13, + 14, + 17, + 18, + 23 + ] + }, + { + "name": "Friday Night (Hard)", + "group": { "name": "Dancing (Hard)", "parent": { "name": "Minigames - Dancing" } }, - { - "name": "Minigames - Karaoke" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 3, + 4, + 5, + 8, + 9, + 10, + 11, + 18, + 19, + 22, + 24 + ] + }, + { + "name": "I'm Gonna Make Her Mine (Hard)", + "group": { + "name": "Dancing (Hard)", + "parent": { + "name": "Minigames - Dancing" + } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 3, + 7, + 11, + 13, + 14, + 15, + 16, + 19, + 21, + 22, + 23 + ] + }, + { + "name": "Queen of Passion (Hard)", + "group": { + "name": "Dancing (Hard)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 6, + 8, + 9, + 12, + 13, + 14, + 18, + 19, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "I Wanna Take You Home (Hard)", + "group": { + "name": "Dancing (Hard)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 4, + 5, + 6, + 11, + 12, + 13, + 15, + 17, + 20, + 23 + ] + }, + { + "name": "Koi no DISCO QUEEN (Hard)", + "group": { + "name": "Dancing (Hard)", + "parent": { + "name": "Minigames - Dancing" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 8, + 10, + 13, + 14, + 17, + 18, + 19, + 22 + ] + }, + { + "name": "Get 90+ in Judgement -Shinpan- (Kiryu)", + "group": { "name": "Get 90+ in a song", "parent": { "name": "Minigames - Karaoke" } }, - { - "name": "Minigames - Dates" + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 5, + 6, + 7, + 10, + 11, + 12, + 17, + 19, + 23, + 24 + ] + }, + { + "name": "Get 90+ in Bakamitai (Kiryu)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } }, - { + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 2, + 4, + 5, + 6, + 11, + 12, + 13, + 14, + 17, + 18, + 19 + ] + }, + { + "name": "Get 90+ in x3 Shine (Kiryu)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 3, + 6, + 11, + 13, + 14, + 16, + 18, + 20, + 21, + 23, + 24 + ] + }, + { + "name": "Get 90+ in Heartbreak Mermaid (Kiryu)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 5, + 7, + 8, + 11, + 12, + 13, + 19, + 20, + 23, + 24 + ] + }, + { + "name": "Get 90+ in Rouge of Love (Kiryu)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 0, + 1, + 2, + 6, + 8, + 9, + 10, + 11, + 13, + 17, + 18, + 20, + 21, + 22 + ] + }, + { + "name": "Get 90+ in 24-hour Cinderella (Majima)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 4, + 5, + 12, + 14, + 17, + 20, + 21, + 22, + 24 + ] + }, + { + "name": "Get 90+ in x3 Shine (Majima)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 1, + 6, + 7, + 8, + 9, + 12, + 14, + 15, + 18 + ] + }, + { + "name": "Get 90+ in Heartbreak Mermaid (Majima)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 4, + 6, + 9, + 10, + 11, + 15, + 16, + 19, + 20, + 22 + ] + }, + { + "name": "Get 90+ in Rouge of Love (Majima)", + "group": { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + "tags": [ + "Easy" + ], + "possible_spaces": [ + 2, + 3, + 4, + 6, + 7, + 8, + 10, + 13, + 14, + 17, + 20, + 21, + 22 + ] + }, + { + "name": "Befriend Haruki", + "group": { "name": "Befriend girlfriend", "parent": { "name": "Minigames - Dates" } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 0, + 1, + 2, + 4, + 7, + 14, + 16, + 17, + 18, + 19, + 20, + 22 + ] + }, + { + "name": "Befriend Ayaka", + "group": { + "name": "Befriend girlfriend", + "parent": { + "name": "Minigames - Dates" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 1, + 2, + 3, + 6, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 16, + 17, + 21, + 22, + 23 + ] + }, + { + "name": "Befriend Riku", + "group": { + "name": "Befriend girlfriend", + "parent": { + "name": "Minigames - Dates" + } + }, + "tags": [ + "Normal" + ], + "possible_spaces": [ + 2, + 3, + 5, + 8, + 10, + 11, + 12, + 18, + 23 + ] + } + ], + "groups": [ + { + "name": "Adventure" + }, + { + "name": "Talk to people", + "parent": { + "name": "Adventure" } - ] - } + }, + { + "name": "Dine at eateries", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Buy from Dream Machines", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Entertain yourself", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Eat food items", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Eat medicine items", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Travel by taxi", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Travel on foot", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Travel by dashing", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Earn money", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Spend money", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Scatter money", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Collect telephone cards (Kiryu)", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Collect telephone cards (Majima)", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Watch different video clips", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Complete dineries", + "parent": { + "name": "Adventure" + } + }, + { + "name": "Battle" + }, + { + "name": "Defeat enemies on the street", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Brawler Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Rush Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Beast Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Dragon Style (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Thug Style (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Slugger Style (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Breaker Style (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies in the Mad Dog Style (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Help attack victims around town", + "parent": { + "name": "Battle" + } + }, + { + "name": "Win coliseum tournaments", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat coliseum opponents", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat nouveau riche enemies", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat Mr. Shakedown (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat Mr. Shakedown (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat Sega", + "parent": { + "name": "Battle" + } + }, + { + "name": "Earn a total in battle", + "parent": { + "name": "Battle" + } + }, + { + "name": "Use Heat Actions", + "parent": { + "name": "Battle" + } + }, + { + "name": "Use different Heat Actions (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Use different Heat Actions (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Break objects in battle", + "parent": { + "name": "Battle" + } + }, + { + "name": "Acquire different weapons", + "parent": { + "name": "Battle" + } + }, + { + "name": "Acquire different gear items", + "parent": { + "name": "Battle" + } + }, + { + "name": "Defeat enemies using weapons", + "parent": { + "name": "Battle" + } + }, + { + "name": "Learn all moves (Kiryu)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Learn all moves (Majima)", + "parent": { + "name": "Battle" + } + }, + { + "name": "Business - Kiryu" + }, + { + "name": "Collect total proceeds", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Buy Leisure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Buy Electronics King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Buy Pleasure King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Buy Gambling King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Buy Media King properties", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Raise shops to Rank S", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Recruit managers", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Recruit advisors", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Recruit security", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Defeat the Kings", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Occupy 100% of an area", + "parent": { + "name": "Business - Kiryu" + } + }, + { + "name": "Business - Majima" + }, + { + "name": "Complete substories", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Accessory Collections", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Serve a total customers", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Recruit hostesses", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Partner with shops in Mars area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Partner with shops in Jupiter area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Partner with shops in Venus area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Partner with shops in Mercury area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Partner with shops in Moon area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Take over an area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Earn fans in an area", + "parent": { + "name": "Business - Majima" + } + }, + { + "name": "Substories - Kiryu" + }, + { + "name": "Complete Kiryu Substories", + "parent": { + "name": "Substories - Kiryu" + } + }, + { + "name": "Befriend people", + "parent": { + "name": "Substories - Kiryu" + } + }, + { + "name": "Substories - Majima" + }, + { + "name": "Complete Majima Substories", + "parent": { + "name": "Substories - Majima" + } + }, + { + "name": "Minigames - Pocket Circuit" + }, + { + "name": "Collect different tires", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + { + "name": "Collect different motors", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + { + "name": "Collect different gears", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + { + "name": "Collect different frames", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + { + "name": "Win / compete in races", + "parent": { + "name": "Minigames - Pocket Circuit" + } + }, + { + "name": "Minigames - Arcade" + }, + { + "name": "Get points in game", + "parent": { + "name": "Minigames - Arcade" + } + }, + { + "name": "Acquire different prizes", + "parent": { + "name": "Minigames - Arcade" + } + }, + { + "name": "Minigames - Mahjong" + }, + { + "name": "Win shogi games without a take back", + "parent": { + "name": "Minigames - Mahjong" + } + }, + { + "name": "Go out", + "parent": { + "name": "Minigames - Mahjong" + } + }, + { + "name": "Earn a total in Mahjong", + "parent": { + "name": "Minigames - Mahjong" + } + }, + { + "name": "Minigames - Fishing" + }, + { + "name": "Collect different freshwater fish", + "parent": { + "name": "Minigames - Fishing" + } + }, + { + "name": "Collect different saltwater fish", + "parent": { + "name": "Minigames - Fishing" + } + }, + { + "name": "Minigames - Gambling" + }, + { + "name": "Earn a total with gambling", + "parent": { + "name": "Minigames - Gambling" + } + }, + { + "name": "Win a total in Catfights", + "parent": { + "name": "Minigames - Gambling" + } + }, + { + "name": "Minigames - Casino" + }, + { + "name": "Earn a total with the casino", + "parent": { + "name": "Minigames - Casino" + } + }, + { + "name": "Minigames - Sports" + }, + { + "name": "Earn a total with sports", + "parent": { + "name": "Minigames - Sports" + } + }, + { + "name": "Perform various things", + "parent": { + "name": "Minigames - Sports" + } + }, + { + "name": "Minigames - Dancing" + }, + { + "name": "Dancing (Easy)", + "parent": { + "name": "Minigames - Dancing" + } + }, + { + "name": "Dancing (Normal)", + "parent": { + "name": "Minigames - Dancing" + } + }, + { + "name": "Dancing (Hard)", + "parent": { + "name": "Minigames - Dancing" + } + }, + { + "name": "Minigames - Karaoke" + }, + { + "name": "Get 90+ in a song", + "parent": { + "name": "Minigames - Karaoke" + } + }, + { + "name": "Minigames - Dates" + }, + { + "name": "Befriend girlfriend", + "parent": { + "name": "Minigames - Dates" + } + } + ] } \ No newline at end of file diff --git a/src/js/testmarkdown.ts b/src/js/testmarkdown.ts new file mode 100644 index 0000000..2e7eada --- /dev/null +++ b/src/js/testmarkdown.ts @@ -0,0 +1,247 @@ +const text = `--- +__Advertisement :)__ + +- __[pica](https://nodeca.github.io/pica/demo/)__ - high quality and fast image + resize in browser. +- __[babelfish](https://github.com/nodeca/babelfish/)__ - developer friendly + i18n with plurals support and easy syntax. + +You will like those projects! + +--- + +# h1 Heading 8-) +## h2 Heading +### h3 Heading +#### h4 Heading +##### h5 Heading +###### h6 Heading + + +## Horizontal Rules + +___ + +--- + +*** + + +## Typographic replacements + +Enable typographer option to see result. + +(c) (C) (r) (R) (tm) (TM) (p) (P) +- + +test.. test... test..... test?..... test!.... + +!!!!!! ???? ,, -- --- + +"Smartypants, double quotes" and 'single quotes' + + +## Emphasis + +**This is bold text** + +__This is bold text__ + +*This is italic text* + +_This is italic text_ + +~~Strikethrough~~ + + +## Blockquotes + + +> Blockquotes can also be nested... +>> ...by using additional greater-than signs right next to each other... +> > > ...or with spaces between arrows. + + +## Lists + +Unordered + ++ Create a list by starting a line with \`+\`, \`-\`, or \`*\` ++ Sub-lists are made by indenting 2 spaces: + - Marker character change forces new list start: + * Ac tristique libero volutpat at + + Facilisis in pretium nisl aliquet + - Nulla volutpat aliquam velit ++ Very easy! + +Ordered + +1. Lorem ipsum dolor sit amet +2. Consectetur adipiscing elit +3. Integer molestie lorem at massa + + +1. You can use sequential numbers... +1. ...or keep all the numbers as \`1.\` + +Start numbering with offset: + +57. foo +1. bar + + +## Code + +Inline \`code\` + +Indented code + + // Some comments + line 1 of code + line 2 of code + line 3 of code + + +Block code "fences" + +\`\`\` +Sample text here... +\`\`\` + +Syntax highlighting + +\`\`\` js +var foo = function (bar) { + return bar++; +}; + +console.log(foo(5)); +\`\`\` + +## Tables + +| Option | Description | +| ------ | ----------- | +| data | path to data files to supply the data that will be passed into templates. | +| engine | engine to be used for processing templates. Handlebars is the default. | +| ext | extension to be used for dest files. | + +Right aligned columns + +| Option | Description | +| ------:| -----------:| +| data | path to data files to supply the data that will be passed into templates. | +| engine | engine to be used for processing templates. Handlebars is the default. | +| ext | extension to be used for dest files. | + + +## Links + +[link text](http://dev.nodeca.com) + +[link with title](http://nodeca.github.io/pica/demo/ "title text!") + +Autoconverted link https://github.com/nodeca/pica (enable linkify to see) + + +## Images + +![Minion](https://octodex.github.com/images/minion.png) +![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat") + +Like links, Images also have a footnote style syntax + +![Alt text][id] + +With a reference later in the document defining the URL location: + +[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat" + + +## Plugins + +The killer feature of \`markdown-it\` is very effective support of +[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin). + + +### [Emojies](https://github.com/markdown-it/markdown-it-emoji) + +> Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum: +> +> Shortcuts (emoticons): :-) :-( 8-) ;) + +see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji. + + +### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup) + +- 19^th^ +- H~2~O + + +### [\](https://github.com/markdown-it/markdown-it-ins) + +++Inserted text++ + + +### [\](https://github.com/markdown-it/markdown-it-mark) + +==Marked text== + + +### [Footnotes](https://github.com/markdown-it/markdown-it-footnote) + +Footnote 1 link[^first]. + +Footnote 2 link[^second]. + +Inline footnote^[Text of inline footnote] definition. + +Duplicated footnote reference[^second]. + +[^first]: Footnote **can have markup** + + and multiple paragraphs. + +[^second]: Footnote text. + + +### [Definition lists](https://github.com/markdown-it/markdown-it-deflist) + +Term 1 + +: Definition 1 +with lazy continuation. + +Term 2 with *inline markup* + +: Definition 2 + + { some code, part of Definition 2 } + + Third paragraph of definition 2. + +_Compact style:_ + +Term 1 + ~ Definition 1 + +Term 2 + ~ Definition 2a + ~ Definition 2b + + +### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr) + +This is HTML abbreviation example. + +It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on. + +*[HTML]: Hyper Text Markup Language + +### [Custom containers](https://github.com/markdown-it/markdown-it-container) + +::: warning +*here be dragons* +:::`; + +export default text; diff --git a/tsconfig.app.json b/tsconfig.app.json index 1280238..e00e234 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -6,7 +6,8 @@ "components.d.ts", "src/**/*", "src/**/*.vue", - "src/**/*.json" + "src/**/*.json", + "src/**/*.md" ], "exclude": [ "src/**/__tests__/*" diff --git a/vite.config.ts b/vite.config.ts index fd51841..8793b65 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -57,7 +57,8 @@ export default defineConfig({ 'toNative', 'Vue' - ] + ], + 'vue-markdown': [ 'VueMarkdown' ] } ], dirs: [ './src/components/**' ], dts: true,