diff --git a/generated/graphql.tsx b/generated/graphql.tsx index 8dc08d8cf..3feceda0f 100644 --- a/generated/graphql.tsx +++ b/generated/graphql.tsx @@ -1,7 +1,9 @@ -import { gql } from '@apollo/client'; -import * as Apollo from '@apollo/client'; +import { gql } from "@apollo/client"; +import * as Apollo from "@apollo/client"; export type Maybe = T | null; -export type Exact = { [K in keyof T]: T[K] }; +export type Exact = { + [K in keyof T]: T[K]; +}; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: string; @@ -12,75 +14,80 @@ export type Scalars = { }; export type Profile = { - __typename?: 'Profile'; - customUrlPath?: Maybe; - twitchName?: Maybe; - youtubeId?: Maybe; - country?: Maybe; - bio?: Maybe; - sensMotion?: Maybe; - sensStick?: Maybe; - weaponPool: Array; + __typename?: "Profile"; + customUrlPath?: Maybe; + twitchName?: Maybe; + youtubeId?: Maybe; + country?: Maybe; + bio?: Maybe; + sensMotion?: Maybe; + sensStick?: Maybe; + weaponPool: Array; }; export type Query = { - __typename?: 'Query'; + __typename?: "Query"; getUserByIdentifier?: Maybe; }; - export type QueryGetUserByIdentifierArgs = { - identifier: Scalars['String']; + identifier: Scalars["String"]; }; export type User = { - __typename?: 'User'; - discordId: Scalars['String']; - username: Scalars['String']; - discriminator: Scalars['String']; - discordAvatar?: Maybe; + __typename?: "User"; + discordId: Scalars["String"]; + username: Scalars["String"]; + discriminator: Scalars["String"]; + discordAvatar?: Maybe; profile?: Maybe; - fullUsername: Scalars['String']; - avatarUrl?: Maybe; - profilePath: Scalars['String']; + fullUsername: Scalars["String"]; + avatarUrl?: Maybe; + profilePath: Scalars["String"]; }; export type GetUserByIdentifierQueryVariables = Exact<{ - identifier: Scalars['String']; + identifier: Scalars["String"]; }>; - -export type GetUserByIdentifierQuery = ( - { __typename?: 'Query' } - & { getUserByIdentifier?: Maybe<( - { __typename?: 'User' } - & Pick - & { profile?: Maybe<( - { __typename?: 'Profile' } - & Pick - )> } - )> } -); - +export type GetUserByIdentifierQuery = { __typename?: "Query" } & { + getUserByIdentifier?: Maybe< + { __typename?: "User" } & Pick & { + profile?: Maybe< + { __typename?: "Profile" } & Pick< + Profile, + | "customUrlPath" + | "twitchName" + | "youtubeId" + | "country" + | "bio" + | "sensMotion" + | "sensStick" + | "weaponPool" + > + >; + } + >; +}; export const GetUserByIdentifierDocument = gql` - query GetUserByIdentifier($identifier: String!) { - getUserByIdentifier(identifier: $identifier) { - fullUsername - avatarUrl - profile { - customUrlPath - twitchName - youtubeId - country - bio - sensMotion - sensStick - weaponPool + query GetUserByIdentifier($identifier: String!) { + getUserByIdentifier(identifier: $identifier) { + fullUsername + avatarUrl + profile { + customUrlPath + twitchName + youtubeId + country + bio + sensMotion + sensStick + weaponPool + } } } -} - `; +`; /** * __useGetUserByIdentifierQuery__ @@ -98,12 +105,35 @@ export const GetUserByIdentifierDocument = gql` * }, * }); */ -export function useGetUserByIdentifierQuery(baseOptions?: Apollo.QueryHookOptions) { - return Apollo.useQuery(GetUserByIdentifierDocument, baseOptions); - } -export function useGetUserByIdentifierLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { - return Apollo.useLazyQuery(GetUserByIdentifierDocument, baseOptions); - } -export type GetUserByIdentifierQueryHookResult = ReturnType; -export type GetUserByIdentifierLazyQueryHookResult = ReturnType; -export type GetUserByIdentifierQueryResult = Apollo.QueryResult; \ No newline at end of file +export function useGetUserByIdentifierQuery( + baseOptions?: Apollo.QueryHookOptions< + GetUserByIdentifierQuery, + GetUserByIdentifierQueryVariables + > +) { + return Apollo.useQuery< + GetUserByIdentifierQuery, + GetUserByIdentifierQueryVariables + >(GetUserByIdentifierDocument, baseOptions); +} +export function useGetUserByIdentifierLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + GetUserByIdentifierQuery, + GetUserByIdentifierQueryVariables + > +) { + return Apollo.useLazyQuery< + GetUserByIdentifierQuery, + GetUserByIdentifierQueryVariables + >(GetUserByIdentifierDocument, baseOptions); +} +export type GetUserByIdentifierQueryHookResult = ReturnType< + typeof useGetUserByIdentifierQuery +>; +export type GetUserByIdentifierLazyQueryHookResult = ReturnType< + typeof useGetUserByIdentifierLazyQuery +>; +export type GetUserByIdentifierQueryResult = Apollo.QueryResult< + GetUserByIdentifierQuery, + GetUserByIdentifierQueryVariables +>; diff --git a/graphql/context.ts b/graphql/context.ts index 51f9b1761..ed06aa080 100644 --- a/graphql/context.ts +++ b/graphql/context.ts @@ -1,9 +1,9 @@ import { PrismaClient } from "@prisma/client"; -const prisma = new PrismaClient({log: ["query"]}); +const prisma = new PrismaClient({ log: ["query"] }); export interface Context { prisma: PrismaClient; } -export const createContext = (): Context => ({ prisma }) \ No newline at end of file +export const createContext = (): Context => ({ prisma }); diff --git a/graphql/schema/index.ts b/graphql/schema/index.ts index d56fc9ed0..0fb8655cc 100644 --- a/graphql/schema/index.ts +++ b/graphql/schema/index.ts @@ -3,7 +3,6 @@ import * as userTypes from "graphql/schema/user"; import { nexusSchemaPrisma } from "nexus-plugin-prisma/schema"; import path from "path"; - export const schema = makeSchema({ types: [userTypes], plugins: [nexusSchemaPrisma()], @@ -14,7 +13,7 @@ export const schema = makeSchema({ }, nonNullDefaults: { input: true, - output: true + output: true, }, typegenAutoConfig: { contextType: "Context.Context", @@ -29,4 +28,4 @@ export const schema = makeSchema({ }, ], }, -}); \ No newline at end of file +}); diff --git a/graphql/schema/user.ts b/graphql/schema/user.ts index cb454db32..33f38cd59 100644 --- a/graphql/schema/user.ts +++ b/graphql/schema/user.ts @@ -4,21 +4,23 @@ export const User = objectType({ name: "User", // FIXME: Remove properties that don't need to be exposed: username, avatar & discriminator definition(t) { - t.model.discordId() - t.model.username() - t.model.discriminator() - t.model.discordAvatar() + t.model.discordId(); + t.model.username(); + t.model.discriminator(); + t.model.discordAvatar(); // FIXME: this seems to generate extra query (on top of the one it's expected to generatei thi) - t.model.profile() + t.model.profile(); t.string("fullUsername", { - resolve: (root) => `${root.username}#${root.discriminator}`}) + resolve: (root) => `${root.username}#${root.discriminator}`, + }); t.string("avatarUrl", { - resolve: (root) => `https://cdn.discordapp.com/avatars/${root.discordId}/${root.discordAvatar}.jpg`, - nullable: true - }) + resolve: (root) => + `https://cdn.discordapp.com/avatars/${root.discordId}/${root.discordAvatar}.jpg`, + nullable: true, + }); t.string("profilePath", { - resolve: (root) => `/u/${root.discordId}` - }) + resolve: (root) => `/u/${root.discordId}`, + }); }, }); @@ -26,17 +28,17 @@ export const Profile = objectType({ name: "Profile", definition(t) { // FIXME: Add Twitter - t.model.customUrlPath() - t.model.twitchName() - t.model.youtubeId() - t.model.country() - t.model.bio() + t.model.customUrlPath(); + t.model.twitchName(); + t.model.youtubeId(); + t.model.country(); + t.model.bio(); // FIXME: Sens as float - t.model.sensMotion() - t.model.sensStick() - t.model.weaponPool() - } -}) + t.model.sensMotion(); + t.model.sensStick(); + t.model.weaponPool(); + }, +}); export const Query = queryType({ definition(t) { @@ -44,26 +46,26 @@ export const Query = queryType({ type: User, nullable: true, args: { - identifier: stringArg({required: true}) + identifier: stringArg({ required: true }), }, - resolve: (_root, {identifier}, ctx) => { - console.log({ctx}) + resolve: (_root, { identifier }, ctx) => { + console.log({ ctx }); return ctx.prisma.user.findFirst({ - where: { - // this is ok because the values are mutually exclusive: customUrlPath can't contain only numbers etc. - OR: [ - { - discordId: identifier - }, - { - profile: { - customUrlPath: identifier.toLowerCase() - } - }, - ] - }, - }) - } - }) - } -}) \ No newline at end of file + where: { + // this is ok because the values are mutually exclusive: customUrlPath can't contain only numbers etc. + OR: [ + { + discordId: identifier, + }, + { + profile: { + customUrlPath: identifier.toLowerCase(), + }, + }, + ], + }, + }); + }, + }); + }, +}); diff --git a/lib/apollo.ts b/lib/apollo.ts index afd6bb100..23c499e43 100644 --- a/lib/apollo.ts +++ b/lib/apollo.ts @@ -3,38 +3,38 @@ import { ApolloClient, InMemoryCache, - NormalizedCacheObject -} from '@apollo/client' -import { IncomingMessage, ServerResponse } from 'http' -import { useMemo } from 'react' + NormalizedCacheObject, +} from "@apollo/client"; +import { IncomingMessage, ServerResponse } from "http"; +import { useMemo } from "react"; -let apolloClient: ApolloClient | undefined +let apolloClient: ApolloClient | undefined; export type ResolverContext = { - req?: IncomingMessage - res?: ServerResponse -} + req?: IncomingMessage; + res?: ServerResponse; +}; function createIsomorphLink(context: ResolverContext = {}) { - if (typeof window === 'undefined') { - const { SchemaLink } = require('@apollo/client/link/schema') - const { schema } = require('graphql/schema') - return new SchemaLink({ schema, context }) + if (typeof window === "undefined") { + const { SchemaLink } = require("@apollo/client/link/schema"); + const { schema } = require("graphql/schema"); + return new SchemaLink({ schema, context }); } else { - const { HttpLink } = require('@apollo/client') + const { HttpLink } = require("@apollo/client"); return new HttpLink({ - uri: '/api/graphql', - credentials: 'same-origin', - }) + uri: "/api/graphql", + credentials: "same-origin", + }); } } function createApolloClient(context?: ResolverContext) { return new ApolloClient({ - ssrMode: typeof window === 'undefined', + ssrMode: typeof window === "undefined", link: createIsomorphLink(context), cache: new InMemoryCache(), - }) + }); } export function initializeApollo( @@ -43,22 +43,22 @@ export function initializeApollo( // a custom context which will be used by `SchemaLink` to server render pages context?: ResolverContext ) { - const _apolloClient = apolloClient ?? createApolloClient(context) + const _apolloClient = apolloClient ?? createApolloClient(context); // If your page has Next.js data fetching methods that use Apollo Client, the initial state // get hydrated here if (initialState) { - _apolloClient.cache.restore(initialState) + _apolloClient.cache.restore(initialState); } // For SSG and SSR always create a new Apollo Client - if (typeof window === 'undefined') return _apolloClient + if (typeof window === "undefined") return _apolloClient; // Create the Apollo Client once in the client - if (!apolloClient) apolloClient = _apolloClient + if (!apolloClient) apolloClient = _apolloClient; - return _apolloClient + return _apolloClient; } export function useApollo(initialState: any) { - const store = useMemo(() => initializeApollo(initialState), [initialState]) - return store -} \ No newline at end of file + const store = useMemo(() => initializeApollo(initialState), [initialState]); + return store; +} diff --git a/lib/useMockT.ts b/lib/useMockT.ts index b879bd6fd..1fa41f0bb 100644 --- a/lib/useMockT.ts +++ b/lib/useMockT.ts @@ -1,35 +1,35 @@ const translations = { - "game": { - "Baller": "Baller", - "SquidForce": "SquidForce", - "Zink": "Zink", + game: { + Baller: "Baller", + SquidForce: "SquidForce", + Zink: "Zink", "Krak-On": "Krak-On", - "Rockenberg": "Rockenberg", - "Zekko": "Zekko", - "Forge": "Forge", - "Firefin": "Firefin", - "Skalop": "Skalop", + Rockenberg: "Rockenberg", + Zekko: "Zekko", + Forge: "Forge", + Firefin: "Firefin", + Skalop: "Skalop", "Splash Mob": "Splash Mob", - "Inkline": "Inkline", - "Tentatek": "Tentatek", - "Takoroka": "Takoroka", - "Annaki": "Annaki", - "Enperry": "Enperry", + Inkline: "Inkline", + Tentatek: "Tentatek", + Takoroka: "Takoroka", + Annaki: "Annaki", + Enperry: "Enperry", "Toni Kensa": "Toni Kensa", - "Grizzco": "Grizzco", - "Cuttlegear": "Cuttlegear", - "amiibo": "amiibo", + Grizzco: "Grizzco", + Cuttlegear: "Cuttlegear", + amiibo: "amiibo", "Princess Cannon": "Princess Cannon", "Fire Rate": "Fire Rate", "Bomb Defense Up DX": "Bomb Defense Up DX", "Sub Power Up": "Sub Power Up", "Curling Bomb": "Curling Bomb", - "Autobomb": "Autobomb", + Autobomb: "Autobomb", "Splat Bomb": "Splat Bomb", "Fizzy Bomb": "Fizzy Bomb", "Burst Bomb": "Burst Bomb", "Suction Bomb": "Suction Bomb", - "Torpedo": "Torpedo", + Torpedo: "Torpedo", "Charge Speed": "Charge Speed", "Grizzco Charger": "Grizzco Charger", "Goo Tuber": "Goo Tuber", @@ -42,7 +42,7 @@ const translations = { "E-liter 4K": "E-liter 4K", "Custom E-liter 4K": "Custom E-liter 4K", "Hero Charger": "Hero Charger", - "Splatterscope": "Splatterscope", + Splatterscope: "Splatterscope", "Firefin Splatterscope": "Firefin Splatterscope", "Kensa Splatterscope": "Kensa Splatterscope", "Splat Charger": "Splat Charger", @@ -309,13 +309,13 @@ const translations = { "Fishing Vest": "Fishing Vest", "Front Zip Vest": "Front Zip Vest", "Silver Tentatek Vest": "Silver Tentatek Vest", - "Comeback": "Comeback", - "Haunt": "Haunt", - "Durability": "Durability", + Comeback: "Comeback", + Haunt: "Haunt", + Durability: "Durability", "Last-Ditch Effort": "Last-Ditch Effort", "Ability Doubler": "Ability Doubler", "Respawn Punisher": "Respawn Punisher", - "Impact": "Impact", + Impact: "Impact", "Squid Beakon": "Squid Beakon", "Port Mackerel": "Port Mackerel", "Camp Triggerfish": "Camp Triggerfish", @@ -324,7 +324,7 @@ const translations = { "Windmill House on the Pearlie": "Windmill House on the Pearlie", "Wayslide Cool": "Wayslide Cool", "The Secret of S.P.L.A.T.": "The Secret of S.P.L.A.T.", - "Goosponge": "Goosponge", + Goosponge: "Goosponge", "Cannon Fire Pearl": "Cannon Fire Pearl", "Zone of Glass": "Zone of Glass", "Fancy Spew": "Fancy Spew", @@ -348,7 +348,7 @@ const translations = { "Shifty Station": "Shifty Station", "The Reef": "The Reef", "Snapper Canal": "Snapper Canal", - "MakoMart": "MakoMart", + MakoMart: "MakoMart", "Kelp Dome": "Kelp Dome", "Skipper Pavilion": "Skipper Pavilion", "Sturgeon Shipyard": "Sturgeon Shipyard", @@ -427,7 +427,7 @@ const translations = { "Fake Contacts": "Fake Contacts", "18K Aviators": "18K Aviators", "Full Moon Glasses": "Full Moon Glasses", - "Octoglasses": "Octoglasses", + Octoglasses: "Octoglasses", "Half-Rim Glasses": "Half-Rim Glasses", "Double Egg Shades": "Double Egg Shades", "Zekko Cap": "Zekko Cap", @@ -536,42 +536,48 @@ const translations = { "Face Visor": "Face Visor", "Run Speed Up": "Run Speed Up", "Ink Recovery Up": "Ink Recovery Up", - "Inkjet": "Inkjet", + Inkjet: "Inkjet", "Quick Super Jump": "Quick Super Jump", "Curling-Bomb Launcher": "Curling-Bomb Launcher", "Burst-Bomb Launcher": "Burst-Bomb Launcher", "Autobomb Launcher": "Autobomb Launcher", "Splat-Bomb Launcher": "Splat-Bomb Launcher", "Suction-Bomb Launcher": "Suction-Bomb Launcher", - "Slightly increases\nmovement speed\nwhile inking.": "Slightly increases\nmovement speed\nwhile inking.", - "Increases Brella\ncanopy durability.": "Increases Brella\ncanopy durability.", - "Speeds up Brella\ncanopy regeneration.": "Speeds up Brella\ncanopy regeneration.", - "Increases high-damage\nradius of explosions.": "Increases high-damage\nradius of explosions.", + "Slightly increases\nmovement speed\nwhile inking.": + "Slightly increases\nmovement speed\nwhile inking.", + "Increases Brella\ncanopy durability.": + "Increases Brella\ncanopy durability.", + "Speeds up Brella\ncanopy regeneration.": + "Speeds up Brella\ncanopy regeneration.", + "Increases high-damage\nradius of explosions.": + "Increases high-damage\nradius of explosions.", "Increases maximum\ndamage range.": "Increases maximum\ndamage range.", "Increases damage.": "Increases damage.", "Increases ink coverage.": "Increases ink coverage.", "Slightly increases range.": "Slightly increases range.", - "Increases shot accuracy\nwhen firing while jumping.": "Increases shot accuracy\nwhen firing while jumping.", - "Increases duration of\nfiring in a burst.": "Increases duration of\nfiring in a burst.", + "Increases shot accuracy\nwhen firing while jumping.": + "Increases shot accuracy\nwhen firing while jumping.", + "Increases duration of\nfiring in a burst.": + "Increases duration of\nfiring in a burst.", "Ink Saver (Main)": "Ink Saver (Main)", "Main Power Up": "Main Power Up", - "Tenacity": "Tenacity", - "Cannon": "Cannon", - "Mobility": "Mobility", + Tenacity: "Tenacity", + Cannon: "Cannon", + Mobility: "Mobility", "Object Shredder": "Object Shredder", "Ink Resistance Up": "Ink Resistance Up", "Ink Speed": "Ink Speed", "Point Sensor": "Point Sensor", "Toxic Mist": "Toxic Mist", - "Damage": "Damage", + Damage: "Damage", "Ink Storm": "Ink Storm", - "Range": "Range", + Range: "Range", "Special Saver": "Special Saver", "Quick Respawn": "Quick Respawn", - "Inkbrush": "Inkbrush", + Inkbrush: "Inkbrush", "Inkbrush Nouveau": "Inkbrush Nouveau", "Permanent Inkbrush": "Permanent Inkbrush", - "Octobrush": "Octobrush", + Octobrush: "Octobrush", "Octobrush Nouveau": "Octobrush Nouveau", "Kensa Octobrush": "Kensa Octobrush", "Herobrush Replica": "Herobrush Replica", @@ -582,41 +588,64 @@ const translations = { "Kensa Dynamo Roller": "Kensa Dynamo Roller", "Flingza Roller": "Flingza Roller", "Foil Flingza Roller": "Foil Flingza Roller", - "Herobrush": "Herobrush", + Herobrush: "Herobrush", "Hero Roller": "Hero Roller", "Splat Roller": "Splat Roller", "Krak-On Splat Roller": "Krak-On Splat Roller", "Kensa Splat Roller": "Kensa Splat Roller", "Hero Roller Replica": "Hero Roller Replica", - "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.": "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.", + "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.": + "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.", "Upgrades your\nsub weapon.": "Upgrades your\nsub weapon.", - "Boosts some of your\nabilities for a short\ntime after respawning.": "Boosts some of your\nabilities for a short\ntime after respawning.", - "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.": "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.", - "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.": "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.", - "Doubles the effect of\nother gear abilities\nattached to this gear.": "Doubles the effect of\nother gear abilities\nattached to this gear.", - "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.": "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.", - "Increases movement\nspeed in Inkling form.": "Increases movement\nspeed in Inkling form.", + "Boosts some of your\nabilities for a short\ntime after respawning.": + "Boosts some of your\nabilities for a short\ntime after respawning.", + "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.": + "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.", + "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.": + "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.", + "Doubles the effect of\nother gear abilities\nattached to this gear.": + "Doubles the effect of\nother gear abilities\nattached to this gear.", + "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.": + "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.", + "Increases movement\nspeed in Inkling form.": + "Increases movement\nspeed in Inkling form.", "Increases ink-tank refill\nrate.": "Increases ink-tank refill\nrate.", "Increases Super Jump\nspeed.": "Increases Super Jump\nspeed.", - "Decreases amount\nof ink consumed by\nyour main weapon.": "Decreases amount\nof ink consumed by\nyour main weapon.", - "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000": "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000", + "Decreases amount\nof ink consumed by\nyour main weapon.": + "Decreases amount\nof ink consumed by\nyour main weapon.", + "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000": + "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000", "Upgrades your\nmain weapon.": "Upgrades your\nmain weapon.", - "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.": "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.", - "Increases damage dealt\nto all non-player targets.": "Increases damage dealt\nto all non-player targets.", - "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.": "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.", - "Reduces special-gauge\ndecrease after getting\nsplatted.": "Reduces special-gauge\ndecrease after getting\nsplatted.", - "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.": "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.", - "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.": "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.", - "Increases special-\ngauge fill rate.": "Increases special-\ngauge fill rate.", + "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.": + "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.", + "Increases damage dealt\nto all non-player targets.": + "Increases damage dealt\nto all non-player targets.", + "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.": + "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.", + "Reduces special-gauge\ndecrease after getting\nsplatted.": + "Reduces special-gauge\ndecrease after getting\nsplatted.", + "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.": + "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.", + "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.": + "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.", + "Increases special-\ngauge fill rate.": + "Increases special-\ngauge fill rate.", "Upgrades your\nspecial weapon.": "Upgrades your\nspecial weapon.", - "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.": "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.", - "Increases movement\nspeed in squid form.": "Increases movement\nspeed in squid form.", - "Boosts your speed while\nmoving for the first 30\nseconds of battle.": "Boosts your speed while\nmoving for the first 30\nseconds of battle.", - "Decreases amount\nof ink consumed by\nyour sub weapon.": "Decreases amount\nof ink consumed by\nyour sub weapon.", - "Hides your Super Jump\nlanding point from\ndistant players.": "Hides your Super Jump\nlanding point from\ndistant players.", - "Allows you to track\ndistant players hit with\nshots from your main\nweapon.": "Allows you to track\ndistant players hit with\nshots from your main\nweapon.", - "Unlock this ability by\nbattling while wearing\nthis gear.": "Unlock this ability by\nbattling while wearing\nthis gear.", - "Rainmaker": "Rainmaker", + "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.": + "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.", + "Increases movement\nspeed in squid form.": + "Increases movement\nspeed in squid form.", + "Boosts your speed while\nmoving for the first 30\nseconds of battle.": + "Boosts your speed while\nmoving for the first 30\nseconds of battle.", + "Decreases amount\nof ink consumed by\nyour sub weapon.": + "Decreases amount\nof ink consumed by\nyour sub weapon.", + "Hides your Super Jump\nlanding point from\ndistant players.": + "Hides your Super Jump\nlanding point from\ndistant players.", + "Allows you to track\ndistant players hit with\nshots from your main\nweapon.": + "Allows you to track\ndistant players hit with\nshots from your main\nweapon.", + "Unlock this ability by\nbattling while wearing\nthis gear.": + "Unlock this ability by\nbattling while wearing\nthis gear.", + Rainmaker: "Rainmaker", "Splash Wall": "Splash Wall", "Grizzco Blaster": "Grizzco Blaster", "Rapid Blaster Pro": "Rapid Blaster Pro", @@ -629,7 +658,7 @@ const translations = { "Range Blaster": "Range Blaster", "Custom Range Blaster": "Custom Range Blaster", "Grim Range Blaster": "Grim Range Blaster", - "Blaster": "Blaster", + Blaster: "Blaster", "Custom Blaster": "Custom Blaster", "Hero Blaster Replica": "Hero Blaster Replica", "Hero Blaster": "Hero Blaster", @@ -645,7 +674,7 @@ const translations = { "Splattershot Jr.": "Splattershot Jr.", "Custom Splattershot Jr.": "Custom Splattershot Jr.", "Kensa Splattershot Jr.": "Kensa Splattershot Jr.", - "Squeezer": "Squeezer", + Squeezer: "Squeezer", "Foil Squeezer": "Foil Squeezer", ".52 Gal": ".52 Gal", ".52 Gal Deco": ".52 Gal Deco", @@ -655,7 +684,7 @@ const translations = { "Jet Squelcher": "Jet Squelcher", "Custom Jet Squelcher": "Custom Jet Squelcher", "Hero Shot": "Hero Shot", - "Splattershot": "Splattershot", + Splattershot: "Splattershot", "Tentatek Splattershot": "Tentatek Splattershot", "Kensa Splattershot": "Kensa Splattershot", "Hero Shot Replica": "Hero Shot Replica", @@ -759,7 +788,7 @@ const translations = { "Red Hi-Tops": "Red Hi-Tops", "Gold Hi-Horses": "Gold Hi-Horses", "Shark Moccasins": "Shark Moccasins", - "Mawcasins": "Mawcasins", + Mawcasins: "Mawcasins", "Chocolate Dakroniks": "Chocolate Dakroniks", "Mint Dakroniks": "Mint Dakroniks", "Black Dakroniks": "Black Dakroniks", @@ -840,7 +869,7 @@ const translations = { "Trail Boots": "Trail Boots", "Custom Trail Boots": "Custom Trail Boots", "Pro Trail Boots": "Pro Trail Boots", - "Bloblobber": "Bloblobber", + Bloblobber: "Bloblobber", "Bloblobber Deco": "Bloblobber Deco", "Grizzco Slosher": "Grizzco Slosher", "Tri-Slosher": "Tri-Slosher", @@ -849,11 +878,11 @@ const translations = { "Sloshing Machine Neo": "Sloshing Machine Neo", "Kensa Sloshing Machine": "Kensa Sloshing Machine", "Hero Slosher": "Hero Slosher", - "Slosher": "Slosher", + Slosher: "Slosher", "Slosher Deco": "Slosher Deco", "Soda Slosher": "Soda Slosher", "Hero Slosher Replica": "Hero Slosher Replica", - "Explosher": "Explosher", + Explosher: "Explosher", "Custom Explosher": "Custom Explosher", "Drop Roller": "Drop Roller", "Special Charge Up": "Special Charge Up", @@ -872,7 +901,7 @@ const translations = { "Heavy Splatling Deco": "Heavy Splatling Deco", "Heavy Splatling Remix": "Heavy Splatling Remix", "Hero Splatling Replica": "Hero Splatling Replica", - "Sprinkler": "Sprinkler", + Sprinkler: "Sprinkler", "Ninja Squid": "Ninja Squid", "Swim Speed Up": "Swim Speed Up", "Opening Gambit": "Opening Gambit", @@ -881,7 +910,7 @@ const translations = { "Booyah Bomb": "Booyah Bomb", "Bubble Blower": "Bubble Blower", "Stealth Jump": "Stealth Jump", - "Splashdown": "Splashdown", + Splashdown: "Splashdown", "Tenta Missiles": "Tenta Missiles", "Ultra Stamp": "Ultra Stamp", "Thermal Ink": "Thermal Ink", @@ -913,7 +942,7 @@ const translations = { "Tenta Sorella Brella": "Tenta Sorella Brella", "Tenta Camo Brella": "Tenta Camo Brella", "Sting Ray": "Sting Ray", - "Handling": "Handling", + Handling: "Handling", "Turf War (Splatfest)": "Turf War (Splatfest)", "Turf War": "Turf War", "Turf\nWar": "Turf\nWar", @@ -922,389 +951,404 @@ const translations = { "Clam Blitz": "Clam Blitz", "Clam\nBlitz": "Clam\nBlitz", "Tower Control": "Tower Control", - "Tower\nControl": "Tower\nControl" + "Tower\nControl": "Tower\nControl", }, - "countries": { - "AF": "Afghanistan", - "AX": "\u00c5land Islands", - "AL": "Albania", - "DZ": "Algeria", - "AS": "American Samoa", - "AD": "Andorra", - "AO": "Angola", - "AI": "Anguilla", - "AQ": "Antarctica", - "AG": "Antigua & Barbuda", - "AR": "Argentina", - "AM": "Armenia", - "AW": "Aruba", - "AU": "Australia", - "AT": "Austria", - "AZ": "Azerbaijan", - "BS": "Bahamas", - "BH": "Bahrain", - "BD": "Bangladesh", - "BB": "Barbados", - "BY": "Belarus", - "BE": "Belgium", - "BZ": "Belize", - "BJ": "Benin", - "BM": "Bermuda", - "BT": "Bhutan", - "BO": "Bolivia", - "BA": "Bosnia & Herzegovina", - "BW": "Botswana", - "BV": "Bouvet Island", - "BR": "Brazil", - "IO": "British Indian Ocean Territory", - "VG": "British Virgin Islands", - "BN": "Brunei", - "BG": "Bulgaria", - "BF": "Burkina Faso", - "BI": "Burundi", - "KH": "Cambodia", - "CM": "Cameroon", - "CA": "Canada", - "CV": "Cape Verde", - "BQ": "Caribbean Netherlands", - "KY": "Cayman Islands", - "CF": "Central African Republic", - "TD": "Chad", - "CL": "Chile", - "CN": "China", - "CX": "Christmas Island", - "CC": "Cocos (Keeling) Islands", - "CO": "Colombia", - "KM": "Comoros", - "CG": "Congo - Brazzaville", - "CD": "Congo - Kinshasa", - "CK": "Cook Islands", - "CR": "Costa Rica", - "CI": "C\u00f4te d\u2019Ivoire", - "HR": "Croatia", - "CU": "Cuba", - "CW": "Cura\u00e7ao", - "CY": "Cyprus", - "CZ": "Czechia", - "DK": "Denmark", - "DJ": "Djibouti", - "DM": "Dominica", - "DO": "Dominican Republic", - "EC": "Ecuador", - "EG": "Egypt", - "SV": "El Salvador", - "GQ": "Equatorial Guinea", - "ER": "Eritrea", - "EE": "Estonia", - "SZ": "Eswatini", - "ET": "Ethiopia", - "FK": "Falkland Islands", - "FO": "Faroe Islands", - "FJ": "Fiji", - "FI": "Finland", - "FR": "France", - "GF": "French Guiana", - "PF": "French Polynesia", - "TF": "French Southern Territories", - "GA": "Gabon", - "GM": "Gambia", - "GE": "Georgia", - "DE": "Germany", - "GH": "Ghana", - "GI": "Gibraltar", - "GR": "Greece", - "GL": "Greenland", - "GD": "Grenada", - "GP": "Guadeloupe", - "GU": "Guam", - "GT": "Guatemala", - "GG": "Guernsey", - "GN": "Guinea", - "GW": "Guinea-Bissau", - "GY": "Guyana", - "HT": "Haiti", - "HM": "Heard & McDonald Islands", - "HN": "Honduras", - "HK": "Hong Kong SAR China", - "HU": "Hungary", - "IS": "Iceland", - "IN": "India", - "ID": "Indonesia", - "IR": "Iran", - "IQ": "Iraq", - "IE": "Ireland", - "IM": "Isle of Man", - "IL": "Israel", - "IT": "Italy", - "JM": "Jamaica", - "JP": "Japan", - "JE": "Jersey", - "JO": "Jordan", - "KZ": "Kazakhstan", - "KE": "Kenya", - "KI": "Kiribati", - "KW": "Kuwait", - "KG": "Kyrgyzstan", - "LA": "Laos", - "LV": "Latvia", - "LB": "Lebanon", - "LS": "Lesotho", - "LR": "Liberia", - "LY": "Libya", - "LI": "Liechtenstein", - "LT": "Lithuania", - "LU": "Luxembourg", - "MO": "Macao SAR China", - "MG": "Madagascar", - "MW": "Malawi", - "MY": "Malaysia", - "MV": "Maldives", - "ML": "Mali", - "MT": "Malta", - "MH": "Marshall Islands", - "MQ": "Martinique", - "MR": "Mauritania", - "MU": "Mauritius", - "YT": "Mayotte", - "MX": "Mexico", - "FM": "Micronesia", - "MD": "Moldova", - "MC": "Monaco", - "MN": "Mongolia", - "ME": "Montenegro", - "MS": "Montserrat", - "MA": "Morocco", - "MZ": "Mozambique", - "MM": "Myanmar (Burma)", - "NA": "Namibia", - "NR": "Nauru", - "NP": "Nepal", - "NL": "Netherlands", - "NC": "New Caledonia", - "NZ": "New Zealand", - "NI": "Nicaragua", - "NE": "Niger", - "NG": "Nigeria", - "NU": "Niue", - "NF": "Norfolk Island", - "KP": "North Korea", - "MK": "North Macedonia", - "MP": "Northern Mariana Islands", - "NO": "Norway", - "OM": "Oman", - "PK": "Pakistan", - "PW": "Palau", - "PS": "Palestinian Territories", - "PA": "Panama", - "PG": "Papua New Guinea", - "PY": "Paraguay", - "PE": "Peru", - "PH": "Philippines", - "PN": "Pitcairn Islands", - "PL": "Poland", - "PT": "Portugal", - "PR": "Puerto Rico", - "QA": "Qatar", - "RE": "R\u00e9union", - "RO": "Romania", - "RU": "Russia", - "RW": "Rwanda", - "WS": "Samoa", - "SM": "San Marino", - "ST": "S\u00e3o Tom\u00e9 & Pr\u00edncipe", - "SA": "Saudi Arabia", - "SN": "Senegal", - "RS": "Serbia", - "SC": "Seychelles", - "SL": "Sierra Leone", - "SG": "Singapore", - "SX": "Sint Maarten", - "SK": "Slovakia", - "SI": "Slovenia", - "SB": "Solomon Islands", - "SO": "Somalia", - "ZA": "South Africa", - "GS": "South Georgia & South Sandwich Islands", - "KR": "South Korea", - "SS": "South Sudan", - "ES": "Spain", - "LK": "Sri Lanka", - "BL": "St. Barth\u00e9lemy", - "SH": "St. Helena", - "KN": "St. Kitts & Nevis", - "LC": "St. Lucia", - "MF": "St. Martin", - "PM": "St. Pierre & Miquelon", - "VC": "St. Vincent & Grenadines", - "SD": "Sudan", - "SR": "Suriname", - "SJ": "Svalbard & Jan Mayen", - "SE": "Sweden", - "CH": "Switzerland", - "SY": "Syria", - "TW": "Taiwan", - "TJ": "Tajikistan", - "TZ": "Tanzania", - "TH": "Thailand", - "TL": "Timor-Leste", - "TG": "Togo", - "TK": "Tokelau", - "TO": "Tonga", - "TT": "Trinidad & Tobago", - "TN": "Tunisia", - "TR": "Turkey", - "TM": "Turkmenistan", - "TC": "Turks & Caicos Islands", - "TV": "Tuvalu", - "UM": "U.S. Outlying Islands", - "VI": "U.S. Virgin Islands", - "UG": "Uganda", - "UA": "Ukraine", - "AE": "United Arab Emirates", - "GB": "United Kingdom", - "US": "United States", - "UY": "Uruguay", - "UZ": "Uzbekistan", - "VU": "Vanuatu", - "VA": "Vatican City", - "VE": "Venezuela", - "VN": "Vietnam", - "WF": "Wallis & Futuna", - "EH": "Western Sahara", - "YE": "Yemen", - "ZM": "Zambia", - "ZW": "Zimbabwe" + countries: { + AF: "Afghanistan", + AX: "\u00c5land Islands", + AL: "Albania", + DZ: "Algeria", + AS: "American Samoa", + AD: "Andorra", + AO: "Angola", + AI: "Anguilla", + AQ: "Antarctica", + AG: "Antigua & Barbuda", + AR: "Argentina", + AM: "Armenia", + AW: "Aruba", + AU: "Australia", + AT: "Austria", + AZ: "Azerbaijan", + BS: "Bahamas", + BH: "Bahrain", + BD: "Bangladesh", + BB: "Barbados", + BY: "Belarus", + BE: "Belgium", + BZ: "Belize", + BJ: "Benin", + BM: "Bermuda", + BT: "Bhutan", + BO: "Bolivia", + BA: "Bosnia & Herzegovina", + BW: "Botswana", + BV: "Bouvet Island", + BR: "Brazil", + IO: "British Indian Ocean Territory", + VG: "British Virgin Islands", + BN: "Brunei", + BG: "Bulgaria", + BF: "Burkina Faso", + BI: "Burundi", + KH: "Cambodia", + CM: "Cameroon", + CA: "Canada", + CV: "Cape Verde", + BQ: "Caribbean Netherlands", + KY: "Cayman Islands", + CF: "Central African Republic", + TD: "Chad", + CL: "Chile", + CN: "China", + CX: "Christmas Island", + CC: "Cocos (Keeling) Islands", + CO: "Colombia", + KM: "Comoros", + CG: "Congo - Brazzaville", + CD: "Congo - Kinshasa", + CK: "Cook Islands", + CR: "Costa Rica", + CI: "C\u00f4te d\u2019Ivoire", + HR: "Croatia", + CU: "Cuba", + CW: "Cura\u00e7ao", + CY: "Cyprus", + CZ: "Czechia", + DK: "Denmark", + DJ: "Djibouti", + DM: "Dominica", + DO: "Dominican Republic", + EC: "Ecuador", + EG: "Egypt", + SV: "El Salvador", + GQ: "Equatorial Guinea", + ER: "Eritrea", + EE: "Estonia", + SZ: "Eswatini", + ET: "Ethiopia", + FK: "Falkland Islands", + FO: "Faroe Islands", + FJ: "Fiji", + FI: "Finland", + FR: "France", + GF: "French Guiana", + PF: "French Polynesia", + TF: "French Southern Territories", + GA: "Gabon", + GM: "Gambia", + GE: "Georgia", + DE: "Germany", + GH: "Ghana", + GI: "Gibraltar", + GR: "Greece", + GL: "Greenland", + GD: "Grenada", + GP: "Guadeloupe", + GU: "Guam", + GT: "Guatemala", + GG: "Guernsey", + GN: "Guinea", + GW: "Guinea-Bissau", + GY: "Guyana", + HT: "Haiti", + HM: "Heard & McDonald Islands", + HN: "Honduras", + HK: "Hong Kong SAR China", + HU: "Hungary", + IS: "Iceland", + IN: "India", + ID: "Indonesia", + IR: "Iran", + IQ: "Iraq", + IE: "Ireland", + IM: "Isle of Man", + IL: "Israel", + IT: "Italy", + JM: "Jamaica", + JP: "Japan", + JE: "Jersey", + JO: "Jordan", + KZ: "Kazakhstan", + KE: "Kenya", + KI: "Kiribati", + KW: "Kuwait", + KG: "Kyrgyzstan", + LA: "Laos", + LV: "Latvia", + LB: "Lebanon", + LS: "Lesotho", + LR: "Liberia", + LY: "Libya", + LI: "Liechtenstein", + LT: "Lithuania", + LU: "Luxembourg", + MO: "Macao SAR China", + MG: "Madagascar", + MW: "Malawi", + MY: "Malaysia", + MV: "Maldives", + ML: "Mali", + MT: "Malta", + MH: "Marshall Islands", + MQ: "Martinique", + MR: "Mauritania", + MU: "Mauritius", + YT: "Mayotte", + MX: "Mexico", + FM: "Micronesia", + MD: "Moldova", + MC: "Monaco", + MN: "Mongolia", + ME: "Montenegro", + MS: "Montserrat", + MA: "Morocco", + MZ: "Mozambique", + MM: "Myanmar (Burma)", + NA: "Namibia", + NR: "Nauru", + NP: "Nepal", + NL: "Netherlands", + NC: "New Caledonia", + NZ: "New Zealand", + NI: "Nicaragua", + NE: "Niger", + NG: "Nigeria", + NU: "Niue", + NF: "Norfolk Island", + KP: "North Korea", + MK: "North Macedonia", + MP: "Northern Mariana Islands", + NO: "Norway", + OM: "Oman", + PK: "Pakistan", + PW: "Palau", + PS: "Palestinian Territories", + PA: "Panama", + PG: "Papua New Guinea", + PY: "Paraguay", + PE: "Peru", + PH: "Philippines", + PN: "Pitcairn Islands", + PL: "Poland", + PT: "Portugal", + PR: "Puerto Rico", + QA: "Qatar", + RE: "R\u00e9union", + RO: "Romania", + RU: "Russia", + RW: "Rwanda", + WS: "Samoa", + SM: "San Marino", + ST: "S\u00e3o Tom\u00e9 & Pr\u00edncipe", + SA: "Saudi Arabia", + SN: "Senegal", + RS: "Serbia", + SC: "Seychelles", + SL: "Sierra Leone", + SG: "Singapore", + SX: "Sint Maarten", + SK: "Slovakia", + SI: "Slovenia", + SB: "Solomon Islands", + SO: "Somalia", + ZA: "South Africa", + GS: "South Georgia & South Sandwich Islands", + KR: "South Korea", + SS: "South Sudan", + ES: "Spain", + LK: "Sri Lanka", + BL: "St. Barth\u00e9lemy", + SH: "St. Helena", + KN: "St. Kitts & Nevis", + LC: "St. Lucia", + MF: "St. Martin", + PM: "St. Pierre & Miquelon", + VC: "St. Vincent & Grenadines", + SD: "Sudan", + SR: "Suriname", + SJ: "Svalbard & Jan Mayen", + SE: "Sweden", + CH: "Switzerland", + SY: "Syria", + TW: "Taiwan", + TJ: "Tajikistan", + TZ: "Tanzania", + TH: "Thailand", + TL: "Timor-Leste", + TG: "Togo", + TK: "Tokelau", + TO: "Tonga", + TT: "Trinidad & Tobago", + TN: "Tunisia", + TR: "Turkey", + TM: "Turkmenistan", + TC: "Turks & Caicos Islands", + TV: "Tuvalu", + UM: "U.S. Outlying Islands", + VI: "U.S. Virgin Islands", + UG: "Uganda", + UA: "Ukraine", + AE: "United Arab Emirates", + GB: "United Kingdom", + US: "United States", + UY: "Uruguay", + UZ: "Uzbekistan", + VU: "Vanuatu", + VA: "Vatican City", + VE: "Venezuela", + VN: "Vietnam", + WF: "Wallis & Futuna", + EH: "Western Sahara", + YE: "Yemen", + ZM: "Zambia", + ZW: "Zimbabwe", }, - "navigation": { + navigation: { "Map Planner": "Map Planner", - "Calendar": "Calendar", - "Builds": "Builds", + Calendar: "Calendar", + Builds: "Builds", "Build Analyzer": "Build Analyzer", "User Search": "User Search", "Free Agents": "Free Agents", "Tournament Results": "Tournament Results", - "Tournaments": "Tournaments", + Tournaments: "Tournaments", "Draft Cup": "Draft Cup", "Top 500 Browser": "Top 500 Browser", "Top 500": "Top 500", "Top 500 Tier Lists": "Top 500 Tier Lists", - "Leaderboards": "Leaderboards", + Leaderboards: "Leaderboards", "X Rank Leaderboards": "X Rank Leaderboards", "Plus Server": "Plus Server", - "Profile": "Profile", + Profile: "Profile", "Log out": "Log out", "Log in via Discord": "Log in via Discord", "Choose language": "Choose language", "Choose theme": "Choose theme", - "Browser": "Browser", - "Trends": "Trends", - "Analyzer": "Analyzer", - "FAQ": "FAQ", + Browser: "Browser", + Trends: "Trends", + Analyzer: "Analyzer", + FAQ: "FAQ", "Voting history": "Voting history", "Suggested and vouched players": "Suggested and vouched players", "Next voting": "Next voting", - "Voting": "Voting", - "Gray": "Gray", - "Red": "Red", - "Orange": "Orange", - "Yellow": "Yellow", - "Green": "Green", - "Teal": "Teal", - "Blue": "Blue", - "Cyan": "Cyan", - "Purple": "Purple", - "Pink": "Pink", - "paginationNext": "Next", - "paginationPrevious": "Previous" + Voting: "Voting", + Gray: "Gray", + Red: "Red", + Orange: "Orange", + Yellow: "Yellow", + Green: "Green", + Teal: "Teal", + Blue: "Blue", + Cyan: "Cyan", + Purple: "Purple", + Pink: "Pink", + paginationNext: "Next", + paginationPrevious: "Previous", }, - "home": { + home: { "Competitive Splatoon Hub": "Competitive Splatoon Hub", - "Play in competitive events this week": "Play in competitive events this week", + "Play in competitive events this week": + "Play in competitive events this week", "View more info": "View more info", "Featuring...": "Featuring...", - "xRankMonths": "{{xRankMonthCount}} months of <3><0>X Rank Top 500 data", - "buildCount": "<0> <2><0>builds", - "userCount": "<0> <2><0>users", - "faCount": "<0> <2><0>free agents", - "tournamentCount": "<0> <2><0>tournament results", + xRankMonths: + "{{xRankMonthCount}} months of <3><0>X Rank Top 500 data", + buildCount: "<0> <2><0>builds", + userCount: "<0> <2><0>users", + faCount: "<0> <2><0>free agents", + tournamentCount: "<0> <2><0>tournament results", "As well as": "As well as", - "calendarExplanation": "<0><0>Calendar to discover upcoming events", - "drawingToolExplanation": "<0><0>Map drawing tool to easily share your plans", - "analyzerExplanation": "<0><0>Build analyzer to find out exactly what your builds are doing" + calendarExplanation: "<0><0>Calendar to discover upcoming events", + drawingToolExplanation: + "<0><0>Map drawing tool to easily share your plans", + analyzerExplanation: + "<0><0>Build analyzer to find out exactly what your builds are doing", }, - "plans": { - "tooNarrowAlert": "Unfortunately this tool isn't designed for narrow screens but you can still give it a go", - "Weapons": "Weapons", - "Tools": "Tools", + plans: { + tooNarrowAlert: + "Unfortunately this tool isn't designed for narrow screens but you can still give it a go", + Weapons: "Weapons", + Tools: "Tools", "Pencil (P)": "Pencil (P)", "Line (L)": "Line (L)", "Rectangle (R)": "Rectangle (R)", "Circle (C)": "Circle (C)", "Select (S)": "Select (S)", "Delete selected": "Delete selected", - "Undo": "Undo", - "Redo": "Redo", + Undo: "Undo", + Redo: "Redo", "Add text": "Add text", "Clear drawings": "Clear drawings", "Download as .png": "Download as .png", "Download as .json": "Download as .json", "Load from .json": "Load from .json", - "splatZonesShort": "SZ", - "towerControlShort": "TC", - "rainMakerShort": "RM", - "clamBlitzShort": "CB", - "turfWarShort": "TW", - "Show top-down view": "Show top-down view" + splatZonesShort: "SZ", + towerControlShort: "TC", + rainMakerShort: "RM", + clamBlitzShort: "CB", + turfWarShort: "TW", + "Show top-down view": "Show top-down view", }, - "calendar": { + calendar: { "Competitive Calendar": "Competitive Calendar", "Filter tournaments": "Filter tournaments", - "weekNumber": "Week {{weekNumber}}", + weekNumber: "Week {{weekNumber}}", "This week": "This week", "Join Discord": "Join Discord", "Hide info": "Hide info", "Show info": "Show info", - "Edit": "Edit", - "footer": "All events listed in your local time: {{timeNow}}<2>If you want your event displayed here message Sendou#0043 on Discord", - "plusVotingInfo": "<0>Plus Server voting of the month starts and lasts for the weekend" + Edit: "Edit", + footer: + "All events listed in your local time: {{timeNow}}<2>If you want your event displayed here message Sendou#0043 on Discord", + plusVotingInfo: + "<0>Plus Server voting of the month starts and lasts for the weekend", }, - "builds": { + builds: { "Default to Ability Point view": "Default to Ability Point view", - "Select a weapon to start viewing builds": "Select a weapon to start viewing builds", + "Select a weapon to start viewing builds": + "Select a weapon to start viewing builds", "Filter by ability": "Filter by ability", "Click an ability to filter by it": "Click an ability to filter by it", - "Only showing builds featuring the following abilities": "Only showing builds featuring the following abilities", - "Shooters": "Shooters", - "Blasters": "Blasters", - "Rollers": "Rollers", - "Brushes": "Brushes", - "Chargers": "Chargers", - "Sloshers": "Sloshers", - "Splatlings": "Splatings", - "Dualies": "Dualies", - "Brellas": "Brellas", - "Maker of the build has reached top 500 with this weapon": "Maker of the build has reached top 500 with this weapon", - "expandBuilds": "Show all {{otherBuildCount}} builds by {{username}}", + "Only showing builds featuring the following abilities": + "Only showing builds featuring the following abilities", + Shooters: "Shooters", + Blasters: "Blasters", + Rollers: "Rollers", + Brushes: "Brushes", + Chargers: "Chargers", + Sloshers: "Sloshers", + Splatlings: "Splatings", + Dualies: "Dualies", + Brellas: "Brellas", + "Maker of the build has reached top 500 with this weapon": + "Maker of the build has reached top 500 with this weapon", + expandBuilds: "Show all {{otherBuildCount}} builds by {{username}}", "No more builds to show": "No more builds to show", - "No builds found with the current filter": "No builds found with the current filter", - "Return to the top": "Return to the top" + "No builds found with the current filter": + "No builds found with the current filter", + "Return to the top": "Return to the top", }, - "analyzer": { - "currentPatch": "Patch {{CURRENT_PATCH}}", - "apExplanation": "AP = Ability Point = Mains * 10 + Subs * 3", - "Compare": "Compare", + analyzer: { + currentPatch: "Patch {{CURRENT_PATCH}}", + apExplanation: "AP = Ability Point = Mains * 10 + Subs * 3", + Compare: "Compare", "Stop comparing": "Stop comparing", - "Editing": "Editing", - "ldeFullEffectExplanation": "Enemy has reached the 30 point mark OR there is 30 seconds or less on the clock OR it is overtime", - "ldeInBetweenExplanation": "Enemy has reached the {{pointMark}} point mark", - "ldeNoEffectExplanation": "Enemy has not reached the 50 point mark or there is more than 30 seconds on the clock", - "abilityPointShort": "AP", - "Main only abilities (click to select)": "Main only abilities (click to select)", + Editing: "Editing", + ldeFullEffectExplanation: + "Enemy has reached the 30 point mark OR there is 30 seconds or less on the clock OR it is overtime", + ldeInBetweenExplanation: "Enemy has reached the {{pointMark}} point mark", + ldeNoEffectExplanation: + "Enemy has not reached the 50 point mark or there is more than 30 seconds on the clock", + abilityPointShort: "AP", + "Main only abilities (click to select)": + "Main only abilities (click to select)", "Stackable abilities": "Stackable abilities", "Show settings": "Show settings", "Hide settings": "Hide settings", "Hide stats at base value": "Hide stats at base value", - "Progress bars show progress to max value": "Progress bars show progress to max value", + "Progress bars show progress to max value": + "Progress bars show progress to max value", "Start charts Y axis from zero": "Start charts Y axis from zero", "Full charges per ink tank": "Full charges per ink tank", "Shots per ink tank": "Shots per ink tank", @@ -1316,37 +1360,44 @@ const translations = { "Jumping swings per ink tank": "Jumping swings per ink tank", "Dodge roll ink consumption": "Dodge roll ink consumption", "of ink tank": "of ink tank", - "Brella shield launch ink consumption": "Brella shield launch ink consumption", + "Brella shield launch ink consumption": + "Brella shield launch ink consumption", "ink consumption": "ink consumption", - "Ink tank recovery from empty to full (squid form)": "Ink tank recovery from empty to full (squid form)", - "frames": "frames", - "seconds": "seconds", + "Ink tank recovery from empty to full (squid form)": + "Ink tank recovery from empty to full (squid form)", + frames: "frames", + seconds: "seconds", "Run speed": "Run speed", "Run speed (firing)": "Run speed (firing)", "distance units / frame": "distance units / frame", "Swim speed": "Swim speed", "Points to special": "Points to special", - "speed": "speed", - "pointsShort": "p", + speed: "speed", + pointsShort: "p", "Special lost when killed": "Special lost when killed", - "Special lost when killed mid-Splashdown": "Special lost when killed mid-Splashdown", + "Special lost when killed mid-Splashdown": + "Special lost when killed mid-Splashdown", "of the charge": "of the charge", - "duration": "duration", - "Special Power Up also increases Inkjet's shots' painting and blast radius": "Special Power Up also increases Inkjet's shots' painting and blast radius", + duration: "duration", + "Special Power Up also increases Inkjet's shots' painting and blast radius": + "Special Power Up also increases Inkjet's shots' painting and blast radius", "reticle size": "reticle size", "ink coverage": "ink coverage", "180dmg hitbox size": "180dmg hitbox size", "70dmg hitbox size": "70dmg hitbox size", - "55dmg hitbox can't be increased with Special Power Up so the total radius of the special doesn't change": "55dmg hitbox can't be increased with Special Power Up so the total radius of the special doesn't change", + "55dmg hitbox can't be increased with Special Power Up so the total radius of the special doesn't change": + "55dmg hitbox can't be increased with Special Power Up so the total radius of the special doesn't change", "activation time": "activation time", - "Amount inked by Ink Storm is not increased only in how long distance the droplets are spread. Special Power Up also increases the distance you can throw the seed.": "Amount inked by Ink Storm is not increased only in how long distance the droplets are spread. Special Power Up also increases the distance you can throw the seed.", - "durability": "durability", + "Amount inked by Ink Storm is not increased only in how long distance the droplets are spread. Special Power Up also increases the distance you can throw the seed.": + "Amount inked by Ink Storm is not increased only in how long distance the droplets are spread. Special Power Up also increases the distance you can throw the seed.", + durability: "durability", "55dmg explosion hitbox size": "55dmg explosion hitbox size", "bubble size": "bubble size", "explosion hitbox": "explosion hitbox", "autocharge speed": "autocharge speed", - "time": "time", - "Quick Respawn activates when enemy kills you twice without you getting a kill in between": "Quick Respawn activates when enemy kills you twice without you getting a kill in between", + time: "time", + "Quick Respawn activates when enemy kills you twice without you getting a kill in between": + "Quick Respawn activates when enemy kills you twice without you getting a kill in between", "(in the air)": "(in the air)", "(on the ground)": "(on the ground)", "range and velocity": "range and velocity", @@ -1354,18 +1405,24 @@ const translations = { "mid-phase duration": "mid-phase duration", "tracking duration": "tracking duration", "tracking range": "tracking range", - "boost": "boost", - "When jumping to Sub Power Up boosted beakons QSJ AP bonus is applied on top of any existing QSJ the jumper has. 57AP can't be exceeded. Value shown is the bonus if the user of Beakon has 0AP invested in QSJ.": "When jumping to Sub Power Up boosted beakons QSJ AP bonus is applied on top of any existing QSJ the jumper has. 57AP can't be exceeded. Value shown is the bonus if the user of Beakon has 0AP invested in QSJ.", - "Frames before taking damage from enemy ink": "Frames before taking damage from enemy ink", - "Ink Resistance Up also allows you to jump higher and strafe faster while shooting in enemy ink": "Ink Resistance Up also allows you to jump higher and strafe faster while shooting in enemy ink", + boost: "boost", + "When jumping to Sub Power Up boosted beakons QSJ AP bonus is applied on top of any existing QSJ the jumper has. 57AP can't be exceeded. Value shown is the bonus if the user of Beakon has 0AP invested in QSJ.": + "When jumping to Sub Power Up boosted beakons QSJ AP bonus is applied on top of any existing QSJ the jumper has. 57AP can't be exceeded. Value shown is the bonus if the user of Beakon has 0AP invested in QSJ.", + "Frames before taking damage from enemy ink": + "Frames before taking damage from enemy ink", + "Ink Resistance Up also allows you to jump higher and strafe faster while shooting in enemy ink": + "Ink Resistance Up also allows you to jump higher and strafe faster while shooting in enemy ink", "hp / frame": "hp / frame", - "hp": "hp", - "Limit on the damage enemy ink can deal on you": "Limit on the damage enemy ink can deal on you", + hp: "hp", + "Limit on the damage enemy ink can deal on you": + "Limit on the damage enemy ink can deal on you", "Run speed in enemy ink": "Run speed in enemy ink", "Sub Weapon damage (indirect)": "Sub Weapon damage (indirect)", "Special Weapon damage (indirect)": "Special Weapon damage (indirect)", - "Bomb Defense Up DX also lessens the damage of a direct bomb hit but it will never make a bomb not kill that would have dealt over 100dmg without any of the ability on": "Bomb Defense Up DX also lessens the damage of a direct bomb hit but it will never make a bomb not kill that would have dealt over 100dmg without any of the ability on", - "Tenta Missiles, Inkjet, Splashdown, Baller, Bubble Blower, Booyah Bomb & Ultra Stamp generate damage lessened by Bomb Defense Up DX. OHKO's are unaffected": "Tenta Missiles, Inkjet, Splashdown, Baller, Bubble Blower, Booyah Bomb & Ultra Stamp generate damage lessened by Bomb Defense Up DX. OHKO's are unaffected", + "Bomb Defense Up DX also lessens the damage of a direct bomb hit but it will never make a bomb not kill that would have dealt over 100dmg without any of the ability on": + "Bomb Defense Up DX also lessens the damage of a direct bomb hit but it will never make a bomb not kill that would have dealt over 100dmg without any of the ability on", + "Tenta Missiles, Inkjet, Splashdown, Baller, Bubble Blower, Booyah Bomb & Ultra Stamp generate damage lessened by Bomb Defense Up DX. OHKO's are unaffected": + "Tenta Missiles, Inkjet, Splashdown, Baller, Bubble Blower, Booyah Bomb & Ultra Stamp generate damage lessened by Bomb Defense Up DX. OHKO's are unaffected", "Base tracking time (Point Sensor)": "Base tracking time (Point Sensor)", "Base tracking time (Ink Mine)": "Base tracking time (Ink Mine)", "bullet ink coverage": "bullet ink coverage", @@ -1373,36 +1430,47 @@ const translations = { "bullet spread (not jumping)": "bullet spread (not jumping)", "bullet spread (in the air)": "bullet spread (in the air)", "range and bullet velocity": "range and bullet velocity", - "70dmg hitbox portion of the total explosion hitbox": "70dmg hitbox portion of the total explosion hitbox", + "70dmg hitbox portion of the total explosion hitbox": + "70dmg hitbox portion of the total explosion hitbox", "bullet explosion hitbox size": "bullet explosion hitbox size", "bullet explosion paint": "bullet explosion paint", - "movement speed holding trigger down": "movement speed holding trigger down", + "movement speed holding trigger down": + "movement speed holding trigger down", "ink trail width": "ink trail width", "fully charged shot range": "fully charged shot range", "damage per fully charged shot": "damage per fully charged shot", - "Ink coverage bonus is only applied to the circle at the end of the shot": "Ink coverage bonus is only applied to the circle at the end of the shot", - "Ink coverage bonus is only applied to the line before the impact": "Ink coverage bonus is only applied to the line before the impact", + "Ink coverage bonus is only applied to the circle at the end of the shot": + "Ink coverage bonus is only applied to the circle at the end of the shot", + "Ink coverage bonus is only applied to the line before the impact": + "Ink coverage bonus is only applied to the line before the impact", "damage per shot (fully charged)": "damage per shot (fully charged)", "shield recharge time": "shield recharge time", "shield durability": "shield durability", "full charge shooting duration": "full charge shooting duration", - "Slosher has weird physics so we haven't fully deciphered this parameter.": "Slosher has weird physics so we haven't fully deciphered this parameter.", - "damage": "damage", - "pointShort": "p", + "Slosher has weird physics so we haven't fully deciphered this parameter.": + "Slosher has weird physics so we haven't fully deciphered this parameter.", + damage: "damage", + pointShort: "p", "Damage taken in enemy ink": "Damage taken in enemy ink", - "Intensity": "Intensity" + Intensity: "Intensity", }, - "users": { - "Filter by username, Twitter name or Discord ID": "Filter by username, Twitter name or Discord ID", - "Stick": "Stick", - "Motion": "Motion", + users: { + "Filter by username, Twitter name or Discord ID": + "Filter by username, Twitter name or Discord ID", + Stick: "Stick", + Motion: "Motion", "X Rank Top 500": "X Rank Top 500", "Edit profile": "Edit profile", - "Motion sensitivity entered without stick sensitivity": "Motion sensitivity entered without stick sensitivity", - "Custom URL has to be over 2 characters long": "Custom URL has to be over 2 characters long", - "Custom URL can be at most 32 characters long": "Custom URL can be at most 32 characters long", - "Custom URL has to contain at least one letter": "Custom URL has to contain at least one letter", - "Custom URL can only contain letters and numbers": "Custom URL can only contain letters and numbers", + "Motion sensitivity entered without stick sensitivity": + "Motion sensitivity entered without stick sensitivity", + "Custom URL has to be over 2 characters long": + "Custom URL has to be over 2 characters long", + "Custom URL can be at most 32 characters long": + "Custom URL can be at most 32 characters long", + "Custom URL has to contain at least one letter": + "Custom URL has to contain at least one letter", + "Custom URL can only contain letters and numbers": + "Custom URL can only contain letters and numbers", "Filter builds by title or weapon": "Filter builds by title or weapon", "Weapon pool's max size is 5": "Weapon pool's max size is 5", "Bio's max length is 10000": "Bio's max length is 10000", @@ -1410,62 +1478,69 @@ const translations = { "An error occurred": "An error occurred", "Editing profile": "Editing profile", "Profile picture": "Profile picture", - "profilePicExplanation": "Your profile picture comes from your Discord profile. If you change your profile picture on Discord you need to log out and back in to get it updated on sendou.ink.", + profilePicExplanation: + "Your profile picture comes from your Discord profile. If you change your profile picture on Discord you need to log out and back in to get it updated on sendou.ink.", "Custom URL": "Custom URL", - "Please note Custom URL can't be updated after you have set it.": "Please note Custom URL can't be updated after you have set it.", - "Country": "Country", + "Please note Custom URL can't be updated after you have set it.": + "Please note Custom URL can't be updated after you have set it.", + Country: "Country", "Stick sensitivity": "Stick sensitivity", "Motion sensitivity": "Motion sensitivity", "Weapon pool": "Weapon pool", - "Bio": "Bio", - "markdownPrompt": "Markdown is supported - ", - "Submit": "Submit", - "Cancel": "Cancel", - "Edit": "Edit", - "Preview": "Preview", + Bio: "Bio", + markdownPrompt: "Markdown is supported - ", + Submit: "Submit", + Cancel: "Cancel", + Edit: "Edit", + Preview: "Preview", "Add build": "Add build", - "tooManyBuilds": "You already have 100 builds. Please delete one before adding a new one", + tooManyBuilds: + "You already have 100 builds. Please delete one before adding a new one", "New build created": "New build created", "Build updated": "Build updated", "Build deleted": "Build deleted", "Delete build": "Delete build", "Adding a new build": "Adding a new build", "Editing existing build": "Editing existing build", - "Weapon": "Weapon", - "Headgear": "Headgear", - "Clothing": "Clothing", - "Shoes": "Shoes", - "Title": "Title", - "Description": "Description", + Weapon: "Weapon", + Headgear: "Headgear", + Clothing: "Clothing", + Shoes: "Shoes", + Title: "Title", + Description: "Description", "Best placement": "Best placement", "Highest power": "Highest power", "Number of placements": "Number of placements", "Best placement / power": "Best placement / power", - "noPlacementsPromptNew": "If you have reached Top 500 in a <1>finished X Rank season you can have it displayed here! Simply contact Sendou#0043 on Discord with your in-game nick. Once set up new results are added automatically and no further action is needed." + noPlacementsPromptNew: + "If you have reached Top 500 in a <1>finished X Rank season you can have it displayed here! Simply contact Sendou#0043 on Discord with your in-game nick. Once set up new results are added automatically and no further action is needed.", }, - "freeagents": { - "loginPrompt": "Log in to make your own free agent post and start matching!", - "pleaseWaitPrompt": "You need to wait a week after deleting your old free agent post before making a new one", + freeagents: { + loginPrompt: "Log in to make your own free agent post and start matching!", + pleaseWaitPrompt: + "You need to wait a week after deleting your old free agent post before making a new one", "Hide filters": "Hide filters", "Show filters": "Show filters", - "Playstyle": "Playstyle", - "Region": "Region", - "Any": "Any", + Playstyle: "Playstyle", + Region: "Region", + Any: "Any", "Frontline/Slayer": "Frontline/Slayer", "Midline/Support": "Midline/Support", "Backline/Anchor": "Backline/Anchor", - "Europe": "Europe", + Europe: "Europe", "The Americas": "The Americas", - "Oceania": "Oceania", - "Other": "Other", - "Weapon": "Weapon", + Oceania: "Oceania", + Other: "Other", + Weapon: "Weapon", "Edit free agent post": "Edit free agent post", "New free agent post": "New free agent post", - "MATCHES": "MATCHES", - "youHaveAMatch": "You have a match with <1>{{matchFullName}}! Contact them to see if you can get a team going", - "getLiking": "This match is revealed when you like them back!", - "getLiking_plural": "These matches are revealed when you like them back!", - "No free agents found with the current filter": "No free agents found with the current filter", + MATCHES: "MATCHES", + youHaveAMatch: + "You have a match with <1>{{matchFullName}}! Contact them to see if you can get a team going", + getLiking: "This match is revealed when you like them back!", + getLiking_plural: "These matches are revealed when you like them back!", + "No free agents found with the current filter": + "No free agents found with the current filter", "No more free agents to show": "No more free agents to show", "Return to the top": "Return to the top", "Can VC": "Can VC", @@ -1473,107 +1548,119 @@ const translations = { "Can VC sometimes": "Can VC sometimes", "Can't VC": "Can't VC", "Show more information": "Show more information", - "Activity": "Activity", + Activity: "Activity", "Looking for": "Looking for", "Past experience": "Past experience", - "Description": "Description", + Description: "Description", "Free agent post added": "Free agent post added", "Free agent post edited": "Free agent post edited", "Free agent post deleted": "Free agent post deleted", "Adding a new free agent post": "Adding a new free agent post", "Editing a free agent post": "Editing a free agent post", "Delete free agent post": "Delete free agent post", - "deleteNotif": "Note that if you decide to delete your post you need to wait a week before posting a new one.", + deleteNotif: + "Note that if you decide to delete your post you need to wait a week before posting a new one.", "Confirm deletion": "Confirm deletion", - "theyAreSynced": "Profile picture, Discord name, Twitter user, weapon pool and Top 500 history are automatically synced up with your profile. Also please note that the post automatically sent to Discord can't be edited afterwards so you want to set these before making a post.", - "Playstyles": "Playstyles", + theyAreSynced: + "Profile picture, Discord name, Twitter user, weapon pool and Top 500 history are automatically synced up with your profile. Also please note that the post automatically sent to Discord can't be edited afterwards so you want to set these before making a post.", + Playstyles: "Playstyles", "Required field": "Required field", "Value too long": "Value too long", - "Free agent has reached Top 500 in X Rank": "Free agent has reached Top 500 in X Rank", + "Free agent has reached Top 500 in X Rank": + "Free agent has reached Top 500 in X Rank", "Can you voice chat?": "Can you voice chat?", - "Yes": "Yes", - "Usually": "Usually", - "Sometimes": "Sometimes", - "No": "No", + Yes: "Yes", + Usually: "Usually", + Sometimes: "Sometimes", + No: "No", "Past competitive experience": "Past competitive experience", - "What is your activity like on a typical week?": "What is your activity like on a typical week?", + "What is your activity like on a typical week?": + "What is your activity like on a typical week?", "What are you looking from a team?": "What are you looking from a team?", - "Free word": "Free word" + "Free word": "Free word", }, - "tournaments": { - "Tournament": "Tournament", - "Team": "Team", - "Player": "Player", - "Comp": "Comp", + tournaments: { + Tournament: "Tournament", + Team: "Team", + Player: "Player", + Comp: "Comp", "Map & mode": "Map & mode", - "Region": "Region", - "All": "All", - "Western": "Western", - "Japanese": "Japanese", - "Apply": "Apply", + Region: "Region", + All: "All", + Western: "Western", + Japanese: "Japanese", + Apply: "Apply", "Clear filters": "Clear filters", "All tournaments": "All tournaments", "Popular weapons": "Popular weapons", - "VICTORY": "VICTORY", - "DEFEAT": "DEFEAT" + VICTORY: "VICTORY", + DEFEAT: "DEFEAT", }, - "draft": { - "draftExplanation": "Draft Cup is a tournament series open for +1 and +2 members. On this page you can browse the leaderboards and detailed match reports.", + draft: { + draftExplanation: + "Draft Cup is a tournament series open for +1 and +2 members. On this page you can browse the leaderboards and detailed match reports.", "View matches": "View matches", - "Bracket": "Bracket", + Bracket: "Bracket", "Back to Draft Cup home": "Back to Draft Cup home", - "Expand": "Expand", - "paintShort": "p" + Expand: "Expand", + paintShort: "p", }, - "xsearch": { - "Name": "Name", - "Month": "Month", - "Year": "Year", - "Mode": "Mode", + xsearch: { + Name: "Name", + Month: "Month", + Year: "Year", + Mode: "Mode", "All modes": "All modes", - "idViewed": "Viewing placements by player with the id {{idViewed}}", + idViewed: "Viewing placements by player with the id {{idViewed}}", "X Power": "X Power", - "Placement": "Placement", - "ID": "ID" + Placement: "Placement", + ID: "ID", }, - "xtrends": { - "trendsExplanation": "Here you can find X Rank Top 500 usage tier lists. For example for a weapon to be in the X tier it needs at least 30 placements in that mode that month." + xtrends: { + trendsExplanation: + "Here you can find X Rank Top 500 usage tier lists. For example for a weapon to be in the X tier it needs at least 30 placements in that mode that month.", }, - "xleaderboards": { - "PEAK_XP": "X Power (all weapons)", - "UNIQUE_WEAPONS_COUNT": "Top 500 placements with different weapons", - "FOUR_MODE_PEAK_AVERAGE": "4 mode peak X Power average", - "PLACEMENTS_COUNT": "Top 500 placements", - "Score": "Score" + xleaderboards: { + PEAK_XP: "X Power (all weapons)", + UNIQUE_WEAPONS_COUNT: "Top 500 placements with different weapons", + FOUR_MODE_PEAK_AVERAGE: "4 mode peak X Power average", + PLACEMENTS_COUNT: "Top 500 placements", + Score: "Score", }, - "footer": { - "About": "About", + footer: { + About: "About", "External links": "External links", - "Feedback": "Help/Feedback", - "feedbackText": "Noticed a bug? Something could be done better? Thought of a new cool feature you'd like to see on the site? Need help using the site? You can either:", + Feedback: "Help/Feedback", + feedbackText: + "Noticed a bug? Something could be done better? Thought of a new cool feature you'd like to see on the site? Need help using the site? You can either:", "Thanks to": "Thanks to", - "createIssue": "Create an issue on <2>GitHub", - "postOnDiscord": "Post on the #helpdesk or #feedback channel of our <2>Discord", - "dmMe": "DM me on <2>Twitter or Discord (Sendou#0043)", + createIssue: "Create an issue on <2>GitHub", + postOnDiscord: + "Post on the #helpdesk or #feedback channel of our <2>Discord", + dmMe: "DM me on <2>Twitter or Discord (Sendou#0043)", "provided the Top 500 X Rank data": "provided the Top 500 X Rank data", - "provided background pictures for the map planner": "provided background pictures for the map planner", - "provided the data for tournament browser": "provided the data for tournament browser", + "provided background pictures for the map planner": + "provided background pictures for the map planner", + "provided the data for tournament browser": + "provided the data for tournament browser", "gave plenty of useful feedback": "gave plenty of useful feedback", - "art for the site like the inkling on the front page as well as footer pictures": "art for the site like the inkling on the front page as well as footer pictures", - "translation": "translation", - "Links": "Links", - "Guides": "Guides", - "Discord": "Discord", - "Misc": "Misc", - "englishOnly": "This content is currently available in English only. We will look into adding resources in other languages too." - } -} as const + "art for the site like the inkling on the front page as well as footer pictures": + "art for the site like the inkling on the front page as well as footer pictures", + translation: "translation", + Links: "Links", + Guides: "Guides", + Discord: "Discord", + Misc: "Misc", + englishOnly: + "This content is currently available in English only. We will look into adding resources in other languages too.", + }, +} as const; const t = (key: string) => { - const [category, line] = key.split(";") + const [category, line] = key.split(";"); // @ts-ignore - return translations[category][line] -} + return translations[category][line]; +}; -export const useTranslation = () => ({ t }) \ No newline at end of file +export const useTranslation = () => ({ t }); diff --git a/lib/useMyTheme.ts b/lib/useMyTheme.ts index 67748694f..5174cb7c3 100644 --- a/lib/useMyTheme.ts +++ b/lib/useMyTheme.ts @@ -44,11 +44,10 @@ const theme = { textColor: "whiteAlpha.900", gray: "gray.300", }, -} as const +} as const; export const useMyTheme = () => { - const { colorMode } = useColorMode() - - return theme[colorMode] -} + const { colorMode } = useColorMode(); + return theme[colorMode]; +}; diff --git a/next.config.js b/next.config.js index e164979d6..b79b09d34 100644 --- a/next.config.js +++ b/next.config.js @@ -1,2 +1,2 @@ -const withImages = require('next-images') -module.exports = withImages() \ No newline at end of file +const withImages = require("next-images"); +module.exports = withImages(); diff --git a/nexus-typegen.ts b/nexus-typegen.ts index 984bb1a73..a90a94d06 100644 --- a/nexus-typegen.ts +++ b/nexus-typegen.ts @@ -3,14 +3,12 @@ * Do not make changes to this file directly */ -import * as Context from "./graphql/context" - - +import * as Context from "./graphql/context"; declare global { interface NexusGenCustomOutputProperties { - model: NexusPrisma - crud: any + model: NexusPrisma; + crud: any; } } @@ -18,22 +16,21 @@ declare global { interface NexusGen extends NexusGenTypes {} } -export interface NexusGenInputs { -} +export interface NexusGenInputs {} -export interface NexusGenEnums { -} +export interface NexusGenEnums {} export interface NexusGenScalars { - String: string - Int: number - Float: number - Boolean: boolean - ID: string + String: string; + Int: number; + Float: number; + Boolean: boolean; + ID: string; } export interface NexusGenRootTypes { - Profile: { // root type + Profile: { + // root type bio?: string | null; // String country?: string | null; // String customUrlPath?: string | null; // String @@ -42,26 +39,28 @@ export interface NexusGenRootTypes { twitchName?: string | null; // String weaponPool: string[]; // [String!]! youtubeId?: string | null; // String - } + }; Query: {}; - User: { // root type + User: { + // root type discordAvatar?: string | null; // String discordId: string; // String! discriminator: string; // String! username: string; // String! - } + }; } export interface NexusGenAllTypes extends NexusGenRootTypes { - String: NexusGenScalars['String']; - Int: NexusGenScalars['Int']; - Float: NexusGenScalars['Float']; - Boolean: NexusGenScalars['Boolean']; - ID: NexusGenScalars['ID']; + String: NexusGenScalars["String"]; + Int: NexusGenScalars["Int"]; + Float: NexusGenScalars["Float"]; + Boolean: NexusGenScalars["Boolean"]; + ID: NexusGenScalars["ID"]; } export interface NexusGenFieldTypes { - Profile: { // field return type + Profile: { + // field return type bio: string | null; // String country: string | null; // String customUrlPath: string | null; // String @@ -70,32 +69,34 @@ export interface NexusGenFieldTypes { twitchName: string | null; // String weaponPool: string[]; // [String!]! youtubeId: string | null; // String - } - Query: { // field return type - getUserByIdentifier: NexusGenRootTypes['User'] | null; // User - } - User: { // field return type + }; + Query: { + // field return type + getUserByIdentifier: NexusGenRootTypes["User"] | null; // User + }; + User: { + // field return type avatarUrl: string | null; // String discordAvatar: string | null; // String discordId: string; // String! discriminator: string; // String! fullUsername: string; // String! - profile: NexusGenRootTypes['Profile'] | null; // Profile + profile: NexusGenRootTypes["Profile"] | null; // Profile profilePath: string; // String! username: string; // String! - } + }; } export interface NexusGenArgTypes { Query: { - getUserByIdentifier: { // args + getUserByIdentifier: { + // args identifier: string; // String! - } - } + }; + }; } -export interface NexusGenAbstractResolveReturnTypes { -} +export interface NexusGenAbstractResolveReturnTypes {} export interface NexusGenInheritedFields {} @@ -125,19 +126,28 @@ export interface NexusGenTypes { interfaceNames: NexusGenInterfaceNames; scalarNames: NexusGenScalarNames; unionNames: NexusGenUnionNames; - allInputTypes: NexusGenTypes['inputNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['scalarNames']; - allOutputTypes: NexusGenTypes['objectNames'] | NexusGenTypes['enumNames'] | NexusGenTypes['unionNames'] | NexusGenTypes['interfaceNames'] | NexusGenTypes['scalarNames']; - allNamedTypes: NexusGenTypes['allInputTypes'] | NexusGenTypes['allOutputTypes'] - abstractTypes: NexusGenTypes['interfaceNames'] | NexusGenTypes['unionNames']; + allInputTypes: + | NexusGenTypes["inputNames"] + | NexusGenTypes["enumNames"] + | NexusGenTypes["scalarNames"]; + allOutputTypes: + | NexusGenTypes["objectNames"] + | NexusGenTypes["enumNames"] + | NexusGenTypes["unionNames"] + | NexusGenTypes["interfaceNames"] + | NexusGenTypes["scalarNames"]; + allNamedTypes: + | NexusGenTypes["allInputTypes"] + | NexusGenTypes["allOutputTypes"]; + abstractTypes: NexusGenTypes["interfaceNames"] | NexusGenTypes["unionNames"]; abstractResolveReturn: NexusGenAbstractResolveReturnTypes; } - declare global { - interface NexusGenPluginTypeConfig { - } - interface NexusGenPluginFieldConfig { - } - interface NexusGenPluginSchemaConfig { - } -} \ No newline at end of file + interface NexusGenPluginTypeConfig {} + interface NexusGenPluginFieldConfig< + TypeName extends string, + FieldName extends string + > {} + interface NexusGenPluginSchemaConfig {} +} diff --git a/old/frontend-react/public/locales/de/translation.json b/old/frontend-react/public/locales/de/translation.json index 593576f2d..5ee838aae 100644 --- a/old/frontend-react/public/locales/de/translation.json +++ b/old/frontend-react/public/locales/de/translation.json @@ -1559,4 +1559,4 @@ "PLACEMENTS_COUNT": "Top 500 Platzierungen", "Score": "Ergebnis" } -} \ No newline at end of file +} diff --git a/old/frontend-react/public/locales/pt-BR/translation.json b/old/frontend-react/public/locales/pt-BR/translation.json index b3f2f95b7..35245b267 100644 --- a/old/frontend-react/public/locales/pt-BR/translation.json +++ b/old/frontend-react/public/locales/pt-BR/translation.json @@ -1551,4 +1551,4 @@ "What are you looking from a team?": "O que você espera de um time?", "Free word": "Texto livre" } -} \ No newline at end of file +} diff --git a/old/frontend-react/src/components/admin/AdminPage.tsx b/old/frontend-react/src/components/admin/AdminPage.tsx index 3b90d099a..e4ea3d937 100644 --- a/old/frontend-react/src/components/admin/AdminPage.tsx +++ b/old/frontend-react/src/components/admin/AdminPage.tsx @@ -4,7 +4,7 @@ import { Redirect, RouteComponentProps } from "@reach/router"; import React, { useState } from "react"; import { MutationUpdatePlayerIdArgs, - useUpdatePlayerIdMutation + useUpdatePlayerIdMutation, } from "../../generated/graphql"; import { USER } from "../../graphql/queries/user"; import { UserData } from "../../types"; diff --git a/old/frontend-react/src/components/admin/VotingManager.tsx b/old/frontend-react/src/components/admin/VotingManager.tsx index ddfad3841..19411acb2 100644 --- a/old/frontend-react/src/components/admin/VotingManager.tsx +++ b/old/frontend-react/src/components/admin/VotingManager.tsx @@ -4,7 +4,7 @@ import React, { useState } from "react"; import { END_VOTING } from "../../graphql/mutations/endVoting"; import { StartVotingVars, - START_VOTING + START_VOTING, } from "../../graphql/mutations/startVoting"; import { PlusInfoData, PLUS_INFO } from "../../graphql/queries/plusInfo"; import Error from "../common/Error"; diff --git a/old/frontend-react/src/components/analyzer/BuildAnalyzerPage.tsx b/old/frontend-react/src/components/analyzer/BuildAnalyzerPage.tsx index 482ca3a85..d76a77d73 100644 --- a/old/frontend-react/src/components/analyzer/BuildAnalyzerPage.tsx +++ b/old/frontend-react/src/components/analyzer/BuildAnalyzerPage.tsx @@ -1,4 +1,12 @@ -import { Badge, Box, Button, Flex, FormLabel, Switch, Wrap } from "@chakra-ui/core"; +import { + Badge, + Box, + Button, + Flex, + FormLabel, + Switch, + Wrap, +} from "@chakra-ui/core"; import { RouteComponentProps, useLocation } from "@reach/router"; import React, { useContext, useEffect, useState } from "react"; import { Helmet } from "react-helmet-async"; diff --git a/old/frontend-react/src/components/analyzer/EditableBuilds.tsx b/old/frontend-react/src/components/analyzer/EditableBuilds.tsx index 62a83094a..feacedabc 100644 --- a/old/frontend-react/src/components/analyzer/EditableBuilds.tsx +++ b/old/frontend-react/src/components/analyzer/EditableBuilds.tsx @@ -8,12 +8,12 @@ import { ClothingOnlyAbility, HeadOnlyAbility, ShoesOnlyAbility, - StackableAbility + StackableAbility, } from "../../types"; import { clothingOnlyAbilities, headOnlyAbilities, - shoesOnlyAbilities + shoesOnlyAbilities, } from "../../utils/lists"; import ViewSlots from "../builds/ViewSlots"; import AbilityButtons from "../user/AbilityButtons"; diff --git a/old/frontend-react/src/components/calendar/TournamentModal.tsx b/old/frontend-react/src/components/calendar/TournamentModal.tsx index fc01c4c0a..c9f8d5937 100644 --- a/old/frontend-react/src/components/calendar/TournamentModal.tsx +++ b/old/frontend-react/src/components/calendar/TournamentModal.tsx @@ -1,24 +1,26 @@ import { useMutation } from "@apollo/client"; import { - Box, Button, Flex, + Box, + Button, + Flex, FormControl, FormErrorMessage, FormHelperText, Image, - useToast + useToast, } from "@chakra-ui/core"; import React, { useState } from "react"; import { DeleteCompetitiveFeedEventVars, - DELETE_COMPETITIVE_FEED_EVENT + DELETE_COMPETITIVE_FEED_EVENT, } from "../../graphql/mutations/deleteCompetitiveFeedEvent"; import { UpdateCompetitiveFeedEventVars, - UPDATE_COMPETITIVE_FEED_EVENT + UPDATE_COMPETITIVE_FEED_EVENT, } from "../../graphql/mutations/updateCompetitiveFeedEvent"; import { CompetitiveFeedEvent, - UPCOMING_EVENTS + UPCOMING_EVENTS, } from "../../graphql/queries/upcomingEvents"; import DatePicker from "../elements/DatePicker"; import Input from "../elements/Input"; diff --git a/old/frontend-react/src/components/freeagents/FAPostModal.tsx b/old/frontend-react/src/components/freeagents/FAPostModal.tsx index f892ecf05..e879187c9 100644 --- a/old/frontend-react/src/components/freeagents/FAPostModal.tsx +++ b/old/frontend-react/src/components/freeagents/FAPostModal.tsx @@ -1,6 +1,8 @@ import { useMutation } from "@apollo/client"; import { - Box, Button, Checkbox, + Box, + Button, + Checkbox, CheckboxGroup, Flex, FormControl, @@ -9,13 +11,13 @@ import { Radio, RadioGroup, Stack, - useToast + useToast, } from "@chakra-ui/core"; import React, { useContext, useState } from "react"; import { useTranslation } from "react-i18next"; import { AddFreeAgentPostVars, - ADD_FREE_AGENT_POST + ADD_FREE_AGENT_POST, } from "../../graphql/mutations/addFreeAgentPost"; import { HIDE_FREE_AGENT_POST } from "../../graphql/mutations/hideFreeAgentPost"; import { UPDATE_FREE_AGENT_POST } from "../../graphql/mutations/updateFreeAgentPost"; @@ -171,7 +173,10 @@ const FAPostModal: React.FC = ({ closeModal, post }) => { {t("freeagents;deleteNotif")} - diff --git a/old/frontend-react/src/components/freeagents/FreeAgentsPage.tsx b/old/frontend-react/src/components/freeagents/FreeAgentsPage.tsx index aff98e8fa..50e06f61a 100644 --- a/old/frontend-react/src/components/freeagents/FreeAgentsPage.tsx +++ b/old/frontend-react/src/components/freeagents/FreeAgentsPage.tsx @@ -7,7 +7,7 @@ import { useTranslation } from "react-i18next"; import { FaFilter } from "react-icons/fa"; import { FreeAgentMatchesData, - FREE_AGENT_MATCHES + FREE_AGENT_MATCHES, } from "../../graphql/queries/freeAgentMatches"; import { FREE_AGENT_POSTS } from "../../graphql/queries/freeAgentPosts"; import { USER } from "../../graphql/queries/user"; @@ -15,7 +15,7 @@ import { FreeAgentPost, FreeAgentPostsData, UserData, - Weapon + Weapon, } from "../../types"; import { continents } from "../../utils/lists"; import Error from "../common/Error"; diff --git a/old/frontend-react/src/components/home/WeeksTournaments.tsx b/old/frontend-react/src/components/home/WeeksTournaments.tsx index 33004ee13..949b743a9 100644 --- a/old/frontend-react/src/components/home/WeeksTournaments.tsx +++ b/old/frontend-react/src/components/home/WeeksTournaments.tsx @@ -6,7 +6,7 @@ import { useTranslation } from "react-i18next"; import { FiClock, FiInfo } from "react-icons/fi"; import { UpcomingEventsData, - UPCOMING_EVENTS + UPCOMING_EVENTS, } from "../../graphql/queries/upcomingEvents"; import MyThemeContext from "../../themeContext"; import { getWeek } from "../../utils/helperFunctions"; diff --git a/old/frontend-react/src/components/plans/MapPlannerPage.tsx b/old/frontend-react/src/components/plans/MapPlannerPage.tsx index 42dbb3bf5..97d8149dd 100644 --- a/old/frontend-react/src/components/plans/MapPlannerPage.tsx +++ b/old/frontend-react/src/components/plans/MapPlannerPage.tsx @@ -8,7 +8,7 @@ import { FaBomb, FaFileDownload, FaFileImage, - FaFileUpload + FaFileUpload, } from "react-icons/fa"; import useBreakPoints from "../../hooks/useBreakPoints"; import { Stage, Weapon } from "../../types"; @@ -330,7 +330,11 @@ const MapPlannerPage: React.FC = () => { > {t("plans;Download as .json")} - diff --git a/old/frontend-react/src/components/plus/SuggestionVouchModal.tsx b/old/frontend-react/src/components/plus/SuggestionVouchModal.tsx index 367ca01fb..129cb602c 100644 --- a/old/frontend-react/src/components/plus/SuggestionVouchModal.tsx +++ b/old/frontend-react/src/components/plus/SuggestionVouchModal.tsx @@ -1,6 +1,8 @@ import { useMutation } from "@apollo/client"; import { - Box, Button, Flex, + Box, + Button, + Flex, FormControl, FormErrorMessage, FormHelperText, @@ -8,7 +10,7 @@ import { Radio, RadioGroup, Stack, - useToast + useToast, } from "@chakra-ui/core"; import React, { useContext, useState } from "react"; import { ADD_SUGGESTION } from "../../graphql/mutations/addSuggestion"; diff --git a/old/frontend-react/src/components/plus/Suggestions.tsx b/old/frontend-react/src/components/plus/Suggestions.tsx index 72e83f3cc..8e8783a98 100644 --- a/old/frontend-react/src/components/plus/Suggestions.tsx +++ b/old/frontend-react/src/components/plus/Suggestions.tsx @@ -4,9 +4,9 @@ import { Link } from "@reach/router"; import React, { useContext, useState } from "react"; import { PlusInfoData, PLUS_INFO } from "../../graphql/queries/plusInfo"; import { - Suggestion, - SUGGESTIONS, - SuggestionsData + Suggestion, + SUGGESTIONS, + SuggestionsData, } from "../../graphql/queries/suggestions"; import { USER } from "../../graphql/queries/user"; import { VOUCHES } from "../../graphql/queries/vouches"; diff --git a/old/frontend-react/src/components/plus/VotingPage.tsx b/old/frontend-react/src/components/plus/VotingPage.tsx index 0e4d79da8..33ba49a81 100644 --- a/old/frontend-react/src/components/plus/VotingPage.tsx +++ b/old/frontend-react/src/components/plus/VotingPage.tsx @@ -8,7 +8,7 @@ import { USER } from "../../graphql/queries/user"; import { UsersForVotingData, USERS_FOR_VOTING, - VotingSuggested + VotingSuggested, } from "../../graphql/queries/usersForVoting"; import MyThemeContext from "../../themeContext"; import { UserData } from "../../types"; diff --git a/old/frontend-react/src/components/plusdraftcup/DraftCupDetails.tsx b/old/frontend-react/src/components/plusdraftcup/DraftCupDetails.tsx index ad9697ce9..18a44b5d4 100644 --- a/old/frontend-react/src/components/plusdraftcup/DraftCupDetails.tsx +++ b/old/frontend-react/src/components/plusdraftcup/DraftCupDetails.tsx @@ -10,7 +10,7 @@ import { mapIcons } from "../../assets/imageImports"; import { SearchForDraftCupData, SearchForDraftCupVars, - SEARCH_FOR_DRAFT_CUP + SEARCH_FOR_DRAFT_CUP, } from "../../graphql/queries/searchForDraftCup"; import MyThemeContext from "../../themeContext"; import { @@ -18,7 +18,7 @@ import { ClothingGear, DetailedTeamInfo, HeadGear, - ShoesGear + ShoesGear, } from "../../types"; import AbilityIcon from "../builds/AbilityIcon"; import GearImage from "../builds/GearImage"; diff --git a/old/frontend-react/src/components/root/TopNav.tsx b/old/frontend-react/src/components/root/TopNav.tsx index 4825c49f1..24da34e2f 100644 --- a/old/frontend-react/src/components/root/TopNav.tsx +++ b/old/frontend-react/src/components/root/TopNav.tsx @@ -1,14 +1,16 @@ import { useQuery } from "@apollo/client"; import { - Box, Button, Flex, - Grid, - IconButton, - Menu, - MenuButton, - MenuGroup, - MenuItem, - MenuList, - useColorMode + Box, + Button, + Flex, + Grid, + IconButton, + Menu, + MenuButton, + MenuGroup, + MenuItem, + MenuList, + useColorMode, } from "@chakra-ui/core"; import { Link } from "@reach/router"; import React, { Suspense, useContext } from "react"; diff --git a/old/frontend-react/src/components/tournaments/TournamentDetailsPage.tsx b/old/frontend-react/src/components/tournaments/TournamentDetailsPage.tsx index 084f810c5..4965befb0 100644 --- a/old/frontend-react/src/components/tournaments/TournamentDetailsPage.tsx +++ b/old/frontend-react/src/components/tournaments/TournamentDetailsPage.tsx @@ -10,14 +10,14 @@ import { ArrayParam, encodeQueryParams, StringParam, - useQueryParams + useQueryParams, } from "use-query-params"; import { modeIconMap } from "../../assets/icons"; import { mapIcons } from "../../assets/imageImports"; import { SearchForTournamentByIdData, SearchForTournamentByIdVars, - SEARCH_FOR_TOURNAMENT_BY_ID + SEARCH_FOR_TOURNAMENT_BY_ID, } from "../../graphql/queries/searchForTournamentById"; import MyThemeContext from "../../themeContext"; import { Ability, Weapon } from "../../types"; diff --git a/old/frontend-react/src/generated/graphql.tsx b/old/frontend-react/src/generated/graphql.tsx index 78835059e..052c11430 100644 --- a/old/frontend-react/src/generated/graphql.tsx +++ b/old/frontend-react/src/generated/graphql.tsx @@ -1,7 +1,9 @@ -import { gql } from '@apollo/client'; -import * as Apollo from '@apollo/client'; +import { gql } from "@apollo/client"; +import * as Apollo from "@apollo/client"; export type Maybe = T | null; -export type Exact = { [K in keyof T]: T[K] }; +export type Exact = { + [K in keyof T]: T[K]; +}; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: string; @@ -12,17 +14,17 @@ export type Scalars = { }; export type Query = { - __typename?: 'Query'; - _empty?: Maybe; + __typename?: "Query"; + _empty?: Maybe; searchForBuilds: Array; maplists: Array; plusMaplists: Array; mapVotes?: Maybe>; - positiveVotes?: Maybe; + positiveVotes?: Maybe; getXRankPlacements: PaginatedXRankPlacements; getXRankLeaderboard: PaginatedXRankLeaderboard; getPeakXPowerLeaderboard: PaginatedXRankPlacements; - rotationData?: Maybe; + rotationData?: Maybe; /** Returns the current logged in user or null if not logged in. */ user?: Maybe; /** Returns user. Either discord_id or twitter has to provided or error is thrown. */ @@ -41,8 +43,8 @@ export type Query = { freeAgentPosts: Array; freeAgentMatches: FaMatches; plusInfo?: Maybe; - hasAccess?: Maybe; - xPowers: Array>; + hasAccess?: Maybe; + xPowers: Array>; suggestions?: Maybe>; vouches?: Maybe>; usersForVoting: UsersForVoting; @@ -51,1019 +53,996 @@ export type Query = { banners: Array; }; - export type QuerySearchForBuildsArgs = { - discord_id?: Maybe; - weapon?: Maybe; + discord_id?: Maybe; + weapon?: Maybe; }; - export type QueryMaplistsArgs = { - name?: Maybe; + name?: Maybe; }; - export type QueryPositiveVotesArgs = { mode?: Maybe; }; - export type QueryGetXRankPlacementsArgs = { - page?: Maybe; + page?: Maybe; filter?: Maybe; }; - export type QueryGetXRankLeaderboardArgs = { - page?: Maybe; + page?: Maybe; type: XRankLeaderboardType; }; - export type QueryGetPeakXPowerLeaderboardArgs = { - page?: Maybe; - weapon?: Maybe; + page?: Maybe; + weapon?: Maybe; }; - export type QuerySearchForUserArgs = { - discord_id?: Maybe; - twitter?: Maybe; - custom_url?: Maybe; + discord_id?: Maybe; + twitter?: Maybe; + custom_url?: Maybe; }; - export type QueryGetUserByIdentifierArgs = { - identifier: Scalars['String']; + identifier: Scalars["String"]; }; - export type QuerySearchForTournamentByIdArgs = { - id: Scalars['String']; + id: Scalars["String"]; }; - export type QuerySearchForTournamentsArgs = { - tournament_name?: Maybe; + tournament_name?: Maybe; region?: Maybe; - player_name?: Maybe; - unique_id?: Maybe; - team_name?: Maybe; - comp?: Maybe>>; - stage?: Maybe; + player_name?: Maybe; + unique_id?: Maybe; + team_name?: Maybe; + comp?: Maybe>>; + stage?: Maybe; mode?: Maybe; - page?: Maybe; + page?: Maybe; }; - export type QuerySearchForDraftCupArgs = { - name: Scalars['String']; + name: Scalars["String"]; }; - export type QueryHasAccessArgs = { - discord_id: Scalars['String']; + discord_id: Scalars["String"]; }; - export type QueryXPowersArgs = { - discord_id: Scalars['String']; + discord_id: Scalars["String"]; }; export type Mutation = { - __typename?: 'Mutation'; - _empty?: Maybe; + __typename?: "Mutation"; + _empty?: Maybe; addBuild?: Maybe; - deleteBuild?: Maybe; - updateBuild?: Maybe; - addMapVotes?: Maybe; - generateMaplistFromVotes?: Maybe; - updateUser?: Maybe; - updateAvatars?: Maybe; - updatePlayerId: Scalars['Boolean']; - addDetailedTournament: Scalars['Boolean']; - addPrivateBattles: Scalars['Int']; - replaceDraftLeaderboard: Scalars['Boolean']; - addCompetitiveFeedEvent: Scalars['Boolean']; - updateCompetitiveFeedEvent: Scalars['Boolean']; - deleteCompetitiveFeedEvent: Scalars['Boolean']; - addFreeAgentPost: Scalars['Boolean']; - hideFreeAgentPost: Scalars['Boolean']; - updateFreeAgentPost: Scalars['Boolean']; - addLike: Scalars['Boolean']; - deleteLike: Scalars['Boolean']; - addSuggestion: Scalars['Boolean']; - addVouch: Scalars['Boolean']; - addVotes: Scalars['Boolean']; - startVoting: Scalars['Boolean']; - endVoting: Scalars['Boolean']; + deleteBuild?: Maybe; + updateBuild?: Maybe; + addMapVotes?: Maybe; + generateMaplistFromVotes?: Maybe; + updateUser?: Maybe; + updateAvatars?: Maybe; + updatePlayerId: Scalars["Boolean"]; + addDetailedTournament: Scalars["Boolean"]; + addPrivateBattles: Scalars["Int"]; + replaceDraftLeaderboard: Scalars["Boolean"]; + addCompetitiveFeedEvent: Scalars["Boolean"]; + updateCompetitiveFeedEvent: Scalars["Boolean"]; + deleteCompetitiveFeedEvent: Scalars["Boolean"]; + addFreeAgentPost: Scalars["Boolean"]; + hideFreeAgentPost: Scalars["Boolean"]; + updateFreeAgentPost: Scalars["Boolean"]; + addLike: Scalars["Boolean"]; + deleteLike: Scalars["Boolean"]; + addSuggestion: Scalars["Boolean"]; + addVouch: Scalars["Boolean"]; + addVotes: Scalars["Boolean"]; + startVoting: Scalars["Boolean"]; + endVoting: Scalars["Boolean"]; }; - export type MutationAddBuildArgs = { - weapon: Scalars['String']; - title?: Maybe; - description?: Maybe; + weapon: Scalars["String"]; + title?: Maybe; + description?: Maybe; headgear: Array; - headgearItem?: Maybe; + headgearItem?: Maybe; clothing: Array; - clothingItem?: Maybe; + clothingItem?: Maybe; shoes: Array; - shoesItem?: Maybe; + shoesItem?: Maybe; }; - export type MutationDeleteBuildArgs = { - id: Scalars['ID']; + id: Scalars["ID"]; }; - export type MutationUpdateBuildArgs = { - id: Scalars['ID']; - weapon: Scalars['String']; - title?: Maybe; - description?: Maybe; + id: Scalars["ID"]; + weapon: Scalars["String"]; + title?: Maybe; + description?: Maybe; headgear: Array; - headgearItem?: Maybe; + headgearItem?: Maybe; clothing: Array; - clothingItem?: Maybe; + clothingItem?: Maybe; shoes: Array; - shoesItem?: Maybe; + shoesItem?: Maybe; }; - export type MutationAddMapVotesArgs = { votes: Array; }; - export type MutationUpdateUserArgs = { - country?: Maybe; - motion_sens?: Maybe; - stick_sens?: Maybe; - weapons?: Maybe>; - custom_url?: Maybe; - bio?: Maybe; + country?: Maybe; + motion_sens?: Maybe; + stick_sens?: Maybe; + weapons?: Maybe>; + custom_url?: Maybe; + bio?: Maybe; }; - export type MutationUpdateAvatarsArgs = { - lohiToken: Scalars['String']; + lohiToken: Scalars["String"]; toUpdate: Array; }; - export type MutationUpdatePlayerIdArgs = { - discordId: Scalars['String']; - playerId: Scalars['String']; + discordId: Scalars["String"]; + playerId: Scalars["String"]; }; - export type MutationAddDetailedTournamentArgs = { plus_server: PlusServer; tournament: DetailedTournamentInput; matches: Array; - lanistaToken: Scalars['String']; + lanistaToken: Scalars["String"]; }; - export type MutationAddPrivateBattlesArgs = { - submitterDiscordId: Scalars['String']; + submitterDiscordId: Scalars["String"]; maps: Array; - lanistaToken: Scalars['String']; + lanistaToken: Scalars["String"]; }; - export type MutationReplaceDraftLeaderboardArgs = { plus_server: PlusServer; players: Array; }; - export type MutationAddCompetitiveFeedEventArgs = { event: CompetitiveFeedEventInput; - lohiToken: Scalars['String']; + lohiToken: Scalars["String"]; }; - export type MutationUpdateCompetitiveFeedEventArgs = { event: UpdateCompetitiveFeedEventInput; }; - export type MutationDeleteCompetitiveFeedEventArgs = { - message_discord_id: Scalars['String']; + message_discord_id: Scalars["String"]; }; - export type MutationAddFreeAgentPostArgs = { can_vc: CanVc; playstyles: Array; - activity?: Maybe; - looking_for?: Maybe; - past_experience?: Maybe; - description?: Maybe; + activity?: Maybe; + looking_for?: Maybe; + past_experience?: Maybe; + description?: Maybe; }; - export type MutationUpdateFreeAgentPostArgs = { can_vc: CanVc; playstyles: Array; - activity?: Maybe; - looking_for?: Maybe; - past_experience?: Maybe; - description?: Maybe; + activity?: Maybe; + looking_for?: Maybe; + past_experience?: Maybe; + description?: Maybe; }; - export type MutationAddLikeArgs = { - discord_id: Scalars['String']; + discord_id: Scalars["String"]; }; - export type MutationDeleteLikeArgs = { - discord_id: Scalars['String']; + discord_id: Scalars["String"]; }; - export type MutationAddSuggestionArgs = { - discord_id: Scalars['String']; - server: Scalars['String']; - region: Scalars['String']; - description: Scalars['String']; + discord_id: Scalars["String"]; + server: Scalars["String"]; + region: Scalars["String"]; + description: Scalars["String"]; }; - export type MutationAddVouchArgs = { - discord_id: Scalars['String']; - server: Scalars['String']; - region: Scalars['String']; + discord_id: Scalars["String"]; + server: Scalars["String"]; + region: Scalars["String"]; }; - export type MutationAddVotesArgs = { votes: Array; }; - export type MutationStartVotingArgs = { - ends: Scalars['String']; + ends: Scalars["String"]; }; export type Build = { - __typename?: 'Build'; - id: Scalars['ID']; - discord_id: Scalars['String']; - weapon: Scalars['String']; - title?: Maybe; - description?: Maybe; + __typename?: "Build"; + id: Scalars["ID"]; + discord_id: Scalars["String"]; + weapon: Scalars["String"]; + title?: Maybe; + description?: Maybe; headgear: Array; - headgearItem?: Maybe; + headgearItem?: Maybe; clothing: Array; - clothingItem?: Maybe; + clothingItem?: Maybe; shoes: Array; - shoesItem?: Maybe; - updatedAt: Scalars['String']; - top: Scalars['Boolean']; + shoesItem?: Maybe; + updatedAt: Scalars["String"]; + top: Scalars["Boolean"]; discord_user: User; - jpn?: Maybe; + jpn?: Maybe; }; export type BuildCollection = { - __typename?: 'BuildCollection'; + __typename?: "BuildCollection"; builds: Array; - pageCount: Scalars['Int']; + pageCount: Scalars["Int"]; }; export enum Ability { - Cb = 'CB', - Lde = 'LDE', - Og = 'OG', - T = 'T', - H = 'H', - Ns = 'NS', - Rp = 'RP', - Ti = 'TI', - Dr = 'DR', - Os = 'OS', - Sj = 'SJ', - Bdu = 'BDU', - Rec = 'REC', - Res = 'RES', - Ism = 'ISM', - Iss = 'ISS', - Mpu = 'MPU', - Qr = 'QR', - Qsj = 'QSJ', - Rsu = 'RSU', - Ssu = 'SSU', - Scu = 'SCU', - Spu = 'SPU', - Ss = 'SS', - Bru = 'BRU', - Ad = 'AD' + Cb = "CB", + Lde = "LDE", + Og = "OG", + T = "T", + H = "H", + Ns = "NS", + Rp = "RP", + Ti = "TI", + Dr = "DR", + Os = "OS", + Sj = "SJ", + Bdu = "BDU", + Rec = "REC", + Res = "RES", + Ism = "ISM", + Iss = "ISS", + Mpu = "MPU", + Qr = "QR", + Qsj = "QSJ", + Rsu = "RSU", + Ssu = "SSU", + Scu = "SCU", + Spu = "SPU", + Ss = "SS", + Bru = "BRU", + Ad = "AD", } export type MapVoteInput = { - name: Scalars['String']; - sz: Scalars['Int']; - tc: Scalars['Int']; - rm: Scalars['Int']; - cb: Scalars['Int']; + name: Scalars["String"]; + sz: Scalars["Int"]; + tc: Scalars["Int"]; + rm: Scalars["Int"]; + cb: Scalars["Int"]; }; export type MapVoteCount = { - __typename?: 'MapVoteCount'; - name: Scalars['String']; - sz: Array; - tc: Array; - rm: Array; - cb: Array; + __typename?: "MapVoteCount"; + name: Scalars["String"]; + sz: Array; + tc: Array; + rm: Array; + cb: Array; }; export type PlusMaplistInfo = { - __typename?: 'PlusMaplistInfo'; - month: Scalars['Int']; - year: Scalars['Int']; - voter_count: Scalars['Int']; + __typename?: "PlusMaplistInfo"; + month: Scalars["Int"]; + year: Scalars["Int"]; + voter_count: Scalars["Int"]; vote_counts: Array; }; export type Maplist = { - __typename?: 'Maplist'; - name: Scalars['String']; - sz: Array; - tc: Array; - rm: Array; - cb: Array; + __typename?: "Maplist"; + name: Scalars["String"]; + sz: Array; + tc: Array; + rm: Array; + cb: Array; plus?: Maybe; }; export type MapVote = { - __typename?: 'MapVote'; - name: Scalars['String']; - sz: Scalars['Int']; - tc: Scalars['Int']; - rm: Scalars['Int']; - cb: Scalars['Int']; + __typename?: "MapVote"; + name: Scalars["String"]; + sz: Scalars["Int"]; + tc: Scalars["Int"]; + rm: Scalars["Int"]; + cb: Scalars["Int"]; }; export type GetXRankPlacementsInput = { - name?: Maybe; + name?: Maybe; mode?: Maybe; - month?: Maybe; - year?: Maybe; - playerId?: Maybe; + month?: Maybe; + year?: Maybe; + playerId?: Maybe; }; export enum XRankLeaderboardType { - FourModePeakAverage = 'FOUR_MODE_PEAK_AVERAGE', - UniqueWeaponsCount = 'UNIQUE_WEAPONS_COUNT', - PlacementsCount = 'PLACEMENTS_COUNT' + FourModePeakAverage = "FOUR_MODE_PEAK_AVERAGE", + UniqueWeaponsCount = "UNIQUE_WEAPONS_COUNT", + PlacementsCount = "PLACEMENTS_COUNT", } export enum RankedMode { - Sz = 'SZ', - Tc = 'TC', - Rm = 'RM', - Cb = 'CB' + Sz = "SZ", + Tc = "TC", + Rm = "RM", + Cb = "CB", } export type XRankPlacement = { - __typename?: 'XRankPlacement'; - id: Scalars['ID']; + __typename?: "XRankPlacement"; + id: Scalars["ID"]; /** Player's ID. Comes from their Nintendo Switch account. */ - playerId: Scalars['String']; + playerId: Scalars["String"]; /** Player's name at the time of the placement. */ - playerName: Scalars['String']; + playerName: Scalars["String"]; /** Player's ranking in the mode that month (1-500) */ - ranking: Scalars['Int']; - xPower: Scalars['Float']; - weapon: Scalars['String']; + ranking: Scalars["Int"]; + xPower: Scalars["Float"]; + weapon: Scalars["String"]; mode: RankedMode; - month: Scalars['Int']; - year: Scalars['Int']; + month: Scalars["Int"]; + year: Scalars["Int"]; user?: Maybe; }; export type PaginatedXRankPlacements = { - __typename?: 'PaginatedXRankPlacements'; + __typename?: "PaginatedXRankPlacements"; records: Array; - recordsCount: Scalars['Int']; - pageCount: Scalars['Int']; + recordsCount: Scalars["Int"]; + pageCount: Scalars["Int"]; }; export type XRankLeaderboardEntry = { - __typename?: 'XRankLeaderboardEntry'; - score: Scalars['Float']; - playerName: Scalars['String']; - playerId: Scalars['String']; + __typename?: "XRankLeaderboardEntry"; + score: Scalars["Float"]; + playerName: Scalars["String"]; + playerId: Scalars["String"]; user?: Maybe; }; export type PaginatedXRankLeaderboard = { - __typename?: 'PaginatedXRankLeaderboard'; + __typename?: "PaginatedXRankLeaderboard"; records: Array; - recordsCount: Scalars['Int']; - pageCount: Scalars['Int']; + recordsCount: Scalars["Int"]; + pageCount: Scalars["Int"]; }; export type DiscordIdAvatar = { - discordId: Scalars['String']; - avatar: Scalars['String']; + discordId: Scalars["String"]; + avatar: Scalars["String"]; }; /** The control sensitivity used in Splatoon 2 */ export type Sens = { - __typename?: 'Sens'; - stick?: Maybe; - motion?: Maybe; + __typename?: "Sens"; + stick?: Maybe; + motion?: Maybe; }; /** Represents user account. */ export type User = { - __typename?: 'User'; - id: Scalars['ID']; + __typename?: "User"; + id: Scalars["ID"]; /** User's username. This is the same as their name on Discord. Updated on every log-in. */ - username: Scalars['String']; + username: Scalars["String"]; /** Discord discriminator. For example with Sendou#0043 0043 is the discriminator. */ - discriminator: Scalars['String']; - avatar?: Maybe; - discord_id: Scalars['String']; - twitch_name?: Maybe; - twitter_name?: Maybe; - youtube_name?: Maybe; - youtube_id?: Maybe; - country?: Maybe; + discriminator: Scalars["String"]; + avatar?: Maybe; + discord_id: Scalars["String"]; + twitch_name?: Maybe; + twitter_name?: Maybe; + youtube_name?: Maybe; + youtube_id?: Maybe; + country?: Maybe; sens?: Maybe; - bio?: Maybe; - weapons?: Maybe>; - custom_url?: Maybe; - top500: Scalars['Boolean']; + bio?: Maybe; + weapons?: Maybe>; + custom_url?: Maybe; + top500: Scalars["Boolean"]; plus?: Maybe; }; export type NewUser = { - __typename?: 'NewUser'; - id: Scalars['ID']; - fullUsername: Scalars['String']; - discordId: Scalars['String']; - avatarUrl: Scalars['String']; + __typename?: "NewUser"; + id: Scalars["ID"]; + fullUsername: Scalars["String"]; + discordId: Scalars["String"]; + avatarUrl: Scalars["String"]; /** Location of user's profile */ - profilePath: Scalars['String']; + profilePath: Scalars["String"]; xRankPlacements?: Maybe>; }; export enum LinkType { - Discord = 'DISCORD', - Guide = 'GUIDE', - Misc = 'MISC' + Discord = "DISCORD", + Guide = "GUIDE", + Misc = "MISC", } export type Link = { - __typename?: 'Link'; - title: Scalars['String']; - url: Scalars['String']; - description: Scalars['String']; + __typename?: "Link"; + title: Scalars["String"]; + url: Scalars["String"]; + description: Scalars["String"]; type: LinkType; }; export type Year = { - __typename?: 'Year'; - year: Scalars['Int']; + __typename?: "Year"; + year: Scalars["Int"]; /** Array that has length of 13. 0 index = null. Other indexes correspond months e.g. index 1 = January. */ - SZ: Array>; + SZ: Array>; /** Array that has length of 13. 0 index = null. Other indexes correspond months e.g. index 1 = January. */ - TC: Array>; + TC: Array>; /** Array that has length of 13. 0 index = null. Other indexes correspond months e.g. index 1 = January. */ - RM: Array>; + RM: Array>; /** Array that has length of 13. 0 index = null. Other indexes correspond months e.g. index 1 = January. */ - CB: Array>; + CB: Array>; }; export type Trend = { - __typename?: 'Trend'; - weapon: Scalars['String']; + __typename?: "Trend"; + weapon: Scalars["String"]; counts: Array; }; export type Tournament = { - __typename?: 'Tournament'; - id: Scalars['ID']; - name: Scalars['String']; - bracket?: Maybe; + __typename?: "Tournament"; + id: Scalars["ID"]; + name: Scalars["String"]; + bracket?: Maybe; /** True if the tournament was a Japanese one */ - jpn: Scalars['Boolean']; + jpn: Scalars["Boolean"]; /** Link to the Google Sheet containing ganbawoomy's data */ - google_sheet_url?: Maybe; - date: Scalars['String']; + google_sheet_url?: Maybe; + date: Scalars["String"]; /** Top 5 of the most played weapons in the rounds recorded */ - popular_weapons: Array; - winning_team_name: Scalars['String']; - winning_team_players: Array; - winning_team_unique_ids?: Maybe>>; + popular_weapons: Array; + winning_team_name: Scalars["String"]; + winning_team_players: Array; + winning_team_unique_ids?: Maybe>>; rounds: Array; }; export type TournamentCollection = { - __typename?: 'TournamentCollection'; + __typename?: "TournamentCollection"; tournaments: Array>; - pageCount: Scalars['Int']; + pageCount: Scalars["Int"]; }; export type Round = { - __typename?: 'Round'; + __typename?: "Round"; tournament_id: Tournament; - stage: Scalars['String']; + stage: Scalars["String"]; /** SZ/TC/RM/CB/TW */ mode: Mode; /** E.g. Quarter-Finals */ - round_name: Scalars['String']; + round_name: Scalars["String"]; /** Order of the round. Smaller number means the round took place before. */ - round_number: Scalars['Int']; + round_number: Scalars["Int"]; /** Order the match in the round. Smaller number means the match took place before. */ - game_number: Scalars['Int']; - winning_team_name: Scalars['String']; - winning_team_players: Array; - winning_team_unique_ids: Array>; - winning_team_weapons: Array; + game_number: Scalars["Int"]; + winning_team_name: Scalars["String"]; + winning_team_players: Array; + winning_team_unique_ids: Array>; + winning_team_weapons: Array; winning_team_main_abilities: Array>>; winning_team_sub_abilities: Array>>; - losing_team_name: Scalars['String']; - losing_team_players: Array; - losing_team_unique_ids: Array>; - losing_team_weapons: Array; + losing_team_name: Scalars["String"]; + losing_team_players: Array; + losing_team_unique_ids: Array>; + losing_team_weapons: Array; losing_team_main_abilities: Array>>; losing_team_sub_abilities: Array>>; }; export enum Mode { - Sz = 'SZ', - Tc = 'TC', - Rm = 'RM', - Cb = 'CB', - Tw = 'TW' + Sz = "SZ", + Tc = "TC", + Rm = "RM", + Cb = "CB", + Tw = "TW", } export enum Region { - All = 'all', - Western = 'western', - Jpn = 'jpn' + All = "all", + Western = "western", + Jpn = "jpn", } export type DraftCupCollection = { - __typename?: 'DraftCupCollection'; + __typename?: "DraftCupCollection"; leaderboards: Array; tournaments: Array; }; export type DraftCupDetailCollection = { - __typename?: 'DraftCupDetailCollection'; + __typename?: "DraftCupDetailCollection"; tournament: DetailedTournament; matches: Array; }; export type DetailedTournamentInput = { - name: Scalars['String']; - bracket_url: Scalars['String']; - date: Scalars['String']; - top_3_team_names: Array; - top_3_discord_ids: Array>; - participant_discord_ids: Array; + name: Scalars["String"]; + bracket_url: Scalars["String"]; + date: Scalars["String"]; + top_3_team_names: Array; + top_3_discord_ids: Array>; + participant_discord_ids: Array; }; export type DetailedTournament = { - __typename?: 'DetailedTournament'; - name: Scalars['String']; - bracket_url: Scalars['String']; - date: Scalars['String']; - top_3_team_names: Array; + __typename?: "DetailedTournament"; + name: Scalars["String"]; + bracket_url: Scalars["String"]; + date: Scalars["String"]; + top_3_team_names: Array; top_3_discord_users: Array>; - participant_discord_ids: Array; + participant_discord_ids: Array; type: EventType; }; export type DetailedMatchInput = { - round_name: Scalars['String']; - round_number: Scalars['Int']; + round_name: Scalars["String"]; + round_number: Scalars["Int"]; map_details: Array; }; export type DetailedMatch = { - __typename?: 'DetailedMatch'; + __typename?: "DetailedMatch"; tournament_id: DetailedTournament; - round_name: Scalars['String']; - round_number: Scalars['Int']; + round_name: Scalars["String"]; + round_number: Scalars["Int"]; map_details: Array; type: EventType; }; export type DetailedMapInput = { - date?: Maybe; - hash?: Maybe; - stage: Scalars['String']; + date?: Maybe; + hash?: Maybe; + stage: Scalars["String"]; mode: Mode; - duration: Scalars['Int']; + duration: Scalars["Int"]; winners: TeamInfoInput; losers: TeamInfoInput; }; export type DetailedMap = { - __typename?: 'DetailedMap'; - date?: Maybe; - stage: Scalars['String']; + __typename?: "DetailedMap"; + date?: Maybe; + stage: Scalars["String"]; mode: Mode; /** Duration of the round in seconds */ - duration: Scalars['Int']; + duration: Scalars["Int"]; winners: TeamInfo; losers: TeamInfo; type: EventType; }; export type TeamInfoInput = { - team_name?: Maybe; + team_name?: Maybe; players: Array; - score: Scalars['Int']; + score: Scalars["Int"]; }; export type TeamInfo = { - __typename?: 'TeamInfo'; - team_name?: Maybe; + __typename?: "TeamInfo"; + team_name?: Maybe; players: Array; /** Score between 0 and 100 (KO) */ - score: Scalars['Int']; + score: Scalars["Int"]; }; export type DetailedPlayerInput = { - discord_id?: Maybe; - unique_id?: Maybe; - weapon: Scalars['String']; + discord_id?: Maybe; + unique_id?: Maybe; + weapon: Scalars["String"]; main_abilities: Array; sub_abilities: Array>>; - kills: Scalars['Int']; - assists: Scalars['Int']; - deaths: Scalars['Int']; - specials: Scalars['Int']; - paint: Scalars['Int']; - gear?: Maybe>; + kills: Scalars["Int"]; + assists: Scalars["Int"]; + deaths: Scalars["Int"]; + specials: Scalars["Int"]; + paint: Scalars["Int"]; + gear?: Maybe>; }; export type DetailedPlayer = { - __typename?: 'DetailedPlayer'; + __typename?: "DetailedPlayer"; discord_user?: Maybe; - unique_id?: Maybe; - weapon: Scalars['String']; + unique_id?: Maybe; + weapon: Scalars["String"]; main_abilities: Array; sub_abilities: Array>>; - kills: Scalars['Int']; - assists: Scalars['Int']; - deaths: Scalars['Int']; - specials: Scalars['Int']; - paint: Scalars['Int']; - gear?: Maybe>; + kills: Scalars["Int"]; + assists: Scalars["Int"]; + deaths: Scalars["Int"]; + specials: Scalars["Int"]; + paint: Scalars["Int"]; + gear?: Maybe>; }; export type Leaderboard = { - __typename?: 'Leaderboard'; + __typename?: "Leaderboard"; players: Array; type: EventType; }; export type TournamentPlayer = { - __typename?: 'TournamentPlayer'; + __typename?: "TournamentPlayer"; discord_user: User; /** Number of first places */ - first: Scalars['Int']; + first: Scalars["Int"]; /** Number of second places */ - second: Scalars['Int']; + second: Scalars["Int"]; /** Number of third places */ - third: Scalars['Int']; - score: Scalars['Int']; + third: Scalars["Int"]; + score: Scalars["Int"]; }; export type TournamentPlayerInput = { - discord_id: Scalars['String']; - first: Scalars['Int']; - second: Scalars['Int']; - third: Scalars['Int']; + discord_id: Scalars["String"]; + first: Scalars["Int"]; + second: Scalars["Int"]; + third: Scalars["Int"]; }; export type PlayerStat = { - __typename?: 'PlayerStat'; - discord_id: Scalars['String']; + __typename?: "PlayerStat"; + discord_id: Scalars["String"]; /** Weapon of the stat. ALL if stat is all weapon stats summed up */ - weapon: Scalars['String']; - kills: Scalars['Int']; - assists: Scalars['Int']; - deaths: Scalars['Int']; - specials: Scalars['Int']; - paint: Scalars['Int']; - seconds_played: Scalars['Int']; - games_played: Scalars['Int']; - wins: Scalars['Int']; + weapon: Scalars["String"]; + kills: Scalars["Int"]; + assists: Scalars["Int"]; + deaths: Scalars["Int"]; + specials: Scalars["Int"]; + paint: Scalars["Int"]; + seconds_played: Scalars["Int"]; + games_played: Scalars["Int"]; + wins: Scalars["Int"]; type: EventType; }; export enum EventType { - Draftone = 'DRAFTONE', - Drafttwo = 'DRAFTTWO', - Analyzer = 'ANALYZER' + Draftone = "DRAFTONE", + Drafttwo = "DRAFTTWO", + Analyzer = "ANALYZER", } export type CompetitiveFeedEvent = { - __typename?: 'CompetitiveFeedEvent'; - name: Scalars['String']; - date: Scalars['String']; - description: Scalars['String']; - poster_discord_id: Scalars['String']; + __typename?: "CompetitiveFeedEvent"; + name: Scalars["String"]; + date: Scalars["String"]; + description: Scalars["String"]; + poster_discord_id: Scalars["String"]; poster_discord_user: User; - message_discord_id: Scalars['String']; - message_url: Scalars['String']; - discord_invite_url: Scalars['String']; - picture_url?: Maybe; + message_discord_id: Scalars["String"]; + message_url: Scalars["String"]; + discord_invite_url: Scalars["String"]; + picture_url?: Maybe; }; export type CompetitiveFeedEventInput = { - name: Scalars['String']; - date: Scalars['String']; - description: Scalars['String']; - poster_discord_id: Scalars['String']; - poster_username: Scalars['String']; - poster_discriminator: Scalars['String']; - message_discord_id: Scalars['String']; - message_url: Scalars['String']; - discord_invite_url: Scalars['String']; - picture_url?: Maybe; + name: Scalars["String"]; + date: Scalars["String"]; + description: Scalars["String"]; + poster_discord_id: Scalars["String"]; + poster_username: Scalars["String"]; + poster_discriminator: Scalars["String"]; + message_discord_id: Scalars["String"]; + message_url: Scalars["String"]; + discord_invite_url: Scalars["String"]; + picture_url?: Maybe; }; export type UpdateCompetitiveFeedEventInput = { - name: Scalars['String']; - date: Scalars['String']; - description: Scalars['String']; - message_discord_id: Scalars['String']; - discord_invite_url: Scalars['String']; - picture_url?: Maybe; + name: Scalars["String"]; + date: Scalars["String"]; + description: Scalars["String"]; + message_discord_id: Scalars["String"]; + discord_invite_url: Scalars["String"]; + picture_url?: Maybe; }; export enum CanVc { - Yes = 'YES', - Usually = 'USUALLY', - Sometimes = 'SOMETIMES', - No = 'NO' + Yes = "YES", + Usually = "USUALLY", + Sometimes = "SOMETIMES", + No = "NO", } export enum Playstyle { - Frontline = 'FRONTLINE', - Midline = 'MIDLINE', - Backline = 'BACKLINE' + Frontline = "FRONTLINE", + Midline = "MIDLINE", + Backline = "BACKLINE", } export type FaMatches = { - __typename?: 'FAMatches'; + __typename?: "FAMatches"; matched_discord_users: Array; - number_of_likes_received: Scalars['Int']; - liked_discord_ids: Array; + number_of_likes_received: Scalars["Int"]; + liked_discord_ids: Array; }; /** Represents a free agent post of a player looking for a team */ export type FaPost = { - __typename?: 'FAPost'; - id: Scalars['ID']; - discord_id: Scalars['String']; + __typename?: "FAPost"; + id: Scalars["ID"]; + discord_id: Scalars["String"]; can_vc: CanVc; playstyles?: Maybe>; /** How active is the free agent */ - activity?: Maybe; + activity?: Maybe; /** What kind of team they are looking for */ - looking_for?: Maybe; + looking_for?: Maybe; /** Teams or other past experience in competitive */ - past_experience?: Maybe; + past_experience?: Maybe; /** Free word about anything else */ - description?: Maybe; + description?: Maybe; discord_user: User; - hidden: Scalars['Boolean']; - createdAt: Scalars['String']; + hidden: Scalars["Boolean"]; + createdAt: Scalars["String"]; }; /** +1 or +2 LFG server on Discord */ export enum PlusServer { - One = 'ONE', - Two = 'TWO' + One = "ONE", + Two = "TWO", } /** Region used for voting */ export enum PlusRegion { - Eu = 'EU', - Na = 'NA' + Eu = "EU", + Na = "NA", } export type PlusGeneralInfo = { - __typename?: 'PlusGeneralInfo'; - voting_ends?: Maybe; - voter_count: Scalars['Int']; - eligible_voters: Scalars['Int']; + __typename?: "PlusGeneralInfo"; + voting_ends?: Maybe; + voter_count: Scalars["Int"]; + eligible_voters: Scalars["Int"]; }; export type Suggested = { - __typename?: 'Suggested'; - discord_id: Scalars['String']; + __typename?: "Suggested"; + discord_id: Scalars["String"]; discord_user: User; - suggester_discord_id: Scalars['String']; + suggester_discord_id: Scalars["String"]; suggester_discord_user: User; plus_region: PlusRegion; plus_server: PlusServer; - description: Scalars['String']; - createdAt: Scalars['String']; + description: Scalars["String"]; + createdAt: Scalars["String"]; }; /** Status with +1 and +2 related things */ export type PlusStatus = { - __typename?: 'PlusStatus'; + __typename?: "PlusStatus"; membership_status?: Maybe; vouch_status?: Maybe; plus_region?: Maybe; can_vouch?: Maybe; - voucher_discord_id?: Maybe; + voucher_discord_id?: Maybe; voucher_user?: Maybe; - can_vouch_again_after?: Maybe; + can_vouch_again_after?: Maybe; }; export type VoteInput = { - discord_id: Scalars['String']; - score: Scalars['Int']; + discord_id: Scalars["String"]; + score: Scalars["Int"]; }; export type VotedPerson = { - __typename?: 'VotedPerson'; - discord_id: Scalars['String']; - voter_discord_id: Scalars['String']; - plus_server: Scalars['String']; - month: Scalars['Int']; - year: Scalars['Int']; + __typename?: "VotedPerson"; + discord_id: Scalars["String"]; + voter_discord_id: Scalars["String"]; + plus_server: Scalars["String"]; + month: Scalars["Int"]; + year: Scalars["Int"]; /** Voting result -2 to +2 (-1 to +1 cross-region) */ - score: Scalars['Int']; - stale: Scalars['Boolean']; + score: Scalars["Int"]; + stale: Scalars["Boolean"]; }; export type Score = { - __typename?: 'Score'; - total: Scalars['Float']; - eu_count?: Maybe>>; - na_count?: Maybe>>; + __typename?: "Score"; + total: Scalars["Float"]; + eu_count?: Maybe>>; + na_count?: Maybe>>; }; /** Voting result of a player */ export type Summary = { - __typename?: 'Summary'; - discord_id: Scalars['String']; + __typename?: "Summary"; + discord_id: Scalars["String"]; discord_user: User; plus_server: PlusServer; - month: Scalars['Int']; - year: Scalars['Int']; - suggested?: Maybe; - vouched?: Maybe; + month: Scalars["Int"]; + year: Scalars["Int"]; + suggested?: Maybe; + vouched?: Maybe; /** Average of all scores of the voters for the month 0% to 100% */ score: Score; - new: Scalars['Boolean']; + new: Scalars["Boolean"]; }; export type UsersForVoting = { - __typename?: 'UsersForVoting'; + __typename?: "UsersForVoting"; users: Array; suggested: Array; votes: Array; }; export type Stats = { - __typename?: 'Stats'; - build_count: Scalars['Int']; - fa_count: Scalars['Int']; - user_count: Scalars['Int']; - tournament_count: Scalars['Int']; + __typename?: "Stats"; + build_count: Scalars["Int"]; + fa_count: Scalars["Int"]; + user_count: Scalars["Int"]; + tournament_count: Scalars["Int"]; }; export type Banner = { - __typename?: 'Banner'; - id: Scalars['ID']; - logoUrl: Scalars['String']; - description: Scalars['String']; - link: Scalars['String']; - textColor: Scalars['String']; - bgColor: Scalars['String']; - staleAfter: Scalars['String']; + __typename?: "Banner"; + id: Scalars["ID"]; + logoUrl: Scalars["String"]; + description: Scalars["String"]; + link: Scalars["String"]; + textColor: Scalars["String"]; + bgColor: Scalars["String"]; + staleAfter: Scalars["String"]; }; -export type UserLeanFragment = ( - { __typename?: 'NewUser' } - & Pick -); +export type UserLeanFragment = { __typename?: "NewUser" } & Pick< + NewUser, + "profilePath" | "fullUsername" | "avatarUrl" +>; export type UpdatePlayerIdMutationVariables = Exact<{ - playerId: Scalars['String']; - discordId: Scalars['String']; + playerId: Scalars["String"]; + discordId: Scalars["String"]; }>; - -export type UpdatePlayerIdMutation = ( - { __typename?: 'Mutation' } - & Pick -); +export type UpdatePlayerIdMutation = { __typename?: "Mutation" } & Pick< + Mutation, + "updatePlayerId" +>; export type GetPeakXPowerLeaderboardQueryVariables = Exact<{ - page?: Maybe; - weapon?: Maybe; + page?: Maybe; + weapon?: Maybe; }>; - -export type GetPeakXPowerLeaderboardQuery = ( - { __typename?: 'Query' } - & { getPeakXPowerLeaderboard: ( - { __typename?: 'PaginatedXRankPlacements' } - & Pick - & { records: Array<( - { __typename?: 'XRankPlacement' } - & Pick - & { user?: Maybe<( - { __typename?: 'NewUser' } - & UserLeanFragment - )> } - )> } - ) } -); +export type GetPeakXPowerLeaderboardQuery = { __typename?: "Query" } & { + getPeakXPowerLeaderboard: { __typename?: "PaginatedXRankPlacements" } & Pick< + PaginatedXRankPlacements, + "recordsCount" | "pageCount" + > & { + records: Array< + { __typename?: "XRankPlacement" } & Pick< + XRankPlacement, + | "id" + | "playerId" + | "playerName" + | "xPower" + | "weapon" + | "mode" + | "month" + | "year" + > & { user?: Maybe<{ __typename?: "NewUser" } & UserLeanFragment> } + >; + }; +}; export type GetUsersXRankPlacementsQueryVariables = Exact<{ - identifier: Scalars['String']; + identifier: Scalars["String"]; }>; - -export type GetUsersXRankPlacementsQuery = ( - { __typename?: 'Query' } - & { getUserByIdentifier?: Maybe<( - { __typename?: 'NewUser' } - & { xRankPlacements?: Maybe - )>> } - )> } -); +export type GetUsersXRankPlacementsQuery = { __typename?: "Query" } & { + getUserByIdentifier?: Maybe< + { __typename?: "NewUser" } & { + xRankPlacements?: Maybe< + Array< + { __typename?: "XRankPlacement" } & Pick< + XRankPlacement, + "id" | "weapon" | "ranking" | "mode" | "xPower" | "month" | "year" + > + > + >; + } + >; +}; export type GetXRankLeaderboardQueryVariables = Exact<{ - page?: Maybe; + page?: Maybe; type: XRankLeaderboardType; }>; - -export type GetXRankLeaderboardQuery = ( - { __typename?: 'Query' } - & { getXRankLeaderboard: ( - { __typename?: 'PaginatedXRankLeaderboard' } - & Pick - & { records: Array<( - { __typename?: 'XRankLeaderboardEntry' } - & Pick - & { user?: Maybe<( - { __typename?: 'NewUser' } - & UserLeanFragment - )> } - )> } - ) } -); +export type GetXRankLeaderboardQuery = { __typename?: "Query" } & { + getXRankLeaderboard: { __typename?: "PaginatedXRankLeaderboard" } & Pick< + PaginatedXRankLeaderboard, + "pageCount" | "recordsCount" + > & { + records: Array< + { __typename?: "XRankLeaderboardEntry" } & Pick< + XRankLeaderboardEntry, + "playerName" | "playerId" | "score" + > & { user?: Maybe<{ __typename?: "NewUser" } & UserLeanFragment> } + >; + }; +}; export type GetXRankPlacementsQueryVariables = Exact<{ - page?: Maybe; + page?: Maybe; filter?: Maybe; }>; - -export type GetXRankPlacementsQuery = ( - { __typename?: 'Query' } - & { getXRankPlacements: ( - { __typename?: 'PaginatedXRankPlacements' } - & Pick - & { records: Array<( - { __typename?: 'XRankPlacement' } - & Pick - & { user?: Maybe<( - { __typename?: 'NewUser' } - & UserLeanFragment - )> } - )> } - ) } -); +export type GetXRankPlacementsQuery = { __typename?: "Query" } & { + getXRankPlacements: { __typename?: "PaginatedXRankPlacements" } & Pick< + PaginatedXRankPlacements, + "pageCount" | "recordsCount" + > & { + records: Array< + { __typename?: "XRankPlacement" } & Pick< + XRankPlacement, + | "id" + | "playerName" + | "playerId" + | "xPower" + | "weapon" + | "ranking" + | "mode" + | "month" + | "year" + > & { user?: Maybe<{ __typename?: "NewUser" } & UserLeanFragment> } + >; + }; +}; export const UserLeanFragmentDoc = gql` - fragment UserLean on NewUser { - profilePath - fullUsername - avatarUrl -} - `; + fragment UserLean on NewUser { + profilePath + fullUsername + avatarUrl + } +`; export const UpdatePlayerIdDocument = gql` - mutation updatePlayerId($playerId: String!, $discordId: String!) { - updatePlayerId(playerId: $playerId, discordId: $discordId) -} - `; -export type UpdatePlayerIdMutationFn = Apollo.MutationFunction; + mutation updatePlayerId($playerId: String!, $discordId: String!) { + updatePlayerId(playerId: $playerId, discordId: $discordId) + } +`; +export type UpdatePlayerIdMutationFn = Apollo.MutationFunction< + UpdatePlayerIdMutation, + UpdatePlayerIdMutationVariables +>; /** * __useUpdatePlayerIdMutation__ @@ -1083,33 +1062,49 @@ export type UpdatePlayerIdMutationFn = Apollo.MutationFunction) { - return Apollo.useMutation(UpdatePlayerIdDocument, baseOptions); - } -export type UpdatePlayerIdMutationHookResult = ReturnType; -export type UpdatePlayerIdMutationResult = Apollo.MutationResult; -export type UpdatePlayerIdMutationOptions = Apollo.BaseMutationOptions; -export const GetPeakXPowerLeaderboardDocument = gql` - query getPeakXPowerLeaderboard($page: Int, $weapon: String) { - getPeakXPowerLeaderboard(page: $page, weapon: $weapon) { - records { - id - playerId - playerName - xPower - weapon - mode - month - year - user { - ...UserLean - } - } - recordsCount - pageCount - } +export function useUpdatePlayerIdMutation( + baseOptions?: Apollo.MutationHookOptions< + UpdatePlayerIdMutation, + UpdatePlayerIdMutationVariables + > +) { + return Apollo.useMutation< + UpdatePlayerIdMutation, + UpdatePlayerIdMutationVariables + >(UpdatePlayerIdDocument, baseOptions); } - ${UserLeanFragmentDoc}`; +export type UpdatePlayerIdMutationHookResult = ReturnType< + typeof useUpdatePlayerIdMutation +>; +export type UpdatePlayerIdMutationResult = Apollo.MutationResult< + UpdatePlayerIdMutation +>; +export type UpdatePlayerIdMutationOptions = Apollo.BaseMutationOptions< + UpdatePlayerIdMutation, + UpdatePlayerIdMutationVariables +>; +export const GetPeakXPowerLeaderboardDocument = gql` + query getPeakXPowerLeaderboard($page: Int, $weapon: String) { + getPeakXPowerLeaderboard(page: $page, weapon: $weapon) { + records { + id + playerId + playerName + xPower + weapon + mode + month + year + user { + ...UserLean + } + } + recordsCount + pageCount + } + } + ${UserLeanFragmentDoc} +`; /** * __useGetPeakXPowerLeaderboardQuery__ @@ -1128,30 +1123,53 @@ export const GetPeakXPowerLeaderboardDocument = gql` * }, * }); */ -export function useGetPeakXPowerLeaderboardQuery(baseOptions?: Apollo.QueryHookOptions) { - return Apollo.useQuery(GetPeakXPowerLeaderboardDocument, baseOptions); - } -export function useGetPeakXPowerLeaderboardLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { - return Apollo.useLazyQuery(GetPeakXPowerLeaderboardDocument, baseOptions); - } -export type GetPeakXPowerLeaderboardQueryHookResult = ReturnType; -export type GetPeakXPowerLeaderboardLazyQueryHookResult = ReturnType; -export type GetPeakXPowerLeaderboardQueryResult = Apollo.QueryResult; +export function useGetPeakXPowerLeaderboardQuery( + baseOptions?: Apollo.QueryHookOptions< + GetPeakXPowerLeaderboardQuery, + GetPeakXPowerLeaderboardQueryVariables + > +) { + return Apollo.useQuery< + GetPeakXPowerLeaderboardQuery, + GetPeakXPowerLeaderboardQueryVariables + >(GetPeakXPowerLeaderboardDocument, baseOptions); +} +export function useGetPeakXPowerLeaderboardLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + GetPeakXPowerLeaderboardQuery, + GetPeakXPowerLeaderboardQueryVariables + > +) { + return Apollo.useLazyQuery< + GetPeakXPowerLeaderboardQuery, + GetPeakXPowerLeaderboardQueryVariables + >(GetPeakXPowerLeaderboardDocument, baseOptions); +} +export type GetPeakXPowerLeaderboardQueryHookResult = ReturnType< + typeof useGetPeakXPowerLeaderboardQuery +>; +export type GetPeakXPowerLeaderboardLazyQueryHookResult = ReturnType< + typeof useGetPeakXPowerLeaderboardLazyQuery +>; +export type GetPeakXPowerLeaderboardQueryResult = Apollo.QueryResult< + GetPeakXPowerLeaderboardQuery, + GetPeakXPowerLeaderboardQueryVariables +>; export const GetUsersXRankPlacementsDocument = gql` - query getUsersXRankPlacements($identifier: String!) { - getUserByIdentifier(identifier: $identifier) { - xRankPlacements { - id - weapon - ranking - mode - xPower - month - year + query getUsersXRankPlacements($identifier: String!) { + getUserByIdentifier(identifier: $identifier) { + xRankPlacements { + id + weapon + ranking + mode + xPower + month + year + } } } -} - `; +`; /** * __useGetUsersXRankPlacementsQuery__ @@ -1169,31 +1187,55 @@ export const GetUsersXRankPlacementsDocument = gql` * }, * }); */ -export function useGetUsersXRankPlacementsQuery(baseOptions?: Apollo.QueryHookOptions) { - return Apollo.useQuery(GetUsersXRankPlacementsDocument, baseOptions); - } -export function useGetUsersXRankPlacementsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { - return Apollo.useLazyQuery(GetUsersXRankPlacementsDocument, baseOptions); - } -export type GetUsersXRankPlacementsQueryHookResult = ReturnType; -export type GetUsersXRankPlacementsLazyQueryHookResult = ReturnType; -export type GetUsersXRankPlacementsQueryResult = Apollo.QueryResult; -export const GetXRankLeaderboardDocument = gql` - query getXRankLeaderboard($page: Int, $type: XRankLeaderboardType!) { - getXRankLeaderboard(page: $page, type: $type) { - records { - playerName - playerId - score - user { - ...UserLean - } - } - pageCount - recordsCount - } +export function useGetUsersXRankPlacementsQuery( + baseOptions?: Apollo.QueryHookOptions< + GetUsersXRankPlacementsQuery, + GetUsersXRankPlacementsQueryVariables + > +) { + return Apollo.useQuery< + GetUsersXRankPlacementsQuery, + GetUsersXRankPlacementsQueryVariables + >(GetUsersXRankPlacementsDocument, baseOptions); } - ${UserLeanFragmentDoc}`; +export function useGetUsersXRankPlacementsLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + GetUsersXRankPlacementsQuery, + GetUsersXRankPlacementsQueryVariables + > +) { + return Apollo.useLazyQuery< + GetUsersXRankPlacementsQuery, + GetUsersXRankPlacementsQueryVariables + >(GetUsersXRankPlacementsDocument, baseOptions); +} +export type GetUsersXRankPlacementsQueryHookResult = ReturnType< + typeof useGetUsersXRankPlacementsQuery +>; +export type GetUsersXRankPlacementsLazyQueryHookResult = ReturnType< + typeof useGetUsersXRankPlacementsLazyQuery +>; +export type GetUsersXRankPlacementsQueryResult = Apollo.QueryResult< + GetUsersXRankPlacementsQuery, + GetUsersXRankPlacementsQueryVariables +>; +export const GetXRankLeaderboardDocument = gql` + query getXRankLeaderboard($page: Int, $type: XRankLeaderboardType!) { + getXRankLeaderboard(page: $page, type: $type) { + records { + playerName + playerId + score + user { + ...UserLean + } + } + pageCount + recordsCount + } + } + ${UserLeanFragmentDoc} +`; /** * __useGetXRankLeaderboardQuery__ @@ -1212,37 +1254,61 @@ export const GetXRankLeaderboardDocument = gql` * }, * }); */ -export function useGetXRankLeaderboardQuery(baseOptions?: Apollo.QueryHookOptions) { - return Apollo.useQuery(GetXRankLeaderboardDocument, baseOptions); - } -export function useGetXRankLeaderboardLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { - return Apollo.useLazyQuery(GetXRankLeaderboardDocument, baseOptions); - } -export type GetXRankLeaderboardQueryHookResult = ReturnType; -export type GetXRankLeaderboardLazyQueryHookResult = ReturnType; -export type GetXRankLeaderboardQueryResult = Apollo.QueryResult; -export const GetXRankPlacementsDocument = gql` - query getXRankPlacements($page: Int, $filter: GetXRankPlacementsInput) { - getXRankPlacements(page: $page, filter: $filter) { - records { - id - playerName - playerId - xPower - weapon - ranking - mode - month - year - user { - ...UserLean - } - } - pageCount - recordsCount - } +export function useGetXRankLeaderboardQuery( + baseOptions?: Apollo.QueryHookOptions< + GetXRankLeaderboardQuery, + GetXRankLeaderboardQueryVariables + > +) { + return Apollo.useQuery< + GetXRankLeaderboardQuery, + GetXRankLeaderboardQueryVariables + >(GetXRankLeaderboardDocument, baseOptions); } - ${UserLeanFragmentDoc}`; +export function useGetXRankLeaderboardLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + GetXRankLeaderboardQuery, + GetXRankLeaderboardQueryVariables + > +) { + return Apollo.useLazyQuery< + GetXRankLeaderboardQuery, + GetXRankLeaderboardQueryVariables + >(GetXRankLeaderboardDocument, baseOptions); +} +export type GetXRankLeaderboardQueryHookResult = ReturnType< + typeof useGetXRankLeaderboardQuery +>; +export type GetXRankLeaderboardLazyQueryHookResult = ReturnType< + typeof useGetXRankLeaderboardLazyQuery +>; +export type GetXRankLeaderboardQueryResult = Apollo.QueryResult< + GetXRankLeaderboardQuery, + GetXRankLeaderboardQueryVariables +>; +export const GetXRankPlacementsDocument = gql` + query getXRankPlacements($page: Int, $filter: GetXRankPlacementsInput) { + getXRankPlacements(page: $page, filter: $filter) { + records { + id + playerName + playerId + xPower + weapon + ranking + mode + month + year + user { + ...UserLean + } + } + pageCount + recordsCount + } + } + ${UserLeanFragmentDoc} +`; /** * __useGetXRankPlacementsQuery__ @@ -1261,12 +1327,35 @@ export const GetXRankPlacementsDocument = gql` * }, * }); */ -export function useGetXRankPlacementsQuery(baseOptions?: Apollo.QueryHookOptions) { - return Apollo.useQuery(GetXRankPlacementsDocument, baseOptions); - } -export function useGetXRankPlacementsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions) { - return Apollo.useLazyQuery(GetXRankPlacementsDocument, baseOptions); - } -export type GetXRankPlacementsQueryHookResult = ReturnType; -export type GetXRankPlacementsLazyQueryHookResult = ReturnType; -export type GetXRankPlacementsQueryResult = Apollo.QueryResult; \ No newline at end of file +export function useGetXRankPlacementsQuery( + baseOptions?: Apollo.QueryHookOptions< + GetXRankPlacementsQuery, + GetXRankPlacementsQueryVariables + > +) { + return Apollo.useQuery< + GetXRankPlacementsQuery, + GetXRankPlacementsQueryVariables + >(GetXRankPlacementsDocument, baseOptions); +} +export function useGetXRankPlacementsLazyQuery( + baseOptions?: Apollo.LazyQueryHookOptions< + GetXRankPlacementsQuery, + GetXRankPlacementsQueryVariables + > +) { + return Apollo.useLazyQuery< + GetXRankPlacementsQuery, + GetXRankPlacementsQueryVariables + >(GetXRankPlacementsDocument, baseOptions); +} +export type GetXRankPlacementsQueryHookResult = ReturnType< + typeof useGetXRankPlacementsQuery +>; +export type GetXRankPlacementsLazyQueryHookResult = ReturnType< + typeof useGetXRankPlacementsLazyQuery +>; +export type GetXRankPlacementsQueryResult = Apollo.QueryResult< + GetXRankPlacementsQuery, + GetXRankPlacementsQueryVariables +>; diff --git a/old/frontend-react/src/hooks/useAbilityEffects.ts b/old/frontend-react/src/hooks/useAbilityEffects.ts index 7c3a2166e..0b576e93f 100644 --- a/old/frontend-react/src/hooks/useAbilityEffects.ts +++ b/old/frontend-react/src/hooks/useAbilityEffects.ts @@ -2,14 +2,11 @@ import { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; import { Ability, - - - - AnalyzerBuild, Build, - - - - SpecialWeapon, SubWeapon, Weapon + AnalyzerBuild, + Build, + SpecialWeapon, + SubWeapon, + Weapon, } from "../types"; import abilityJson from "../utils/abilityData.json"; import { getEffect } from "../utils/getAbilityEffect"; @@ -354,13 +351,15 @@ export default function useAbilityEffects( const tank = build.weapon.includes("Jr.") ? 1.1 : 1; let percentage = parseFloat( - (((effect[0] * inkConsumption) / tank) * 100).toFixed(2)) + (((effect[0] * inkConsumption) / tank) * 100).toFixed(2) + ); const morePrecisePercentage = parseFloat( - (((effect[0] * inkConsumption) / tank) * 100).toFixed(5)) + (((effect[0] * inkConsumption) / tank) * 100).toFixed(5) + ); if (percentage === 50 && morePrecisePercentage > 50) { - percentage = 50.01 + percentage = 50.01; } const subWeaponTranslated = t(`game;${subWeapon}`); diff --git a/old/frontend-react/src/hooks/useTheme.ts b/old/frontend-react/src/hooks/useTheme.ts index fc8a800ad..23effed53 100644 --- a/old/frontend-react/src/hooks/useTheme.ts +++ b/old/frontend-react/src/hooks/useTheme.ts @@ -3,10 +3,8 @@ import useLocalStorage from "@rehooks/local-storage"; import { ThemeColor } from "../types"; export function useTheme(): Parameters[0] { - const { colorMode } = useColorMode() - const defaultThemeColor = colorMode === "light" - ? "pink" - : "orange"; + const { colorMode } = useColorMode(); + const defaultThemeColor = colorMode === "light" ? "pink" : "orange"; const [themeColor = defaultThemeColor] = useLocalStorage( "colorPreference" ); @@ -22,10 +20,10 @@ export function useTheme(): Parameters[0] { },*/ Button: { defaultProps: { - colorScheme: themeColor - } - } + colorScheme: themeColor, + }, + }, }, - config: { useSystemColorMode: true } - } as const -} \ No newline at end of file + config: { useSystemColorMode: true }, + } as const; +} diff --git a/old/frontend-react/src/utils/abilityData.json b/old/frontend-react/src/utils/abilityData.json index 6852ca361..e37f82468 100644 --- a/old/frontend-react/src/utils/abilityData.json +++ b/old/frontend-react/src/utils/abilityData.json @@ -1 +1,201 @@ -{"Bomb Defense Up DX": {"BurstDamageRt_Main_High": 1.0, "BurstDamageRt_Main_Low": 1.0, "BurstDamageRt_Main_Mid": 1.0, "BurstDamageRt_Special_High": 0.65, "BurstDamageRt_Special_Low": 1.0, "BurstDamageRt_Special_Mid": 0.825, "BurstDamageRt_SubH_High": 0.5, "BurstDamageRt_SubH_Low": 1.0, "BurstDamageRt_SubH_Mid": 0.75, "BurstDamageRt_SubL_High": 0.6, "BurstDamageRt_SubL_Low": 1.0, "BurstDamageRt_SubL_Mid": 0.8, "MarkingTime_ShortRt_High": 0.1, "MarkingTime_ShortRt_Low": 1.0, "MarkingTime_ShortRt_Mid": 0.43, "MarkingTime_ShortRt_Thermal_High": 1.0, "MarkingTime_ShortRt_Thermal_Low": 1.0, "MarkingTime_ShortRt_Thermal_Mid": 1.0, "MarkingTime_ShortRt_Trap_High": 0.1, "MarkingTime_ShortRt_Trap_Low": 1.0, "MarkingTime_ShortRt_Trap_Mid": 0.55}, "Sub Power Up": {"BombThrow_VelZ_BombPiyo_High": 18.4, "BombThrow_VelZ_BombPiyo_Low": 13.6, "BombThrow_VelZ_BombPiyo_Mid": 16.0, "BombThrow_VelZ_BombTako_High": 18.4, "BombThrow_VelZ_BombTako_Low": 13.6, "BombThrow_VelZ_BombTako_Mid": 16.0, "BombThrow_VelZ_High": 16.8, "BombThrow_VelZ_Low": 11.2, "BombThrow_VelZ_Mid": 14.0, "BombThrow_VelZ_PointSensor_High": 18.7, "BombThrow_VelZ_PointSensor_Low": 13.8, "BombThrow_VelZ_PointSensor_Mid": 16.4, "SubRt_Effect_High": 0.0, "SubRt_Effect_Low": 0.0, "SubRt_Effect_Mid": 0.0}, "Run Speed Up": {"MoveVelRt_Human_ShotA_High": 1.2, "MoveVelRt_Human_ShotA_Low": 1.0, "MoveVelRt_Human_ShotA_Mid": 1.1, "MoveVelRt_Human_ShotB_High": 1.25, "MoveVelRt_Human_ShotB_Low": 1.0, "MoveVelRt_Human_ShotB_Mid": 1.125, "MoveVelRt_Human_ShotC_High": 1.3, "MoveVelRt_Human_ShotC_Low": 1.0, "MoveVelRt_Human_ShotC_Mid": 1.15, "MoveVelRt_Human_ShotD_High": 1.35, "MoveVelRt_Human_ShotD_Low": 1.0, "MoveVelRt_Human_ShotD_Mid": 1.175, "MoveVelRt_Human_ShotE_High": 1.4, "MoveVelRt_Human_ShotE_Low": 1.0, "MoveVelRt_Human_ShotE_Mid": 1.2, "MoveVel_Human_BigWeapon_High": 1.44, "MoveVel_Human_BigWeapon_Low": 0.88, "MoveVel_Human_BigWeapon_Mid": 1.16, "MoveVel_Human_High": 1.44, "MoveVel_Human_Low": 0.96, "MoveVel_Human_Mid": 1.2, "MoveVel_Human_ShortWeapon_High": 1.44, "MoveVel_Human_ShortWeapon_Low": 1.04, "MoveVel_Human_ShortWeapon_Mid": 1.24}, "Ink Recovery Up": {"RecoverFullFrm_Ink_High": 117.0, "RecoverFullFrm_Ink_Low": 180.0, "RecoverFullFrm_Ink_Mid": 148.5, "RecoverNrmlFrm_Ink_High": 220.0, "RecoverNrmlFrm_Ink_Low": 600.0, "RecoverNrmlFrm_Ink_Mid": 410.0}, "Quick Super Jump": {"DokanWarp_MoveFrm_High": 96.6, "DokanWarp_MoveFrm_Low": 138.0, "DokanWarp_MoveFrm_Mid": 132.3, "DokanWarp_TameFrm_High": 20.0, "DokanWarp_TameFrm_Low": 80.0, "DokanWarp_TameFrm_Mid": 35.0}, "Ink Saver (Main)": {"ConsumeRt_Main_High": 0.55, "ConsumeRt_Main_High_High": 0.5, "ConsumeRt_Main_High_Low": 1.0, "ConsumeRt_Main_High_Mid": 0.7, "ConsumeRt_Main_Low": 1.0, "ConsumeRt_Main_Low_High": 0.6, "ConsumeRt_Main_Low_Low": 1.0, "ConsumeRt_Main_Low_Mid": 0.8, "ConsumeRt_Main_Mid": 0.775}, "Main Power Up": {"MarkingTime_ShortRt_High": 0.1, "MarkingTime_ShortRt_Low": 1.0, "MarkingTime_ShortRt_Mid": 0.55, "MarkingTime_ShortRt_Thermal_High": 1.0, "MarkingTime_ShortRt_Thermal_Low": 1.0, "MarkingTime_ShortRt_Thermal_Mid": 1.0, "MarkingTime_ShortRt_Trap_High": 0.1, "MarkingTime_ShortRt_Trap_Low": 1.0, "MarkingTime_ShortRt_Trap_Mid": 0.55, "Silhouette_DistFar_High": 290.0, "Silhouette_DistFar_Low": 170.0, "Silhouette_DistFar_Mid": 230.0, "Silhouette_DistNear_High": 250.0, "Silhouette_DistNear_Low": 130.0, "Silhouette_DistNear_Mid": 190.0}, "Ink Resistance Up": {"OpInk_Armor_HP_High": 39.0, "OpInk_Armor_HP_Low": 0.0, "OpInk_Armor_HP_Mid": 26.0, "OpInk_Damage_High": 0.0015, "OpInk_Damage_Lmt_High": 0.2, "OpInk_Damage_Lmt_Low": 0.4, "OpInk_Damage_Lmt_Mid": 0.3, "OpInk_Damage_Low": 0.003, "OpInk_Damage_Mid": 0.00225, "OpInk_JumpGnd_High": 1.1, "OpInk_JumpGnd_Mid": 0.98, "OpInk_JumpGnd_Msn_High": 1.05, "OpInk_JumpGnd_Msn_Low": 0.6, "OpInk_JumpGnd_Msn_Mid": 0.825, "OpInk_VelGnd_High": 0.768, "OpInk_VelGnd_Low": 0.24, "OpInk_VelGnd_Mid": 0.5568, "OpInk_VelGnd_ShotK_High": 1.0, "OpInk_VelGnd_ShotK_Low": 0.5, "OpInk_VelGnd_ShotK_Mid": 0.75, "OpInk_VelGnd_Shot_High": 0.42, "OpInk_VelGnd_Shot_Low": 0.12, "OpInk_VelGnd_Shot_Mid": 0.33, "mAreaParamsL": 0.8}, "Special Saver": {"SpecialRt_Restart_High": 1.0, "SpecialRt_Restart_Low": 0.5, "SpecialRt_Restart_Mid": 0.8, "SpecialRt_Restart_SuperLanding_High": 1.25, "SpecialRt_Restart_SuperLanding_Low": 0.75, "SpecialRt_Restart_SuperLanding_Mid": 1.05}, "Quick Respawn": {"Dying_AroudFrm_High": 30.0, "Dying_AroudFrm_Low": 90.0, "Dying_AroudFrm_Mid": 60.0, "Dying_ChaseFrm_High": 90.0, "Dying_ChaseFrm_Low": 270.0, "Dying_ChaseFrm_Mid": 180.0}, "Special Charge Up": {"SpecialRt_Charge_High": 1.3, "SpecialRt_Charge_Low": 1.0, "SpecialRt_Charge_Mid": 1.15}, "Special Power Up": {"SpecialRt_Keep_High": 1.4, "SpecialRt_Keep_Long_High": 1.6, "SpecialRt_Keep_Long_Low": 1.0, "SpecialRt_Keep_Long_Mid": 1.3, "SpecialRt_Keep_Low": 1.0, "SpecialRt_Keep_Mid": 1.2, "SpecialRt_Keep_NoShot_High": 0.0, "SpecialRt_Keep_NoShot_Low": 1.0, "SpecialRt_Keep_NoShot_Mid": 0.5}, "Swim Speed Up": {"MoveVel_Stealth_BigWeapon_High": 2.4, "MoveVel_Stealth_BigWeapon_Low": 1.728, "MoveVel_Stealth_BigWeapon_Mid": 2.16, "MoveVel_Stealth_High": 2.4, "MoveVel_Stealth_Low": 1.92, "MoveVel_Stealth_Mid": 2.16, "MoveVel_Stealth_ShortWeapon_High": 2.4, "MoveVel_Stealth_ShortWeapon_Low": 2.016, "MoveVel_Stealth_ShortWeapon_Mid": 2.208}, "Ink Saver (Sub)": {"ConsumeRt_Sub_A_High": 0.8, "ConsumeRt_Sub_A_Low": 1.0, "ConsumeRt_Sub_A_Mid": 0.9, "ConsumeRt_Sub_B_High": 0.7, "ConsumeRt_Sub_B_Low": 1.0, "ConsumeRt_Sub_B_Mid": 0.85, "ConsumeRt_Sub_C_High": 0.65, "ConsumeRt_Sub_C_Low": 1.0, "ConsumeRt_Sub_C_Mid": 0.825, "ConsumeRt_Sub_D_High": 0.6, "ConsumeRt_Sub_D_Low": 1.0, "ConsumeRt_Sub_D_Mid": 0.8, "ConsumeRt_Sub_E_High": 0.5, "ConsumeRt_Sub_E_Low": 1.0, "ConsumeRt_Sub_E_Mid": 0.75, "ConsumeRt_Sub_F_High": 1.0, "ConsumeRt_Sub_F_Low": 1.0, "ConsumeRt_Sub_F_Mid": 1.0}} \ No newline at end of file +{ + "Bomb Defense Up DX": { + "BurstDamageRt_Main_High": 1.0, + "BurstDamageRt_Main_Low": 1.0, + "BurstDamageRt_Main_Mid": 1.0, + "BurstDamageRt_Special_High": 0.65, + "BurstDamageRt_Special_Low": 1.0, + "BurstDamageRt_Special_Mid": 0.825, + "BurstDamageRt_SubH_High": 0.5, + "BurstDamageRt_SubH_Low": 1.0, + "BurstDamageRt_SubH_Mid": 0.75, + "BurstDamageRt_SubL_High": 0.6, + "BurstDamageRt_SubL_Low": 1.0, + "BurstDamageRt_SubL_Mid": 0.8, + "MarkingTime_ShortRt_High": 0.1, + "MarkingTime_ShortRt_Low": 1.0, + "MarkingTime_ShortRt_Mid": 0.43, + "MarkingTime_ShortRt_Thermal_High": 1.0, + "MarkingTime_ShortRt_Thermal_Low": 1.0, + "MarkingTime_ShortRt_Thermal_Mid": 1.0, + "MarkingTime_ShortRt_Trap_High": 0.1, + "MarkingTime_ShortRt_Trap_Low": 1.0, + "MarkingTime_ShortRt_Trap_Mid": 0.55 + }, + "Sub Power Up": { + "BombThrow_VelZ_BombPiyo_High": 18.4, + "BombThrow_VelZ_BombPiyo_Low": 13.6, + "BombThrow_VelZ_BombPiyo_Mid": 16.0, + "BombThrow_VelZ_BombTako_High": 18.4, + "BombThrow_VelZ_BombTako_Low": 13.6, + "BombThrow_VelZ_BombTako_Mid": 16.0, + "BombThrow_VelZ_High": 16.8, + "BombThrow_VelZ_Low": 11.2, + "BombThrow_VelZ_Mid": 14.0, + "BombThrow_VelZ_PointSensor_High": 18.7, + "BombThrow_VelZ_PointSensor_Low": 13.8, + "BombThrow_VelZ_PointSensor_Mid": 16.4, + "SubRt_Effect_High": 0.0, + "SubRt_Effect_Low": 0.0, + "SubRt_Effect_Mid": 0.0 + }, + "Run Speed Up": { + "MoveVelRt_Human_ShotA_High": 1.2, + "MoveVelRt_Human_ShotA_Low": 1.0, + "MoveVelRt_Human_ShotA_Mid": 1.1, + "MoveVelRt_Human_ShotB_High": 1.25, + "MoveVelRt_Human_ShotB_Low": 1.0, + "MoveVelRt_Human_ShotB_Mid": 1.125, + "MoveVelRt_Human_ShotC_High": 1.3, + "MoveVelRt_Human_ShotC_Low": 1.0, + "MoveVelRt_Human_ShotC_Mid": 1.15, + "MoveVelRt_Human_ShotD_High": 1.35, + "MoveVelRt_Human_ShotD_Low": 1.0, + "MoveVelRt_Human_ShotD_Mid": 1.175, + "MoveVelRt_Human_ShotE_High": 1.4, + "MoveVelRt_Human_ShotE_Low": 1.0, + "MoveVelRt_Human_ShotE_Mid": 1.2, + "MoveVel_Human_BigWeapon_High": 1.44, + "MoveVel_Human_BigWeapon_Low": 0.88, + "MoveVel_Human_BigWeapon_Mid": 1.16, + "MoveVel_Human_High": 1.44, + "MoveVel_Human_Low": 0.96, + "MoveVel_Human_Mid": 1.2, + "MoveVel_Human_ShortWeapon_High": 1.44, + "MoveVel_Human_ShortWeapon_Low": 1.04, + "MoveVel_Human_ShortWeapon_Mid": 1.24 + }, + "Ink Recovery Up": { + "RecoverFullFrm_Ink_High": 117.0, + "RecoverFullFrm_Ink_Low": 180.0, + "RecoverFullFrm_Ink_Mid": 148.5, + "RecoverNrmlFrm_Ink_High": 220.0, + "RecoverNrmlFrm_Ink_Low": 600.0, + "RecoverNrmlFrm_Ink_Mid": 410.0 + }, + "Quick Super Jump": { + "DokanWarp_MoveFrm_High": 96.6, + "DokanWarp_MoveFrm_Low": 138.0, + "DokanWarp_MoveFrm_Mid": 132.3, + "DokanWarp_TameFrm_High": 20.0, + "DokanWarp_TameFrm_Low": 80.0, + "DokanWarp_TameFrm_Mid": 35.0 + }, + "Ink Saver (Main)": { + "ConsumeRt_Main_High": 0.55, + "ConsumeRt_Main_High_High": 0.5, + "ConsumeRt_Main_High_Low": 1.0, + "ConsumeRt_Main_High_Mid": 0.7, + "ConsumeRt_Main_Low": 1.0, + "ConsumeRt_Main_Low_High": 0.6, + "ConsumeRt_Main_Low_Low": 1.0, + "ConsumeRt_Main_Low_Mid": 0.8, + "ConsumeRt_Main_Mid": 0.775 + }, + "Main Power Up": { + "MarkingTime_ShortRt_High": 0.1, + "MarkingTime_ShortRt_Low": 1.0, + "MarkingTime_ShortRt_Mid": 0.55, + "MarkingTime_ShortRt_Thermal_High": 1.0, + "MarkingTime_ShortRt_Thermal_Low": 1.0, + "MarkingTime_ShortRt_Thermal_Mid": 1.0, + "MarkingTime_ShortRt_Trap_High": 0.1, + "MarkingTime_ShortRt_Trap_Low": 1.0, + "MarkingTime_ShortRt_Trap_Mid": 0.55, + "Silhouette_DistFar_High": 290.0, + "Silhouette_DistFar_Low": 170.0, + "Silhouette_DistFar_Mid": 230.0, + "Silhouette_DistNear_High": 250.0, + "Silhouette_DistNear_Low": 130.0, + "Silhouette_DistNear_Mid": 190.0 + }, + "Ink Resistance Up": { + "OpInk_Armor_HP_High": 39.0, + "OpInk_Armor_HP_Low": 0.0, + "OpInk_Armor_HP_Mid": 26.0, + "OpInk_Damage_High": 0.0015, + "OpInk_Damage_Lmt_High": 0.2, + "OpInk_Damage_Lmt_Low": 0.4, + "OpInk_Damage_Lmt_Mid": 0.3, + "OpInk_Damage_Low": 0.003, + "OpInk_Damage_Mid": 0.00225, + "OpInk_JumpGnd_High": 1.1, + "OpInk_JumpGnd_Mid": 0.98, + "OpInk_JumpGnd_Msn_High": 1.05, + "OpInk_JumpGnd_Msn_Low": 0.6, + "OpInk_JumpGnd_Msn_Mid": 0.825, + "OpInk_VelGnd_High": 0.768, + "OpInk_VelGnd_Low": 0.24, + "OpInk_VelGnd_Mid": 0.5568, + "OpInk_VelGnd_ShotK_High": 1.0, + "OpInk_VelGnd_ShotK_Low": 0.5, + "OpInk_VelGnd_ShotK_Mid": 0.75, + "OpInk_VelGnd_Shot_High": 0.42, + "OpInk_VelGnd_Shot_Low": 0.12, + "OpInk_VelGnd_Shot_Mid": 0.33, + "mAreaParamsL": 0.8 + }, + "Special Saver": { + "SpecialRt_Restart_High": 1.0, + "SpecialRt_Restart_Low": 0.5, + "SpecialRt_Restart_Mid": 0.8, + "SpecialRt_Restart_SuperLanding_High": 1.25, + "SpecialRt_Restart_SuperLanding_Low": 0.75, + "SpecialRt_Restart_SuperLanding_Mid": 1.05 + }, + "Quick Respawn": { + "Dying_AroudFrm_High": 30.0, + "Dying_AroudFrm_Low": 90.0, + "Dying_AroudFrm_Mid": 60.0, + "Dying_ChaseFrm_High": 90.0, + "Dying_ChaseFrm_Low": 270.0, + "Dying_ChaseFrm_Mid": 180.0 + }, + "Special Charge Up": { + "SpecialRt_Charge_High": 1.3, + "SpecialRt_Charge_Low": 1.0, + "SpecialRt_Charge_Mid": 1.15 + }, + "Special Power Up": { + "SpecialRt_Keep_High": 1.4, + "SpecialRt_Keep_Long_High": 1.6, + "SpecialRt_Keep_Long_Low": 1.0, + "SpecialRt_Keep_Long_Mid": 1.3, + "SpecialRt_Keep_Low": 1.0, + "SpecialRt_Keep_Mid": 1.2, + "SpecialRt_Keep_NoShot_High": 0.0, + "SpecialRt_Keep_NoShot_Low": 1.0, + "SpecialRt_Keep_NoShot_Mid": 0.5 + }, + "Swim Speed Up": { + "MoveVel_Stealth_BigWeapon_High": 2.4, + "MoveVel_Stealth_BigWeapon_Low": 1.728, + "MoveVel_Stealth_BigWeapon_Mid": 2.16, + "MoveVel_Stealth_High": 2.4, + "MoveVel_Stealth_Low": 1.92, + "MoveVel_Stealth_Mid": 2.16, + "MoveVel_Stealth_ShortWeapon_High": 2.4, + "MoveVel_Stealth_ShortWeapon_Low": 2.016, + "MoveVel_Stealth_ShortWeapon_Mid": 2.208 + }, + "Ink Saver (Sub)": { + "ConsumeRt_Sub_A_High": 0.8, + "ConsumeRt_Sub_A_Low": 1.0, + "ConsumeRt_Sub_A_Mid": 0.9, + "ConsumeRt_Sub_B_High": 0.7, + "ConsumeRt_Sub_B_Low": 1.0, + "ConsumeRt_Sub_B_Mid": 0.85, + "ConsumeRt_Sub_C_High": 0.65, + "ConsumeRt_Sub_C_Low": 1.0, + "ConsumeRt_Sub_C_Mid": 0.825, + "ConsumeRt_Sub_D_High": 0.6, + "ConsumeRt_Sub_D_Low": 1.0, + "ConsumeRt_Sub_D_Mid": 0.8, + "ConsumeRt_Sub_E_High": 0.5, + "ConsumeRt_Sub_E_Low": 1.0, + "ConsumeRt_Sub_E_Mid": 0.75, + "ConsumeRt_Sub_F_High": 1.0, + "ConsumeRt_Sub_F_Low": 1.0, + "ConsumeRt_Sub_F_Mid": 1.0 + } +} diff --git a/old/graphql-schemas/maps.js b/old/graphql-schemas/maps.js index 05e5e05d0..71be34ab8 100644 --- a/old/graphql-schemas/maps.js +++ b/old/graphql-schemas/maps.js @@ -2,10 +2,10 @@ const { UserInputError, AuthenticationError, gql, -} = require("apollo-server-express") -const Maplist = require("../mongoose-models/maplist") -const MapBallot = require("../mongoose-models/mapballot") //[PositiveVoteCount!]! -const maps = require("../utils/maps") +} = require("apollo-server-express"); +const Maplist = require("../mongoose-models/maplist"); +const MapBallot = require("../mongoose-models/mapballot"); //[PositiveVoteCount!]! +const maps = require("../utils/maps"); const typeDef = gql` extend type Query { @@ -53,133 +53,133 @@ const typeDef = gql` rm: Int! cb: Int! } -` +`; const resolvers = { Query: { maplists: (root, args) => { - const criteria = args.name ? { name: args.name } : {} + const criteria = args.name ? { name: args.name } : {}; return Maplist.find(criteria) .sort({ order: "asc" }) .catch((e) => { throw new UserInputError(e.message, { invalidArgs: args, - }) - }) + }); + }); }, plusMaplists: (root, args) => { return Maplist.find({ plus: { $ne: null } }).sort({ "plus.year": "desc", "plus.month": "desc", - }) + }); }, mapVotes: async (root, args, ctx) => { if (!ctx.user || !ctx.user.plus || !ctx.user.plus.membership_status) { - return null + return null; } const mapBallot = await MapBallot.findOne({ discord_id: ctx.user.discord_id, - }) + }); if (!mapBallot) { - return maps.map((map) => ({ name: map, sz: 0, tc: 0, rm: 0, cb: 0 })) + return maps.map((map) => ({ name: map, sz: 0, tc: 0, rm: 0, cb: 0 })); } - return mapBallot.maps + return mapBallot.maps; }, positiveVotes: async (root, args, ctx) => { - const ballots = await MapBallot.find({}) + const ballots = await MapBallot.find({}); - const count = {} + const count = {}; ballots.forEach((ballot) => { ballot.maps.forEach((stage) => { - let toIcrement = 0 - if (stage[args.mode.toLowerCase()] === 1) toIcrement = 1 + let toIcrement = 0; + if (stage[args.mode.toLowerCase()] === 1) toIcrement = 1; - const votes = count[stage.name] ? count[stage.name] : 0 - count[stage.name] = votes + toIcrement - }) - }) + const votes = count[stage.name] ? count[stage.name] : 0; + count[stage.name] = votes + toIcrement; + }); + }); - return true + return true; }, }, Mutation: { addMapVotes: async (root, args, ctx) => { if (!ctx.user || !ctx.user.plus || !ctx.user.plus.membership_status) { - throw new AuthenticationError("Insufficient access") + throw new AuthenticationError("Insufficient access"); } - const legitVotes = [-1, 0, 1] + const legitVotes = [-1, 0, 1]; args.votes.forEach((vote, index) => { if (vote.name !== maps[index]) { throw new UserInputError( `Invalid map or position: ${vote.name} on the index ${index}` - ) + ); } if (legitVotes.indexOf(vote.sz) === -1) { - throw new UserInputError(`Invalid vote for sz: ${vote.sz}`) + throw new UserInputError(`Invalid vote for sz: ${vote.sz}`); } if (legitVotes.indexOf(vote.tc) === -1) { - throw new UserInputError(`Invalid vote for sz: ${vote.tc}`) + throw new UserInputError(`Invalid vote for sz: ${vote.tc}`); } if (legitVotes.indexOf(vote.rm) === -1) { - throw new UserInputError(`Invalid vote for sz: ${vote.rm}`) + throw new UserInputError(`Invalid vote for sz: ${vote.rm}`); } if (legitVotes.indexOf(vote.cb) === -1) { - throw new UserInputError(`Invalid vote for sz: ${vote.cb}`) + throw new UserInputError(`Invalid vote for sz: ${vote.cb}`); } - }) + }); - const discord_id = ctx.user.discord_id + const discord_id = ctx.user.discord_id; await MapBallot.findOneAndUpdate( { discord_id }, { discord_id, maps: args.votes }, { upsert: true } - ) + ); - return true + return true; }, generateMaplistFromVotes: async (root, args, ctx) => { - if (!ctx.user) throw new AuthenticationError("Not logged in") + if (!ctx.user) throw new AuthenticationError("Not logged in"); if (ctx.user.discord_id !== process.env.ADMIN_ID) - throw new AuthenticationError("Not admin") + throw new AuthenticationError("Not admin"); - const ballots = await MapBallot.find({}).populate("discord_user") + const ballots = await MapBallot.find({}).populate("discord_user"); const validBallots = ballots.filter( (ballot) => !!ballot.discord_user.plus.membership_status - ) + ); - const voter_count = validBallots.length + const voter_count = validBallots.length; const vote_counts = maps.map((stage) => ({ name: stage, sz: [0, 0, 0], tc: [0, 0, 0], rm: [0, 0, 0], cb: [0, 0, 0], - })) + })); validBallots.forEach((ballot) => ballot.maps.forEach((stage, index) => { - const { sz, tc, rm, cb } = stage + const { sz, tc, rm, cb } = stage; // one is added to the index so -1 vote goes to 0 index, 0 to 1 and 1 to 2 - vote_counts[index].sz[sz + 1] = vote_counts[index].sz[sz + 1] + 1 - vote_counts[index].tc[tc + 1] = vote_counts[index].tc[tc + 1] + 1 - vote_counts[index].rm[rm + 1] = vote_counts[index].rm[rm + 1] + 1 - vote_counts[index].cb[cb + 1] = vote_counts[index].cb[cb + 1] + 1 + vote_counts[index].sz[sz + 1] = vote_counts[index].sz[sz + 1] + 1; + vote_counts[index].tc[tc + 1] = vote_counts[index].tc[tc + 1] + 1; + vote_counts[index].rm[rm + 1] = vote_counts[index].rm[rm + 1] + 1; + vote_counts[index].cb[cb + 1] = vote_counts[index].cb[cb + 1] + 1; }) - ) + ); - let allMaps = [] + let allMaps = []; vote_counts.forEach((count) => { - ;["sz", "tc", "rm", "cb"].forEach((mode) => { + ["sz", "tc", "rm", "cb"].forEach((mode) => { allMaps.push({ name: count.name, score: +( @@ -187,29 +187,29 @@ const resolvers = { voter_count ).toFixed(2), mode, - }) - }) - }) + }); + }); + }); - allMaps = allMaps.sort((a, b) => b.score - a.score) + allMaps = allMaps.sort((a, b) => b.score - a.score); - szMapPool = [] - tcMapPool = [] - rmMapPool = [] - cbMapPool = [] + szMapPool = []; + tcMapPool = []; + rmMapPool = []; + cbMapPool = []; const pools = { sz: szMapPool, tc: tcMapPool, rm: rmMapPool, cb: cbMapPool, - } + }; - const mapCount = {} + const mapCount = {}; // we switch monthly to add variance - const now = new Date() - const month = now.getMonth() + 1 + const now = new Date(); + const month = now.getMonth() + 1; const monthModes = [ null, "sz", @@ -224,14 +224,14 @@ const resolvers = { "tc", "rm", "cb", - ] - let modeToAddTo = monthModes[month] + ]; + let modeToAddTo = monthModes[month]; const nextModeDict = { sz: "tc", tc: "rm", rm: "cb", cb: "sz", - } + }; while ( szMapPool.length < 8 || @@ -240,40 +240,40 @@ const resolvers = { cbMapPool.length < 8 ) { for (const stageObj of allMaps) { - const pool = pools[modeToAddTo] + const pool = pools[modeToAddTo]; if (pool.length === 8) { - break + break; } const alreadyInCount = mapCount[stageObj.name] ? mapCount[stageObj.name] - : 0 + : 0; if (alreadyInCount === 2) { - continue + continue; } if (stageObj.mode !== modeToAddTo) { - continue + continue; } if (pool.indexOf(stageObj.name) !== -1) { - continue + continue; } - mapCount[stageObj.name] = alreadyInCount + 1 - pool.push(stageObj.name) - break + mapCount[stageObj.name] = alreadyInCount + 1; + pool.push(stageObj.name); + break; } - modeToAddTo = nextModeDict[modeToAddTo] + modeToAddTo = nextModeDict[modeToAddTo]; } - szMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)) - tcMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)) - rmMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)) - cbMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)) + szMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)); + tcMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)); + rmMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)); + cbMapPool.sort((a, b) => maps.indexOf(a) - maps.indexOf(b)); const maplist = { name: `Plus Server ${now.toLocaleString("default", { @@ -290,17 +290,17 @@ const resolvers = { voter_count, vote_counts, }, - } + }; - await Maplist.updateMany({ order: 0 }, { order: 1 }) - await Maplist.create(maplist) + await Maplist.updateMany({ order: 0 }, { order: 1 }); + await Maplist.create(maplist); - return true + return true; }, }, -} +}; module.exports = { Maplist: typeDef, maplistResolvers: resolvers, -} \ No newline at end of file +}; diff --git a/old/schema.js b/old/schema.js index 31577bd82..da78ea81a 100644 --- a/old/schema.js +++ b/old/schema.js @@ -29,7 +29,7 @@ const { General, generalResolvers } = require("./graphql-schemas/general"); SalmonRunRecord, salmonRunRecordResolvers, } = require("./graphql-schemas/salmonRunRecord")*/ -const { Maplist, maplistResolvers} = require("./graphql-schemas/maps") +const { Maplist, maplistResolvers } = require("./graphql-schemas/maps"); const Query = gql` type Query { diff --git a/old/scripts/GearInfo_Clothes.json b/old/scripts/GearInfo_Clothes.json index c68673b67..d567c3eb0 100644 --- a/old/scripts/GearInfo_Clothes.json +++ b/old/scripts/GearInfo_Clothes.json @@ -1 +1,3586 @@ -[{"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOrder", "Id": 2, "ModelName": "Clt_FST001", "Name": "FST001", "Price": 300, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 3, "ModelName": "Clt_FST002", "Name": "FST002", "Price": 300, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1000, "ModelName": "Clt_TES000", "Name": "TES000", "Price": 400, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1001, "ModelName": "Clt_TES001", "Name": "TES001", "Price": 500, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1003, "ModelName": "Clt_TES003", "Name": "TES003", "Price": 500, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1004, "ModelName": "Clt_TES004", "Name": "TES004", "Price": 2500, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1005, "ModelName": "Clt_TES005", "Name": "TES005", "Price": 800, "Rarity": 0, "Skill0": "Exorcist"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1006, "ModelName": "Clt_TES006", "Name": "TES006", "Price": 400, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1007, "ModelName": "Clt_TES007", "Name": "TES007", "Price": 300, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1008, "ModelName": "Clt_TES008", "Name": "TES008", "Price": 300, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1009, "ModelName": "Clt_TES009", "Name": "TES009", "Price": 8200, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1010, "ModelName": "Clt_TES010", "Name": "TES010", "Price": 750, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1011, "ModelName": "Clt_TES011", "Name": "TES011", "Price": 400, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1012, "ModelName": "Clt_TES012", "Name": "TES012", "Price": 400, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1013, "ModelName": "Clt_TES013", "Name": "TES013", "Price": 500, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1014, "ModelName": "Clt_TES014", "Name": "TES014", "Price": 500, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1015, "ModelName": "Clt_TES015", "Name": "TES015", "Price": 400, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1016, "ModelName": "Clt_TES016", "Name": "TES016", "Price": 400, "Rarity": 0, "Skill0": "DeathMarking"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1017, "ModelName": "Clt_TES017", "Name": "TES017", "Price": 400, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1018, "ModelName": "Clt_TES018", "Name": "TES018", "Price": 700, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1019, "ModelName": "Clt_TES019", "Name": "TES019", "Price": 700, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1020, "ModelName": "Clt_TES020", "Name": "TES020", "Price": 800, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1021, "ModelName": "Clt_TES021", "Name": "TES021", "Price": 600, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1022, "ModelName": "Clt_TES022", "Name": "TES022", "Price": 2800, "Rarity": 1, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1023, "ModelName": "Clt_TES023", "Name": "TES023", "Price": 2800, "Rarity": 1, "Skill0": "Exorcist"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1026, "ModelName": "Clt_TES026", "Name": "TES026", "Price": 500, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1027, "ModelName": "Clt_TES027", "Name": "TES027", "Price": 400, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1028, "ModelName": "Clt_TES028", "Name": "TES028", "Price": 8888, "Rarity": 2, "Skill0": "DeathMarking"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1029, "ModelName": "Clt_TES029", "Name": "TES029", "Price": 500, "Rarity": 0, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1030, "ModelName": "Clt_TES030", "Name": "TES030", "Price": 3800, "Rarity": 1, "Skill0": "ThermalInk"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1031, "ModelName": "Clt_TES031", "Name": "TES031", "Price": 1200, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1032, "ModelName": "Clt_TES032", "Name": "TES032", "Price": 4100, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1033, "ModelName": "Clt_TES033", "Name": "TES033", "Price": 3100, "Rarity": 1, "Skill0": "Exorcist"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1034, "ModelName": "Clt_TES034", "Name": "TES034", "Price": 800, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1035, "ModelName": "Clt_TES035", "Name": "TES035", "Price": 3800, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1036, "ModelName": "Clt_TES036", "Name": "TES036", "Price": 850, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1037, "ModelName": "Clt_TES037", "Name": "TES037", "Price": 850, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1038, "ModelName": "Clt_TES038", "Name": "TES038", "Price": 900, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1039, "ModelName": "Clt_TES039", "Name": "TES039", "Price": 900, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1040, "ModelName": "Clt_TES040", "Name": "TES040", "Price": 1200, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1041, "ModelName": "Clt_TES041", "Name": "TES041", "Price": 9200, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1042, "ModelName": "Clt_TES042", "Name": "TES042", "Price": 900, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1043, "ModelName": "Clt_TES043", "Name": "TES043", "Price": 900, "Rarity": 0, "Skill0": "ThermalInk"}, {"Addition": 1, "AocId": 1, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 1044, "ModelName": "Clt_TES044", "Name": "TES044", "Price": 0, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 1, "AocId": 1, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 1045, "ModelName": "Clt_TES045", "Name": "TES045", "Price": 0, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1046, "ModelName": "Clt_TES046", "Name": "TES046", "Price": 1200, "Rarity": 0, "Skill0": "Exorcist"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1047, "ModelName": "Clt_TES047", "Name": "TES047", "Price": 6660, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1048, "ModelName": "Clt_TES048", "Name": "TES048", "Price": 1250, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1049, "ModelName": "Clt_TES049", "Name": "TES049", "Price": 850, "Rarity": 0, "Skill0": "ThermalInk"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1050, "ModelName": "Clt_TES050", "Name": "TES050", "Price": 850, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1051, "ModelName": "Clt_TES051", "Name": "TES051", "Price": 9200, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1052, "ModelName": "Clt_TES052", "Name": "TES052", "Price": 3800, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1053, "ModelName": "Clt_TES053", "Name": "TES053", "Price": 1200, "Rarity": 0, "Skill0": "ThermalInk"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1054, "ModelName": "Clt_TES054", "Name": "TES054", "Price": 1600, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1055, "ModelName": "Clt_TES055", "Name": "TES055", "Price": 1250, "Rarity": 0, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1056, "ModelName": "Clt_TES056", "Name": "TES056", "Price": 5800, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1057, "ModelName": "Clt_TES057", "Name": "TES057", "Price": 1010, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1058, "ModelName": "Clt_TES058", "Name": "TES058", "Price": 1010, "Rarity": 0, "Skill0": "ThermalInk"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1059, "ModelName": "Clt_TES059", "Name": "TES059", "Price": 2950, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 1060, "ModelName": "Clt_TES060", "Name": "TES060", "Price": 1450, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOrder", "Id": 1061, "ModelName": "Clt_TES061", "Name": "TES061", "Price": 9800, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2000, "ModelName": "Clt_TEL000", "Name": "TEL000", "Price": 2300, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2001, "ModelName": "Clt_TEL001", "Name": "TEL001", "Price": 3000, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2002, "ModelName": "Clt_TEL002", "Name": "TEL002", "Price": 600, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2003, "ModelName": "Clt_TEL003", "Name": "TEL003", "Price": 1050, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2004, "ModelName": "Clt_TEL004", "Name": "TEL004", "Price": 800, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2005, "ModelName": "Clt_TEL005", "Name": "TEL005", "Price": 700, "Rarity": 0, "Skill0": "DeathMarking"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2006, "ModelName": "Clt_TEL006", "Name": "TEL006", "Price": 800, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2007, "ModelName": "Clt_TEL007", "Name": "TEL007", "Price": 800, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2008, "ModelName": "Clt_TEL008", "Name": "TEL008", "Price": 600, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2009, "ModelName": "Clt_TEL009", "Name": "TEL009", "Price": 700, "Rarity": 0, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2010, "ModelName": "Clt_TEL010", "Name": "TEL010", "Price": 600, "Rarity": 0, "Skill0": "DeathMarking"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2011, "ModelName": "Clt_TEL011", "Name": "TEL011", "Price": 500, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2012, "ModelName": "Clt_TEL012", "Name": "TEL012", "Price": 700, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2013, "ModelName": "Clt_TEL013", "Name": "TEL013", "Price": 3800, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2014, "ModelName": "Clt_TEL014", "Name": "TEL014", "Price": 1250, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2015, "ModelName": "Clt_TEL015", "Name": "TEL015", "Price": 5500, "Rarity": 1, "Skill0": "ThermalInk"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2016, "ModelName": "Clt_TEL016", "Name": "TEL016", "Price": 3800, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2017, "ModelName": "Clt_TEL017", "Name": "TEL017", "Price": 8800, "Rarity": 2, "Skill0": "Exorcist"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2018, "ModelName": "Clt_TEL018", "Name": "TEL018", "Price": 1800, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2019, "ModelName": "Clt_TEL019", "Name": "TEL019", "Price": 1450, "Rarity": 0, "Skill0": "DeathMarking"}, {"Addition": 5, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2020, "ModelName": "Clt_TEL020", "Name": "TEL020", "Price": 5800, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2021, "ModelName": "Clt_TEL021", "Name": "TEL021", "Price": 4200, "Rarity": 1, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2022, "ModelName": "Clt_TEL022", "Name": "TEL022", "Price": 5800, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2023, "ModelName": "Clt_TEL023", "Name": "TEL023", "Price": 3750, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 2024, "ModelName": "Clt_TEL024", "Name": "TEL024", "Price": 3750, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3000, "ModelName": "Clt_TLY000", "Name": "TLY000", "Price": 500, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3001, "ModelName": "Clt_TLY001", "Name": "TLY001", "Price": 500, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3002, "ModelName": "Clt_TLY002", "Name": "TLY002", "Price": 600, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3003, "ModelName": "Clt_TLY003", "Name": "TLY003", "Price": 500, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3004, "ModelName": "Clt_TLY004", "Name": "TLY004", "Price": 600, "Rarity": 0, "Skill0": "Exorcist"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3005, "ModelName": "Clt_TLY005", "Name": "TLY005", "Price": 4000, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3006, "ModelName": "Clt_TLY006", "Name": "TLY006", "Price": 1400, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3007, "ModelName": "Clt_TLY007", "Name": "TLY007", "Price": 800, "Rarity": 0, "Skill0": "Exorcist"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3008, "ModelName": "Clt_TLY008", "Name": "TLY008", "Price": 1200, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3009, "ModelName": "Clt_TLY009", "Name": "TLY009", "Price": 1200, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3010, "ModelName": "Clt_TLY010", "Name": "TLY010", "Price": 3100, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3011, "ModelName": "Clt_TLY011", "Name": "TLY011", "Price": 3100, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 4, "AocId": 100, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 3012, "ModelName": "Clt_TLY012", "Name": "TLY012", "Price": 0, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 3013, "ModelName": "Clt_TLY013", "Name": "TLY013", "Price": 4010, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4000, "ModelName": "Clt_PLO000", "Name": "PLO000", "Price": 550, "Rarity": 0, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4001, "ModelName": "Clt_PLO001", "Name": "PLO001", "Price": 2300, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4002, "ModelName": "Clt_PLO002", "Name": "PLO002", "Price": 700, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4003, "ModelName": "Clt_PLO003", "Name": "PLO003", "Price": 400, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4004, "ModelName": "Clt_PLO004", "Name": "PLO004", "Price": 500, "Rarity": 0, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4005, "ModelName": "Clt_PLO005", "Name": "PLO005", "Price": 2900, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4006, "ModelName": "Clt_PLO006", "Name": "PLO006", "Price": 8900, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4007, "ModelName": "Clt_PLO007", "Name": "PLO007", "Price": 1800, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 4008, "ModelName": "Clt_PLO008", "Name": "PLO008", "Price": 1200, "Rarity": 0, "Skill0": "Exorcist"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5000, "ModelName": "Clt_JKT000", "Name": "JKT000", "Price": 11000, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5001, "ModelName": "Clt_JKT001", "Name": "JKT001", "Price": 9500, "Rarity": 2, "Skill0": "ThermalInk"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5002, "ModelName": "Clt_JKT002", "Name": "JKT002", "Price": 3900, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5003, "ModelName": "Clt_JKT003", "Name": "JKT003", "Price": 11500, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5004, "ModelName": "Clt_JKT004", "Name": "JKT004", "Price": 3000, "Rarity": 1, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5005, "ModelName": "Clt_JKT005", "Name": "JKT005", "Price": 1700, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5006, "ModelName": "Clt_JKT006", "Name": "JKT006", "Price": 12100, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5007, "ModelName": "Clt_JKT007", "Name": "JKT007", "Price": 12800, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5008, "ModelName": "Clt_JKT008", "Name": "JKT008", "Price": 9000, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5009, "ModelName": "Clt_JKT009", "Name": "JKT009", "Price": 700, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5010, "ModelName": "Clt_JKT010", "Name": "JKT010", "Price": 2900, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5011, "ModelName": "Clt_JKT011", "Name": "JKT011", "Price": 2700, "Rarity": 1, "Skill0": "DeathMarking"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5012, "ModelName": "Clt_JKT012", "Name": "JKT012", "Price": 11000, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5013, "ModelName": "Clt_JKT013", "Name": "JKT013", "Price": 3000, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5014, "ModelName": "Clt_JKT014", "Name": "JKT014", "Price": 9200, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5015, "ModelName": "Clt_JKT015", "Name": "JKT015", "Price": 2900, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5016, "ModelName": "Clt_JKT016", "Name": "JKT016", "Price": 800, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5017, "ModelName": "Clt_JKT017", "Name": "JKT017", "Price": 7900, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5018, "ModelName": "Clt_JKT018", "Name": "JKT018", "Price": 8500, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5019, "ModelName": "Clt_JKT019", "Name": "JKT019", "Price": 9100, "Rarity": 2, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5020, "ModelName": "Clt_JKT020", "Name": "JKT020", "Price": 10100, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5021, "ModelName": "Clt_JKT021", "Name": "JKT021", "Price": 10100, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5022, "ModelName": "Clt_JKT022", "Name": "JKT022", "Price": 13200, "Rarity": 2, "Skill0": "ThermalInk"}, {"Addition": 3, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5023, "ModelName": "Clt_JKT023", "Name": "JKT023", "Price": 9200, "Rarity": 2, "Skill0": "Exorcist"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5024, "ModelName": "Clt_JKT024", "Name": "JKT024", "Price": 10400, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5025, "ModelName": "Clt_JKT025", "Name": "JKT025", "Price": 12300, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5026, "ModelName": "Clt_JKT026", "Name": "JKT026", "Price": 2600, "Rarity": 1, "Skill0": "DeathMarking"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5027, "ModelName": "Clt_JKT027", "Name": "JKT027", "Price": 7600, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5028, "ModelName": "Clt_JKT028", "Name": "JKT028", "Price": 3600, "Rarity": 1, "Skill0": "Exorcist"}, {"Addition": 3, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5029, "ModelName": "Clt_JKT029", "Name": "JKT029", "Price": 12800, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 1, "AocId": 2, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 5030, "ModelName": "Clt_JKT030", "Name": "JKT030", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 1, "AocId": 2, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 5031, "ModelName": "Clt_JKT031", "Name": "JKT031", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 3, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 5032, "ModelName": "Clt_JKT032", "Name": "JKT032", "Price": 0, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5033, "ModelName": "Clt_JKT033", "Name": "JKT033", "Price": 10500, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5034, "ModelName": "Clt_JKT034", "Name": "JKT034", "Price": 4600, "Rarity": 1, "Skill0": "ThermalInk"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5035, "ModelName": "Clt_JKT035", "Name": "JKT035", "Price": 9700, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5036, "ModelName": "Clt_JKT036", "Name": "JKT036", "Price": 12800, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5037, "ModelName": "Clt_JKT037", "Name": "JKT037", "Price": 8500, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5038, "ModelName": "Clt_JKT038", "Name": "JKT038", "Price": 8900, "Rarity": 2, "Skill0": "Exorcist"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5039, "ModelName": "Clt_JKT039", "Name": "JKT039", "Price": 7800, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5040, "ModelName": "Clt_JKT040", "Name": "JKT040", "Price": 9650, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5041, "ModelName": "Clt_JKT041", "Name": "JKT041", "Price": 10666, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5042, "ModelName": "Clt_JKT042", "Name": "JKT042", "Price": 10280, "Rarity": 2, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 5043, "ModelName": "Clt_JKT043", "Name": "JKT043", "Price": 10280, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 7, "AocId": 4, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 5044, "ModelName": "Clt_JKT044", "Name": "JKT044", "Price": 0, "Rarity": 2, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6000, "ModelName": "Clt_TNK000", "Name": "TNK000", "Price": 2300, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6001, "ModelName": "Clt_TNK001", "Name": "TNK001", "Price": 800, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6003, "ModelName": "Clt_TNK003", "Name": "TNK003", "Price": 600, "Rarity": 0, "Skill0": "DeathMarking"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6004, "ModelName": "Clt_TNK004", "Name": "TNK004", "Price": 450, "Rarity": 0, "Skill0": "ThermalInk"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6005, "ModelName": "Clt_TNK005", "Name": "TNK005", "Price": 600, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 6006, "ModelName": "Clt_TNK006", "Name": "TNK006", "Price": 4650, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7000, "ModelName": "Clt_SWT000", "Name": "SWT000", "Price": 800, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7001, "ModelName": "Clt_SWT001", "Name": "SWT001", "Price": 800, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7002, "ModelName": "Clt_SWT002", "Name": "SWT002", "Price": 9000, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7003, "ModelName": "Clt_SWT003", "Name": "SWT003", "Price": 2500, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7004, "ModelName": "Clt_SWT004", "Name": "SWT004", "Price": 800, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7005, "ModelName": "Clt_SWT005", "Name": "SWT005", "Price": 900, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7006, "ModelName": "Clt_SWT006", "Name": "SWT006", "Price": 2800, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7007, "ModelName": "Clt_SWT007", "Name": "SWT007", "Price": 11800, "Rarity": 2, "Skill0": "DeathMarking"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7008, "ModelName": "Clt_SWT008", "Name": "SWT008", "Price": 9850, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7009, "ModelName": "Clt_SWT009", "Name": "SWT009", "Price": 10800, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7010, "ModelName": "Clt_SWT010", "Name": "SWT010", "Price": 4800, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7011, "ModelName": "Clt_SWT011", "Name": "SWT011", "Price": 4800, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7012, "ModelName": "Clt_SWT012", "Name": "SWT012", "Price": 4800, "Rarity": 1, "Skill0": "DeathMarking"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7013, "ModelName": "Clt_SWT013", "Name": "SWT013", "Price": 7800, "Rarity": 2, "Skill0": "ThermalInk"}, {"Addition": 5, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7014, "ModelName": "Clt_SWT014", "Name": "SWT014", "Price": 5000, "Rarity": 1, "Skill0": "Exorcist"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 7015, "ModelName": "Clt_SWT015", "Name": "SWT015", "Price": 8960, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8000, "ModelName": "Clt_SHT000", "Name": "SHT000", "Price": 800, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8001, "ModelName": "Clt_SHT001", "Name": "SHT001", "Price": 750, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8002, "ModelName": "Clt_SHT002", "Name": "SHT002", "Price": 2000, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8003, "ModelName": "Clt_SHT003", "Name": "SHT003", "Price": 7500, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8004, "ModelName": "Clt_SHT004", "Name": "SHT004", "Price": 700, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8005, "ModelName": "Clt_SHT005", "Name": "SHT005", "Price": 700, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8006, "ModelName": "Clt_SHT006", "Name": "SHT006", "Price": 2000, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8007, "ModelName": "Clt_SHT007", "Name": "SHT007", "Price": 1350, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8008, "ModelName": "Clt_SHT008", "Name": "SHT008", "Price": 10000, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8009, "ModelName": "Clt_SHT009", "Name": "SHT009", "Price": 2800, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8010, "ModelName": "Clt_SHT010", "Name": "SHT010", "Price": 9000, "Rarity": 2, "Skill0": "DeathMarking"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8011, "ModelName": "Clt_SHT011", "Name": "SHT011", "Price": 1600, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8012, "ModelName": "Clt_SHT012", "Name": "SHT012", "Price": 2900, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8013, "ModelName": "Clt_SHT013", "Name": "SHT013", "Price": 2200, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8014, "ModelName": "Clt_SHT014", "Name": "SHT014", "Price": 700, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8015, "ModelName": "Clt_SHT015", "Name": "SHT015", "Price": 8400, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8017, "ModelName": "Clt_SHT017", "Name": "SHT017", "Price": 5000, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8018, "ModelName": "Clt_SHT018", "Name": "SHT018", "Price": 2100, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8019, "ModelName": "Clt_SHT019", "Name": "SHT019", "Price": 4900, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8020, "ModelName": "Clt_SHT020", "Name": "SHT020", "Price": 9200, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8021, "ModelName": "Clt_SHT021", "Name": "SHT021", "Price": 3800, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8022, "ModelName": "Clt_SHT022", "Name": "SHT022", "Price": 7800, "Rarity": 2, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8023, "ModelName": "Clt_SHT023", "Name": "SHT023", "Price": 9000, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8024, "ModelName": "Clt_SHT024", "Name": "SHT024", "Price": 4850, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8025, "ModelName": "Clt_SHT025", "Name": "SHT025", "Price": 9999, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8026, "ModelName": "Clt_SHT026", "Name": "SHT026", "Price": 4900, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8027, "ModelName": "Clt_SHT027", "Name": "SHT027", "Price": 7650, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 8028, "ModelName": "Clt_SHT028", "Name": "SHT028", "Price": 9650, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 9, "AocId": 5, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 8029, "ModelName": "Clt_SHT029", "Name": "SHT029", "Price": 0, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9000, "ModelName": "Clt_VST000", "Name": "VST000", "Price": 11000, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9001, "ModelName": "Clt_VST001", "Name": "VST001", "Price": 11000, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9002, "ModelName": "Clt_VST002", "Name": "VST002", "Price": 10000, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9003, "ModelName": "Clt_VST003", "Name": "VST003", "Price": 4100, "Rarity": 1, "Skill0": "DeathMarking"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9004, "ModelName": "Clt_VST004", "Name": "VST004", "Price": 800, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9005, "ModelName": "Clt_VST005", "Name": "VST005", "Price": 650, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9007, "ModelName": "Clt_VST007", "Name": "VST007", "Price": 4200, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B17", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9008, "ModelName": "Clt_VST008", "Name": "VST008", "Price": 5500, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 9009, "ModelName": "Clt_VST009", "Name": "VST009", "Price": 6200, "Rarity": 1, "Skill0": "ThermalInk"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10000, "ModelName": "Clt_PRK000", "Name": "PRK000", "Price": 9000, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10001, "ModelName": "Clt_PRK001", "Name": "PRK001", "Price": 2800, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10002, "ModelName": "Clt_PRK002", "Name": "PRK002", "Price": 2800, "Rarity": 1, "Skill0": "SquidMoveSpatter_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10004, "ModelName": "Clt_PRK004", "Name": "PRK004", "Price": 2900, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10005, "ModelName": "Clt_PRK005", "Name": "PRK005", "Price": 1100, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10006, "ModelName": "Clt_PRK006", "Name": "PRK006", "Price": 1900, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10007, "ModelName": "Clt_PRK007", "Name": "PRK007", "Price": 3800, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10008, "ModelName": "Clt_PRK008", "Name": "PRK008", "Price": 3400, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10009, "ModelName": "Clt_PRK009", "Name": "PRK009", "Price": 3800, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": null, "Genre1": null, "HowToGet": "cShop", "Id": 10010, "ModelName": "Clt_PRK010", "Name": "PRK010", "Price": 2900, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 13, "AocId": 6, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 10011, "ModelName": "Clt_PRK011", "Name": "PRK011", "Price": 0, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 1, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21000, "ModelName": "Clt_COP100", "Name": "COP100", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 1, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21001, "ModelName": "Clt_COP101", "Name": "COP101", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 1, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21002, "ModelName": "Clt_COP102", "Name": "COP102", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 2, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21003, "ModelName": "Clt_COP103", "Name": "COP103", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21004, "ModelName": "Clt_COP104", "Name": "COP104", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 9, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21005, "ModelName": "Clt_COP105", "Name": "COP105", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21006, "ModelName": "Clt_COP106", "Name": "COP106", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 6, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21007, "ModelName": "Clt_COP107", "Name": "COP107", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 8, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21008, "ModelName": "Clt_COP108", "Name": "COP108", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 13, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21009, "ModelName": "Clt_COP109", "Name": "COP109", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 16, "AocId": 0, "Brand": "B97", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 21010, "ModelName": "Clt_COP110", "Name": "COP110", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 15, "AocId": 7, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 22000, "ModelName": "Clt_CRC000", "Name": "CRC000", "Price": 0, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 19, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 23000, "ModelName": "Clt_HAP002", "Name": "HAP002", "Price": 0, "Rarity": 2, "Skill0": "ExSkillDouble"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25000, "ModelName": "Clt_AMB000", "Name": "AMB000", "Price": 0, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25001, "ModelName": "Clt_AMB001", "Name": "AMB001", "Price": 0, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25002, "ModelName": "Clt_AMB002", "Name": "AMB002", "Price": 0, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25003, "ModelName": "Clt_AMB003", "Name": "AMB003", "Price": 0, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25004, "ModelName": "Clt_AMB004", "Name": "AMB004", "Price": 0, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25005, "ModelName": "Clt_AMB005", "Name": "AMB005", "Price": 0, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25006, "ModelName": "Clt_AMB006", "Name": "AMB006", "Price": 0, "Rarity": 1, "Skill0": "Exorcist"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25007, "ModelName": "Clt_AMB007", "Name": "AMB007", "Price": 0, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25008, "ModelName": "Clt_AMB008", "Name": "AMB008", "Price": 0, "Rarity": 1, "Skill0": "ThermalInk"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25009, "ModelName": "Clt_AMB009", "Name": "AMB009", "Price": 0, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 25010, "ModelName": "Clt_AMB010", "Name": "AMB010", "Price": 0, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 26000, "ModelName": "Clt_HAP001", "Name": "HAP001", "Price": 0, "Rarity": 2, "Skill0": "ExSkillDouble"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27000, "ModelName": "Clt_MSN000", "Name": "MSN000", "Price": 0, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27004, "ModelName": "Clt_MSN004", "Name": "MSN004", "Price": 0, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27101, "ModelName": "Clt_MSN101", "Name": "MSN101", "Price": 0, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27104, "ModelName": "Clt_MSN104", "Name": "MSN104", "Price": 0, "Rarity": 1, "Skill0": "DeathMarking"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27105, "ModelName": "Clt_MSN105", "Name": "MSN105", "Price": 0, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 27106, "ModelName": "Clt_MSN106", "Name": "MSN106", "Price": 0, "Rarity": 1, "Skill0": "ThermalInk"}] \ No newline at end of file +[ + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOrder", + "Id": 2, + "ModelName": "Clt_FST001", + "Name": "FST001", + "Price": 300, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 3, + "ModelName": "Clt_FST002", + "Name": "FST002", + "Price": 300, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1000, + "ModelName": "Clt_TES000", + "Name": "TES000", + "Price": 400, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1001, + "ModelName": "Clt_TES001", + "Name": "TES001", + "Price": 500, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1003, + "ModelName": "Clt_TES003", + "Name": "TES003", + "Price": 500, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1004, + "ModelName": "Clt_TES004", + "Name": "TES004", + "Price": 2500, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1005, + "ModelName": "Clt_TES005", + "Name": "TES005", + "Price": 800, + "Rarity": 0, + "Skill0": "Exorcist" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1006, + "ModelName": "Clt_TES006", + "Name": "TES006", + "Price": 400, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1007, + "ModelName": "Clt_TES007", + "Name": "TES007", + "Price": 300, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1008, + "ModelName": "Clt_TES008", + "Name": "TES008", + "Price": 300, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1009, + "ModelName": "Clt_TES009", + "Name": "TES009", + "Price": 8200, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1010, + "ModelName": "Clt_TES010", + "Name": "TES010", + "Price": 750, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1011, + "ModelName": "Clt_TES011", + "Name": "TES011", + "Price": 400, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1012, + "ModelName": "Clt_TES012", + "Name": "TES012", + "Price": 400, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1013, + "ModelName": "Clt_TES013", + "Name": "TES013", + "Price": 500, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1014, + "ModelName": "Clt_TES014", + "Name": "TES014", + "Price": 500, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1015, + "ModelName": "Clt_TES015", + "Name": "TES015", + "Price": 400, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1016, + "ModelName": "Clt_TES016", + "Name": "TES016", + "Price": 400, + "Rarity": 0, + "Skill0": "DeathMarking" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1017, + "ModelName": "Clt_TES017", + "Name": "TES017", + "Price": 400, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1018, + "ModelName": "Clt_TES018", + "Name": "TES018", + "Price": 700, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1019, + "ModelName": "Clt_TES019", + "Name": "TES019", + "Price": 700, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1020, + "ModelName": "Clt_TES020", + "Name": "TES020", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1021, + "ModelName": "Clt_TES021", + "Name": "TES021", + "Price": 600, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1022, + "ModelName": "Clt_TES022", + "Name": "TES022", + "Price": 2800, + "Rarity": 1, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1023, + "ModelName": "Clt_TES023", + "Name": "TES023", + "Price": 2800, + "Rarity": 1, + "Skill0": "Exorcist" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1026, + "ModelName": "Clt_TES026", + "Name": "TES026", + "Price": 500, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1027, + "ModelName": "Clt_TES027", + "Name": "TES027", + "Price": 400, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1028, + "ModelName": "Clt_TES028", + "Name": "TES028", + "Price": 8888, + "Rarity": 2, + "Skill0": "DeathMarking" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1029, + "ModelName": "Clt_TES029", + "Name": "TES029", + "Price": 500, + "Rarity": 0, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1030, + "ModelName": "Clt_TES030", + "Name": "TES030", + "Price": 3800, + "Rarity": 1, + "Skill0": "ThermalInk" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1031, + "ModelName": "Clt_TES031", + "Name": "TES031", + "Price": 1200, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1032, + "ModelName": "Clt_TES032", + "Name": "TES032", + "Price": 4100, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1033, + "ModelName": "Clt_TES033", + "Name": "TES033", + "Price": 3100, + "Rarity": 1, + "Skill0": "Exorcist" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1034, + "ModelName": "Clt_TES034", + "Name": "TES034", + "Price": 800, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1035, + "ModelName": "Clt_TES035", + "Name": "TES035", + "Price": 3800, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1036, + "ModelName": "Clt_TES036", + "Name": "TES036", + "Price": 850, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1037, + "ModelName": "Clt_TES037", + "Name": "TES037", + "Price": 850, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1038, + "ModelName": "Clt_TES038", + "Name": "TES038", + "Price": 900, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1039, + "ModelName": "Clt_TES039", + "Name": "TES039", + "Price": 900, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1040, + "ModelName": "Clt_TES040", + "Name": "TES040", + "Price": 1200, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1041, + "ModelName": "Clt_TES041", + "Name": "TES041", + "Price": 9200, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1042, + "ModelName": "Clt_TES042", + "Name": "TES042", + "Price": 900, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1043, + "ModelName": "Clt_TES043", + "Name": "TES043", + "Price": 900, + "Rarity": 0, + "Skill0": "ThermalInk" + }, + { + "Addition": 1, + "AocId": 1, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 1044, + "ModelName": "Clt_TES044", + "Name": "TES044", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 1, + "AocId": 1, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 1045, + "ModelName": "Clt_TES045", + "Name": "TES045", + "Price": 0, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1046, + "ModelName": "Clt_TES046", + "Name": "TES046", + "Price": 1200, + "Rarity": 0, + "Skill0": "Exorcist" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1047, + "ModelName": "Clt_TES047", + "Name": "TES047", + "Price": 6660, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1048, + "ModelName": "Clt_TES048", + "Name": "TES048", + "Price": 1250, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1049, + "ModelName": "Clt_TES049", + "Name": "TES049", + "Price": 850, + "Rarity": 0, + "Skill0": "ThermalInk" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1050, + "ModelName": "Clt_TES050", + "Name": "TES050", + "Price": 850, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1051, + "ModelName": "Clt_TES051", + "Name": "TES051", + "Price": 9200, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1052, + "ModelName": "Clt_TES052", + "Name": "TES052", + "Price": 3800, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1053, + "ModelName": "Clt_TES053", + "Name": "TES053", + "Price": 1200, + "Rarity": 0, + "Skill0": "ThermalInk" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1054, + "ModelName": "Clt_TES054", + "Name": "TES054", + "Price": 1600, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1055, + "ModelName": "Clt_TES055", + "Name": "TES055", + "Price": 1250, + "Rarity": 0, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1056, + "ModelName": "Clt_TES056", + "Name": "TES056", + "Price": 5800, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1057, + "ModelName": "Clt_TES057", + "Name": "TES057", + "Price": 1010, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1058, + "ModelName": "Clt_TES058", + "Name": "TES058", + "Price": 1010, + "Rarity": 0, + "Skill0": "ThermalInk" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1059, + "ModelName": "Clt_TES059", + "Name": "TES059", + "Price": 2950, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 1060, + "ModelName": "Clt_TES060", + "Name": "TES060", + "Price": 1450, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOrder", + "Id": 1061, + "ModelName": "Clt_TES061", + "Name": "TES061", + "Price": 9800, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2000, + "ModelName": "Clt_TEL000", + "Name": "TEL000", + "Price": 2300, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2001, + "ModelName": "Clt_TEL001", + "Name": "TEL001", + "Price": 3000, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2002, + "ModelName": "Clt_TEL002", + "Name": "TEL002", + "Price": 600, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2003, + "ModelName": "Clt_TEL003", + "Name": "TEL003", + "Price": 1050, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2004, + "ModelName": "Clt_TEL004", + "Name": "TEL004", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2005, + "ModelName": "Clt_TEL005", + "Name": "TEL005", + "Price": 700, + "Rarity": 0, + "Skill0": "DeathMarking" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2006, + "ModelName": "Clt_TEL006", + "Name": "TEL006", + "Price": 800, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2007, + "ModelName": "Clt_TEL007", + "Name": "TEL007", + "Price": 800, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2008, + "ModelName": "Clt_TEL008", + "Name": "TEL008", + "Price": 600, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2009, + "ModelName": "Clt_TEL009", + "Name": "TEL009", + "Price": 700, + "Rarity": 0, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2010, + "ModelName": "Clt_TEL010", + "Name": "TEL010", + "Price": 600, + "Rarity": 0, + "Skill0": "DeathMarking" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2011, + "ModelName": "Clt_TEL011", + "Name": "TEL011", + "Price": 500, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2012, + "ModelName": "Clt_TEL012", + "Name": "TEL012", + "Price": 700, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2013, + "ModelName": "Clt_TEL013", + "Name": "TEL013", + "Price": 3800, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2014, + "ModelName": "Clt_TEL014", + "Name": "TEL014", + "Price": 1250, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2015, + "ModelName": "Clt_TEL015", + "Name": "TEL015", + "Price": 5500, + "Rarity": 1, + "Skill0": "ThermalInk" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2016, + "ModelName": "Clt_TEL016", + "Name": "TEL016", + "Price": 3800, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2017, + "ModelName": "Clt_TEL017", + "Name": "TEL017", + "Price": 8800, + "Rarity": 2, + "Skill0": "Exorcist" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2018, + "ModelName": "Clt_TEL018", + "Name": "TEL018", + "Price": 1800, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2019, + "ModelName": "Clt_TEL019", + "Name": "TEL019", + "Price": 1450, + "Rarity": 0, + "Skill0": "DeathMarking" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2020, + "ModelName": "Clt_TEL020", + "Name": "TEL020", + "Price": 5800, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2021, + "ModelName": "Clt_TEL021", + "Name": "TEL021", + "Price": 4200, + "Rarity": 1, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2022, + "ModelName": "Clt_TEL022", + "Name": "TEL022", + "Price": 5800, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2023, + "ModelName": "Clt_TEL023", + "Name": "TEL023", + "Price": 3750, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 2024, + "ModelName": "Clt_TEL024", + "Name": "TEL024", + "Price": 3750, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3000, + "ModelName": "Clt_TLY000", + "Name": "TLY000", + "Price": 500, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3001, + "ModelName": "Clt_TLY001", + "Name": "TLY001", + "Price": 500, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3002, + "ModelName": "Clt_TLY002", + "Name": "TLY002", + "Price": 600, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3003, + "ModelName": "Clt_TLY003", + "Name": "TLY003", + "Price": 500, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3004, + "ModelName": "Clt_TLY004", + "Name": "TLY004", + "Price": 600, + "Rarity": 0, + "Skill0": "Exorcist" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3005, + "ModelName": "Clt_TLY005", + "Name": "TLY005", + "Price": 4000, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3006, + "ModelName": "Clt_TLY006", + "Name": "TLY006", + "Price": 1400, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3007, + "ModelName": "Clt_TLY007", + "Name": "TLY007", + "Price": 800, + "Rarity": 0, + "Skill0": "Exorcist" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3008, + "ModelName": "Clt_TLY008", + "Name": "TLY008", + "Price": 1200, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3009, + "ModelName": "Clt_TLY009", + "Name": "TLY009", + "Price": 1200, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3010, + "ModelName": "Clt_TLY010", + "Name": "TLY010", + "Price": 3100, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3011, + "ModelName": "Clt_TLY011", + "Name": "TLY011", + "Price": 3100, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 4, + "AocId": 100, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 3012, + "ModelName": "Clt_TLY012", + "Name": "TLY012", + "Price": 0, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 3013, + "ModelName": "Clt_TLY013", + "Name": "TLY013", + "Price": 4010, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4000, + "ModelName": "Clt_PLO000", + "Name": "PLO000", + "Price": 550, + "Rarity": 0, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4001, + "ModelName": "Clt_PLO001", + "Name": "PLO001", + "Price": 2300, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4002, + "ModelName": "Clt_PLO002", + "Name": "PLO002", + "Price": 700, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4003, + "ModelName": "Clt_PLO003", + "Name": "PLO003", + "Price": 400, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4004, + "ModelName": "Clt_PLO004", + "Name": "PLO004", + "Price": 500, + "Rarity": 0, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4005, + "ModelName": "Clt_PLO005", + "Name": "PLO005", + "Price": 2900, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4006, + "ModelName": "Clt_PLO006", + "Name": "PLO006", + "Price": 8900, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4007, + "ModelName": "Clt_PLO007", + "Name": "PLO007", + "Price": 1800, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 4008, + "ModelName": "Clt_PLO008", + "Name": "PLO008", + "Price": 1200, + "Rarity": 0, + "Skill0": "Exorcist" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5000, + "ModelName": "Clt_JKT000", + "Name": "JKT000", + "Price": 11000, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5001, + "ModelName": "Clt_JKT001", + "Name": "JKT001", + "Price": 9500, + "Rarity": 2, + "Skill0": "ThermalInk" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5002, + "ModelName": "Clt_JKT002", + "Name": "JKT002", + "Price": 3900, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5003, + "ModelName": "Clt_JKT003", + "Name": "JKT003", + "Price": 11500, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5004, + "ModelName": "Clt_JKT004", + "Name": "JKT004", + "Price": 3000, + "Rarity": 1, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5005, + "ModelName": "Clt_JKT005", + "Name": "JKT005", + "Price": 1700, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5006, + "ModelName": "Clt_JKT006", + "Name": "JKT006", + "Price": 12100, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5007, + "ModelName": "Clt_JKT007", + "Name": "JKT007", + "Price": 12800, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5008, + "ModelName": "Clt_JKT008", + "Name": "JKT008", + "Price": 9000, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5009, + "ModelName": "Clt_JKT009", + "Name": "JKT009", + "Price": 700, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5010, + "ModelName": "Clt_JKT010", + "Name": "JKT010", + "Price": 2900, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5011, + "ModelName": "Clt_JKT011", + "Name": "JKT011", + "Price": 2700, + "Rarity": 1, + "Skill0": "DeathMarking" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5012, + "ModelName": "Clt_JKT012", + "Name": "JKT012", + "Price": 11000, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5013, + "ModelName": "Clt_JKT013", + "Name": "JKT013", + "Price": 3000, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5014, + "ModelName": "Clt_JKT014", + "Name": "JKT014", + "Price": 9200, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5015, + "ModelName": "Clt_JKT015", + "Name": "JKT015", + "Price": 2900, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5016, + "ModelName": "Clt_JKT016", + "Name": "JKT016", + "Price": 800, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5017, + "ModelName": "Clt_JKT017", + "Name": "JKT017", + "Price": 7900, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5018, + "ModelName": "Clt_JKT018", + "Name": "JKT018", + "Price": 8500, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5019, + "ModelName": "Clt_JKT019", + "Name": "JKT019", + "Price": 9100, + "Rarity": 2, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5020, + "ModelName": "Clt_JKT020", + "Name": "JKT020", + "Price": 10100, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5021, + "ModelName": "Clt_JKT021", + "Name": "JKT021", + "Price": 10100, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5022, + "ModelName": "Clt_JKT022", + "Name": "JKT022", + "Price": 13200, + "Rarity": 2, + "Skill0": "ThermalInk" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5023, + "ModelName": "Clt_JKT023", + "Name": "JKT023", + "Price": 9200, + "Rarity": 2, + "Skill0": "Exorcist" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5024, + "ModelName": "Clt_JKT024", + "Name": "JKT024", + "Price": 10400, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5025, + "ModelName": "Clt_JKT025", + "Name": "JKT025", + "Price": 12300, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5026, + "ModelName": "Clt_JKT026", + "Name": "JKT026", + "Price": 2600, + "Rarity": 1, + "Skill0": "DeathMarking" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5027, + "ModelName": "Clt_JKT027", + "Name": "JKT027", + "Price": 7600, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5028, + "ModelName": "Clt_JKT028", + "Name": "JKT028", + "Price": 3600, + "Rarity": 1, + "Skill0": "Exorcist" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5029, + "ModelName": "Clt_JKT029", + "Name": "JKT029", + "Price": 12800, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 1, + "AocId": 2, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 5030, + "ModelName": "Clt_JKT030", + "Name": "JKT030", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 1, + "AocId": 2, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 5031, + "ModelName": "Clt_JKT031", + "Name": "JKT031", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 3, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 5032, + "ModelName": "Clt_JKT032", + "Name": "JKT032", + "Price": 0, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5033, + "ModelName": "Clt_JKT033", + "Name": "JKT033", + "Price": 10500, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5034, + "ModelName": "Clt_JKT034", + "Name": "JKT034", + "Price": 4600, + "Rarity": 1, + "Skill0": "ThermalInk" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5035, + "ModelName": "Clt_JKT035", + "Name": "JKT035", + "Price": 9700, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5036, + "ModelName": "Clt_JKT036", + "Name": "JKT036", + "Price": 12800, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5037, + "ModelName": "Clt_JKT037", + "Name": "JKT037", + "Price": 8500, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5038, + "ModelName": "Clt_JKT038", + "Name": "JKT038", + "Price": 8900, + "Rarity": 2, + "Skill0": "Exorcist" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5039, + "ModelName": "Clt_JKT039", + "Name": "JKT039", + "Price": 7800, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5040, + "ModelName": "Clt_JKT040", + "Name": "JKT040", + "Price": 9650, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5041, + "ModelName": "Clt_JKT041", + "Name": "JKT041", + "Price": 10666, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5042, + "ModelName": "Clt_JKT042", + "Name": "JKT042", + "Price": 10280, + "Rarity": 2, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 5043, + "ModelName": "Clt_JKT043", + "Name": "JKT043", + "Price": 10280, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 5044, + "ModelName": "Clt_JKT044", + "Name": "JKT044", + "Price": 0, + "Rarity": 2, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6000, + "ModelName": "Clt_TNK000", + "Name": "TNK000", + "Price": 2300, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6001, + "ModelName": "Clt_TNK001", + "Name": "TNK001", + "Price": 800, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6003, + "ModelName": "Clt_TNK003", + "Name": "TNK003", + "Price": 600, + "Rarity": 0, + "Skill0": "DeathMarking" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6004, + "ModelName": "Clt_TNK004", + "Name": "TNK004", + "Price": 450, + "Rarity": 0, + "Skill0": "ThermalInk" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6005, + "ModelName": "Clt_TNK005", + "Name": "TNK005", + "Price": 600, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 6006, + "ModelName": "Clt_TNK006", + "Name": "TNK006", + "Price": 4650, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7000, + "ModelName": "Clt_SWT000", + "Name": "SWT000", + "Price": 800, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7001, + "ModelName": "Clt_SWT001", + "Name": "SWT001", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7002, + "ModelName": "Clt_SWT002", + "Name": "SWT002", + "Price": 9000, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7003, + "ModelName": "Clt_SWT003", + "Name": "SWT003", + "Price": 2500, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7004, + "ModelName": "Clt_SWT004", + "Name": "SWT004", + "Price": 800, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7005, + "ModelName": "Clt_SWT005", + "Name": "SWT005", + "Price": 900, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7006, + "ModelName": "Clt_SWT006", + "Name": "SWT006", + "Price": 2800, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7007, + "ModelName": "Clt_SWT007", + "Name": "SWT007", + "Price": 11800, + "Rarity": 2, + "Skill0": "DeathMarking" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7008, + "ModelName": "Clt_SWT008", + "Name": "SWT008", + "Price": 9850, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7009, + "ModelName": "Clt_SWT009", + "Name": "SWT009", + "Price": 10800, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7010, + "ModelName": "Clt_SWT010", + "Name": "SWT010", + "Price": 4800, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7011, + "ModelName": "Clt_SWT011", + "Name": "SWT011", + "Price": 4800, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7012, + "ModelName": "Clt_SWT012", + "Name": "SWT012", + "Price": 4800, + "Rarity": 1, + "Skill0": "DeathMarking" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7013, + "ModelName": "Clt_SWT013", + "Name": "SWT013", + "Price": 7800, + "Rarity": 2, + "Skill0": "ThermalInk" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7014, + "ModelName": "Clt_SWT014", + "Name": "SWT014", + "Price": 5000, + "Rarity": 1, + "Skill0": "Exorcist" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 7015, + "ModelName": "Clt_SWT015", + "Name": "SWT015", + "Price": 8960, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8000, + "ModelName": "Clt_SHT000", + "Name": "SHT000", + "Price": 800, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8001, + "ModelName": "Clt_SHT001", + "Name": "SHT001", + "Price": 750, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8002, + "ModelName": "Clt_SHT002", + "Name": "SHT002", + "Price": 2000, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8003, + "ModelName": "Clt_SHT003", + "Name": "SHT003", + "Price": 7500, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8004, + "ModelName": "Clt_SHT004", + "Name": "SHT004", + "Price": 700, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8005, + "ModelName": "Clt_SHT005", + "Name": "SHT005", + "Price": 700, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8006, + "ModelName": "Clt_SHT006", + "Name": "SHT006", + "Price": 2000, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8007, + "ModelName": "Clt_SHT007", + "Name": "SHT007", + "Price": 1350, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8008, + "ModelName": "Clt_SHT008", + "Name": "SHT008", + "Price": 10000, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8009, + "ModelName": "Clt_SHT009", + "Name": "SHT009", + "Price": 2800, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8010, + "ModelName": "Clt_SHT010", + "Name": "SHT010", + "Price": 9000, + "Rarity": 2, + "Skill0": "DeathMarking" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8011, + "ModelName": "Clt_SHT011", + "Name": "SHT011", + "Price": 1600, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8012, + "ModelName": "Clt_SHT012", + "Name": "SHT012", + "Price": 2900, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8013, + "ModelName": "Clt_SHT013", + "Name": "SHT013", + "Price": 2200, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8014, + "ModelName": "Clt_SHT014", + "Name": "SHT014", + "Price": 700, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8015, + "ModelName": "Clt_SHT015", + "Name": "SHT015", + "Price": 8400, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8017, + "ModelName": "Clt_SHT017", + "Name": "SHT017", + "Price": 5000, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8018, + "ModelName": "Clt_SHT018", + "Name": "SHT018", + "Price": 2100, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8019, + "ModelName": "Clt_SHT019", + "Name": "SHT019", + "Price": 4900, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8020, + "ModelName": "Clt_SHT020", + "Name": "SHT020", + "Price": 9200, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8021, + "ModelName": "Clt_SHT021", + "Name": "SHT021", + "Price": 3800, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8022, + "ModelName": "Clt_SHT022", + "Name": "SHT022", + "Price": 7800, + "Rarity": 2, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8023, + "ModelName": "Clt_SHT023", + "Name": "SHT023", + "Price": 9000, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8024, + "ModelName": "Clt_SHT024", + "Name": "SHT024", + "Price": 4850, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8025, + "ModelName": "Clt_SHT025", + "Name": "SHT025", + "Price": 9999, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8026, + "ModelName": "Clt_SHT026", + "Name": "SHT026", + "Price": 4900, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8027, + "ModelName": "Clt_SHT027", + "Name": "SHT027", + "Price": 7650, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 8028, + "ModelName": "Clt_SHT028", + "Name": "SHT028", + "Price": 9650, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 9, + "AocId": 5, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 8029, + "ModelName": "Clt_SHT029", + "Name": "SHT029", + "Price": 0, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9000, + "ModelName": "Clt_VST000", + "Name": "VST000", + "Price": 11000, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9001, + "ModelName": "Clt_VST001", + "Name": "VST001", + "Price": 11000, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9002, + "ModelName": "Clt_VST002", + "Name": "VST002", + "Price": 10000, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9003, + "ModelName": "Clt_VST003", + "Name": "VST003", + "Price": 4100, + "Rarity": 1, + "Skill0": "DeathMarking" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9004, + "ModelName": "Clt_VST004", + "Name": "VST004", + "Price": 800, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9005, + "ModelName": "Clt_VST005", + "Name": "VST005", + "Price": 650, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9007, + "ModelName": "Clt_VST007", + "Name": "VST007", + "Price": 4200, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B17", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9008, + "ModelName": "Clt_VST008", + "Name": "VST008", + "Price": 5500, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 9009, + "ModelName": "Clt_VST009", + "Name": "VST009", + "Price": 6200, + "Rarity": 1, + "Skill0": "ThermalInk" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10000, + "ModelName": "Clt_PRK000", + "Name": "PRK000", + "Price": 9000, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10001, + "ModelName": "Clt_PRK001", + "Name": "PRK001", + "Price": 2800, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10002, + "ModelName": "Clt_PRK002", + "Name": "PRK002", + "Price": 2800, + "Rarity": 1, + "Skill0": "SquidMoveSpatter_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10004, + "ModelName": "Clt_PRK004", + "Name": "PRK004", + "Price": 2900, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10005, + "ModelName": "Clt_PRK005", + "Name": "PRK005", + "Price": 1100, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10006, + "ModelName": "Clt_PRK006", + "Name": "PRK006", + "Price": 1900, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10007, + "ModelName": "Clt_PRK007", + "Name": "PRK007", + "Price": 3800, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10008, + "ModelName": "Clt_PRK008", + "Name": "PRK008", + "Price": 3400, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10009, + "ModelName": "Clt_PRK009", + "Name": "PRK009", + "Price": 3800, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": null, + "Genre1": null, + "HowToGet": "cShop", + "Id": 10010, + "ModelName": "Clt_PRK010", + "Name": "PRK010", + "Price": 2900, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 13, + "AocId": 6, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 10011, + "ModelName": "Clt_PRK011", + "Name": "PRK011", + "Price": 0, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 1, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21000, + "ModelName": "Clt_COP100", + "Name": "COP100", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 1, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21001, + "ModelName": "Clt_COP101", + "Name": "COP101", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 1, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21002, + "ModelName": "Clt_COP102", + "Name": "COP102", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 2, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21003, + "ModelName": "Clt_COP103", + "Name": "COP103", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21004, + "ModelName": "Clt_COP104", + "Name": "COP104", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21005, + "ModelName": "Clt_COP105", + "Name": "COP105", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21006, + "ModelName": "Clt_COP106", + "Name": "COP106", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21007, + "ModelName": "Clt_COP107", + "Name": "COP107", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 8, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21008, + "ModelName": "Clt_COP108", + "Name": "COP108", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 13, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21009, + "ModelName": "Clt_COP109", + "Name": "COP109", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 16, + "AocId": 0, + "Brand": "B97", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 21010, + "ModelName": "Clt_COP110", + "Name": "COP110", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 15, + "AocId": 7, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 22000, + "ModelName": "Clt_CRC000", + "Name": "CRC000", + "Price": 0, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 19, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 23000, + "ModelName": "Clt_HAP002", + "Name": "HAP002", + "Price": 0, + "Rarity": 2, + "Skill0": "ExSkillDouble" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25000, + "ModelName": "Clt_AMB000", + "Name": "AMB000", + "Price": 0, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25001, + "ModelName": "Clt_AMB001", + "Name": "AMB001", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25002, + "ModelName": "Clt_AMB002", + "Name": "AMB002", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25003, + "ModelName": "Clt_AMB003", + "Name": "AMB003", + "Price": 0, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25004, + "ModelName": "Clt_AMB004", + "Name": "AMB004", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25005, + "ModelName": "Clt_AMB005", + "Name": "AMB005", + "Price": 0, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25006, + "ModelName": "Clt_AMB006", + "Name": "AMB006", + "Price": 0, + "Rarity": 1, + "Skill0": "Exorcist" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25007, + "ModelName": "Clt_AMB007", + "Name": "AMB007", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25008, + "ModelName": "Clt_AMB008", + "Name": "AMB008", + "Price": 0, + "Rarity": 1, + "Skill0": "ThermalInk" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25009, + "ModelName": "Clt_AMB009", + "Name": "AMB009", + "Price": 0, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 25010, + "ModelName": "Clt_AMB010", + "Name": "AMB010", + "Price": 0, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 26000, + "ModelName": "Clt_HAP001", + "Name": "HAP001", + "Price": 0, + "Rarity": 2, + "Skill0": "ExSkillDouble" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27000, + "ModelName": "Clt_MSN000", + "Name": "MSN000", + "Price": 0, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27004, + "ModelName": "Clt_MSN004", + "Name": "MSN004", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27101, + "ModelName": "Clt_MSN101", + "Name": "MSN101", + "Price": 0, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27104, + "ModelName": "Clt_MSN104", + "Name": "MSN104", + "Price": 0, + "Rarity": 1, + "Skill0": "DeathMarking" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27105, + "ModelName": "Clt_MSN105", + "Name": "MSN105", + "Price": 0, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 27106, + "ModelName": "Clt_MSN106", + "Name": "MSN106", + "Price": 0, + "Rarity": 1, + "Skill0": "ThermalInk" + } +] diff --git a/old/scripts/GearInfo_Head.json b/old/scripts/GearInfo_Head.json index 643479f1a..e54ced3b5 100644 --- a/old/scripts/GearInfo_Head.json +++ b/old/scripts/GearInfo_Head.json @@ -1 +1,2256 @@ -[{"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cOrder", "Id": 1, "ModelName": "Hed_FST000", "Name": "FST000", "Price": 300, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1000, "ModelName": "Hed_CAP000", "Name": "CAP000", "Price": 600, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1001, "ModelName": "Hed_CAP001", "Name": "CAP001", "Price": 800, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1002, "ModelName": "Hed_CAP002", "Name": "CAP002", "Price": 400, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1003, "ModelName": "Hed_CAP003", "Name": "CAP003", "Price": 600, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1004, "ModelName": "Hed_CAP004", "Name": "CAP004", "Price": 8500, "Rarity": 2, "Skill0": "StartAllUp"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1005, "ModelName": "Hed_CAP005", "Name": "CAP005", "Price": 1300, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1006, "ModelName": "Hed_CAP006", "Name": "CAP006", "Price": 1400, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1007, "ModelName": "Hed_CAP007", "Name": "CAP007", "Price": 1800, "Rarity": 1, "Skill0": "ComeBack"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1008, "ModelName": "Hed_CAP008", "Name": "CAP008", "Price": 500, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1009, "ModelName": "Hed_CAP009", "Name": "CAP009", "Price": 700, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1010, "ModelName": "Hed_CAP010", "Name": "CAP010", "Price": 700, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1011, "ModelName": "Hed_CAP011", "Name": "CAP011", "Price": 700, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1012, "ModelName": "Hed_CAP012", "Name": "CAP012", "Price": 800, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1014, "ModelName": "Hed_CAP014", "Name": "CAP014", "Price": 2400, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1018, "ModelName": "Hed_CAP018", "Name": "CAP018", "Price": 9800, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1019, "ModelName": "Hed_CAP019", "Name": "CAP019", "Price": 3200, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1020, "ModelName": "Hed_CAP020", "Name": "CAP020", "Price": 8700, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1021, "ModelName": "Hed_CAP021", "Name": "CAP021", "Price": 3800, "Rarity": 1, "Skill0": "ComeBack"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1023, "ModelName": "Hed_CAP023", "Name": "CAP023", "Price": 10000, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1024, "ModelName": "Hed_CAP024", "Name": "CAP024", "Price": 5200, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1025, "ModelName": "Hed_CAP025", "Name": "CAP025", "Price": 4200, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": "Head_Cap", "Genre1": "Head_Glasses", "HowToGet": "cShop", "Id": 1026, "ModelName": "Hed_CAP026", "Name": "CAP026", "Price": 9500, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B08", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1027, "ModelName": "Hed_CAP027", "Name": "CAP027", "Price": 11500, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2000, "ModelName": "Hed_NCP000", "Name": "NCP000", "Price": 2000, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2001, "ModelName": "Hed_NCP001", "Name": "NCP001", "Price": 600, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2002, "ModelName": "Hed_NCP002", "Name": "NCP002", "Price": 900, "Rarity": 0, "Skill0": "StartAllUp"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2003, "ModelName": "Hed_NCP003", "Name": "NCP003", "Price": 800, "Rarity": 0, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Beret", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2004, "ModelName": "Hed_NCP004", "Name": "NCP004", "Price": 9700, "Rarity": 2, "Skill0": "StartAllUp"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": "Head_KnitCap", "Genre1": "Head_Goggle", "HowToGet": "cShop", "Id": 2005, "ModelName": "Hed_NCP005", "Name": "NCP005", "Price": 9500, "Rarity": 2, "Skill0": "ComeBack"}, {"Addition": 7, "AocId": 4, "Brand": "B08", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 2006, "ModelName": "Hed_NCP006", "Name": "NCP006", "Price": 0, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2008, "ModelName": "Hed_NCP008", "Name": "NCP008", "Price": 1400, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": "Head_Beret", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2009, "ModelName": "Hed_NCP009", "Name": "NCP009", "Price": 11500, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Head_KnitCap", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2010, "ModelName": "Hed_NCP010", "Name": "NCP010", "Price": 1280, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": "Head_KnitCap", "Genre1": "Head_Mask", "HowToGet": "cShop", "Id": 2011, "ModelName": "Hed_NCP011", "Name": "NCP011", "Price": 3000, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3000, "ModelName": "Hed_EYE000", "Name": "EYE000", "Price": 500, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3001, "ModelName": "Hed_EYE001", "Name": "EYE001", "Price": 2800, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3002, "ModelName": "Hed_EYE002", "Name": "EYE002", "Price": 5500, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3003, "ModelName": "Hed_EYE003", "Name": "EYE003", "Price": 350, "Rarity": 0, "Skill0": "EndAllUp"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3004, "ModelName": "Hed_EYE004", "Name": "EYE004", "Price": 2800, "Rarity": 1, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3005, "ModelName": "Hed_EYE005", "Name": "EYE005", "Price": 3000, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3006, "ModelName": "Hed_EYE006", "Name": "EYE006", "Price": 8000, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3007, "ModelName": "Hed_EYE007", "Name": "EYE007", "Price": 2000, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3008, "ModelName": "Hed_EYE008", "Name": "EYE008", "Price": 12000, "Rarity": 2, "Skill0": "EndAllUp"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3009, "ModelName": "Hed_EYE009", "Name": "EYE009", "Price": 600, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3010, "ModelName": "Hed_EYE010", "Name": "EYE010", "Price": 8800, "Rarity": 2, "Skill0": "EndAllUp"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3011, "ModelName": "Hed_EYE011", "Name": "EYE011", "Price": 4100, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3012, "ModelName": "Hed_EYE012", "Name": "EYE012", "Price": 2200, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Head_Cap", "Genre1": "Head_Glasses", "HowToGet": "cShop", "Id": 3013, "ModelName": "Hed_EYE013", "Name": "EYE013", "Price": 2700, "Rarity": 1, "Skill0": "StartAllUp"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3014, "ModelName": "Hed_EYE014", "Name": "EYE014", "Price": 11000, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": "Head_Beret", "Genre1": "Head_Glasses", "HowToGet": "cShop", "Id": 3015, "ModelName": "Hed_EYE015", "Name": "EYE015", "Price": 7850, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3016, "ModelName": "Hed_EYE016", "Name": "EYE016", "Price": 100, "Rarity": 0, "Skill0": "EndAllUp"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3017, "ModelName": "Hed_EYE017", "Name": "EYE017", "Price": 9600, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3018, "ModelName": "Hed_EYE018", "Name": "EYE018", "Price": 200, "Rarity": 0, "Skill0": "ComeBack"}, {"Addition": 7, "AocId": 4, "Brand": "B05", "Genre0": "Head_Goggle", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 3019, "ModelName": "Hed_EYE019", "Name": "EYE019", "Price": 0, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 7, "AocId": 4, "Brand": "B08", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 3020, "ModelName": "Hed_EYE020", "Name": "EYE020", "Price": 0, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4000, "ModelName": "Hed_HAT000", "Name": "HAT000", "Price": 2300, "Rarity": 1, "Skill0": "EndAllUp"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4001, "ModelName": "Hed_HAT001", "Name": "HAT001", "Price": 9000, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4002, "ModelName": "Hed_HAT002", "Name": "HAT002", "Price": 800, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4003, "ModelName": "Hed_HAT003", "Name": "HAT003", "Price": 850, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4004, "ModelName": "Hed_HAT004", "Name": "HAT004", "Price": 2200, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4005, "ModelName": "Hed_HAT005", "Name": "HAT005", "Price": 550, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4006, "ModelName": "Hed_HAT006", "Name": "HAT006", "Price": 1500, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4007, "ModelName": "Hed_HAT007", "Name": "HAT007", "Price": 3000, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4008, "ModelName": "Hed_HAT008", "Name": "HAT008", "Price": 400, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4009, "ModelName": "Hed_HAT009", "Name": "HAT009", "Price": 3600, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4010, "ModelName": "Hed_HAT010", "Name": "HAT010", "Price": 1280, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4011, "ModelName": "Hed_HAT011", "Name": "HAT011", "Price": 1700, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4012, "ModelName": "Hed_HAT012", "Name": "HAT012", "Price": 3200, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B07", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4013, "ModelName": "Hed_HAT013", "Name": "HAT013", "Price": 3680, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4014, "ModelName": "Hed_HAT014", "Name": "HAT014", "Price": 13000, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5000, "ModelName": "Hed_HDP000", "Name": "HDP000", "Price": 2800, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5001, "ModelName": "Hed_HDP001", "Name": "HDP001", "Price": 2500, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5002, "ModelName": "Hed_HDP002", "Name": "HDP002", "Price": 9200, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5003, "ModelName": "Hed_HDP003", "Name": "HDP003", "Price": 3800, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5004, "ModelName": "Hed_HDP004", "Name": "HDP004", "Price": 7070, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 4, "AocId": 100, "Brand": "B98", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 5005, "ModelName": "Hed_HDP005", "Name": "HDP005", "Price": 0, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 7, "AocId": 4, "Brand": "B05", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 5006, "ModelName": "Hed_HDP006", "Name": "HDP006", "Price": 0, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": "Head_Visor", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6000, "ModelName": "Hed_VIS000", "Name": "VIS000", "Price": 400, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": "Head_Visor", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6001, "ModelName": "Hed_VIS001", "Name": "VIS001", "Price": 500, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Head_Visor", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6002, "ModelName": "Hed_VIS002", "Name": "VIS002", "Price": 2600, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Head_Visor", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6003, "ModelName": "Hed_VIS003", "Name": "VIS003", "Price": 7500, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B17", "Genre0": "Head_Visor", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6004, "ModelName": "Hed_VIS004", "Name": "VIS004", "Price": 10300, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7000, "ModelName": "Hed_MET000", "Name": "MET000", "Price": 4800, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Helmet", "Genre1": "Head_Goggle", "HowToGet": "cShop", "Id": 7002, "ModelName": "Hed_MET002", "Name": "MET002", "Price": 9800, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B07", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7004, "ModelName": "Hed_MET004", "Name": "MET004", "Price": 2500, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B07", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7005, "ModelName": "Hed_MET005", "Name": "MET005", "Price": 8000, "Rarity": 2, "Skill0": "EndAllUp"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7006, "ModelName": "Hed_MET006", "Name": "MET006", "Price": 10500, "Rarity": 2, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7007, "ModelName": "Hed_MET007", "Name": "MET007", "Price": 9900, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7008, "ModelName": "Hed_MET008", "Name": "MET008", "Price": 10000, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7009, "ModelName": "Hed_MET009", "Name": "MET009", "Price": 8888, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7010, "ModelName": "Hed_MET010", "Name": "MET010", "Price": 8500, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7011, "ModelName": "Hed_MET011", "Name": "MET011", "Price": 10100, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8000, "ModelName": "Hed_MSK000", "Name": "MSK000", "Price": 11000, "Rarity": 2, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8001, "ModelName": "Hed_MSK001", "Name": "MSK001", "Price": 10000, "Rarity": 2, "Skill0": "ComeBack"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Head_Bandana", "Genre1": "Head_Mask", "HowToGet": "cShop", "Id": 8002, "ModelName": "Hed_MSK002", "Name": "MSK002", "Price": 750, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B05", "Genre0": "Head_Bandana", "Genre1": "Head_Mask", "HowToGet": "cShop", "Id": 8003, "ModelName": "Hed_MSK003", "Name": "MSK003", "Price": 7800, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8004, "ModelName": "Hed_MSK004", "Name": "MSK004", "Price": 4500, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B15", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8005, "ModelName": "Hed_MSK005", "Name": "MSK005", "Price": 3600, "Rarity": 1, "Skill0": "StartAllUp"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8006, "ModelName": "Hed_MSK006", "Name": "MSK006", "Price": 1450, "Rarity": 0, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B00", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8007, "ModelName": "Hed_MSK007", "Name": "MSK007", "Price": 300, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B06", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8008, "ModelName": "Hed_MSK008", "Name": "MSK008", "Price": 650, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8009, "ModelName": "Hed_MSK009", "Name": "MSK009", "Price": 500, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Goggle", "Genre1": "Head_Mask", "HowToGet": "cShop", "Id": 8010, "ModelName": "Hed_MSK010", "Name": "MSK010", "Price": 7600, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8011, "ModelName": "Hed_MSK011", "Name": "MSK011", "Price": 1400, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B05", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8012, "ModelName": "Hed_MSK012", "Name": "MSK012", "Price": 1800, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 13, "AocId": 6, "Brand": "B00", "Genre0": "Head_Bandana", "Genre1": "Head_Mask", "HowToGet": "cOther", "Id": 8013, "ModelName": "Hed_MSK013", "Name": "MSK013", "Price": 0, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 9001, "ModelName": "Hed_HBD001", "Name": "HBD001", "Price": 300, "Rarity": 0, "Skill0": "StartAllUp"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 9002, "ModelName": "Hed_HBD002", "Name": "HBD002", "Price": 400, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 9003, "ModelName": "Hed_HBD003", "Name": "HBD003", "Price": 300, "Rarity": 0, "Skill0": "ComeBack"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 9004, "ModelName": "Hed_HBD004", "Name": "HBD004", "Price": 400, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Head_Band", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 9005, "ModelName": "Hed_HBD005", "Name": "HBD005", "Price": 3000, "Rarity": 1, "Skill0": "MinorityUp"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": "Head_Bandana", "Genre1": "Head_Band", "HowToGet": "cShop", "Id": 9007, "ModelName": "Hed_HBD007", "Name": "HBD007", "Price": 1250, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": "Head_Bandana", "Genre1": "Head_Band", "HowToGet": "cShop", "Id": 9008, "ModelName": "Hed_HBD008", "Name": "HBD008", "Price": 1250, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 3, "Brand": "B16", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 10000, "ModelName": "Hed_ACC001", "Name": "ACC001", "Price": 0, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 1, "AocId": 0, "Brand": "B97", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21000, "ModelName": "Hed_COP100", "Name": "COP100", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 2, "AocId": 0, "Brand": "B97", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21001, "ModelName": "Hed_COP101", "Name": "COP101", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B97", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21002, "ModelName": "Hed_COP102", "Name": "COP102", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 12, "AocId": 0, "Brand": "B97", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21003, "ModelName": "Hed_COP103", "Name": "COP103", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B97", "Genre0": "Head_Mask", "Genre1": "Head_Goggle", "HowToGet": "cOther", "Id": 21004, "ModelName": "Hed_COP104", "Name": "COP104", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 4, "AocId": 0, "Brand": "B97", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21005, "ModelName": "Hed_COP105", "Name": "COP105", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 4, "AocId": 0, "Brand": "B97", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21006, "ModelName": "Hed_COP106", "Name": "COP106", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 9, "AocId": 0, "Brand": "B97", "Genre0": "Unknown", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21007, "ModelName": "Hed_COP107", "Name": "COP107", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 18, "AocId": 0, "Brand": "B97", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21008, "ModelName": "Hed_COP108", "Name": "COP108", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 14, "AocId": 0, "Brand": "B97", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21009, "ModelName": "Hed_COP109", "Name": "COP109", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 15, "AocId": 7, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 22000, "ModelName": "Hed_CRC000", "Name": "CRC000", "Price": 0, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 9, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Hat", "HowToGet": "cOrder", "Id": 24000, "ModelName": "Hed_HAP000", "Name": "HAP000", "Price": 9500, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 9, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Accessory", "HowToGet": "cOrder", "Id": 24001, "ModelName": "Hed_HAP001", "Name": "HAP001", "Price": 7700, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 9, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Mask", "HowToGet": "cOrder", "Id": 24002, "ModelName": "Hed_HAP002", "Name": "HAP002", "Price": 8800, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 9, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Mask", "HowToGet": "cOrder", "Id": 24003, "ModelName": "Hed_HAP003", "Name": "HAP003", "Price": 6980, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 12, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Hat", "HowToGet": "cOrder", "Id": 24004, "ModelName": "Hed_HAP004", "Name": "HAP004", "Price": 7900, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 12, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Glasses", "HowToGet": "cOrder", "Id": 24005, "ModelName": "Hed_HAP005", "Name": "HAP005", "Price": 9102, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 12, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Band", "HowToGet": "cOrder", "Id": 24006, "ModelName": "Hed_HAP006", "Name": "HAP006", "Price": 11800, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 12, "AocId": 0, "Brand": "B00", "Genre0": "Head_Party", "Genre1": "Head_Hat", "HowToGet": "cOrder", "Id": 24007, "ModelName": "Hed_HAP007", "Name": "HAP007", "Price": 8200, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 15, "AocId": 0, "Brand": "B10", "Genre0": "Head_Spring", "Genre1": "Head_Visor", "HowToGet": "cOrder", "Id": 24008, "ModelName": "Hed_HAP008", "Name": "HAP008", "Price": 8800, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 15, "AocId": 0, "Brand": "B10", "Genre0": "Head_Spring", "Genre1": "Head_Visor", "HowToGet": "cOrder", "Id": 24009, "ModelName": "Hed_HAP009", "Name": "HAP009", "Price": 8800, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 15, "AocId": 0, "Brand": "B10", "Genre0": "Head_Spring", "Genre1": "Head_Visor", "HowToGet": "cOrder", "Id": 24010, "ModelName": "Hed_HAP010", "Name": "HAP010", "Price": 8800, "Rarity": 2, "Skill0": "EndAllUp"}, {"Addition": 15, "AocId": 0, "Brand": "B10", "Genre0": "Head_Spring", "Genre1": "Head_Visor", "HowToGet": "cOrder", "Id": 24011, "ModelName": "Hed_HAP011", "Name": "HAP011", "Price": 8800, "Rarity": 2, "Skill0": "MinorityUp"}, {"Addition": 18, "AocId": 0, "Brand": "B00", "Genre0": "Head_Chaos", "Genre1": "Head_Final", "HowToGet": "cOrder", "Id": 24012, "ModelName": "Hed_HAP012", "Name": "HAP012", "Price": 10080, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 18, "AocId": 0, "Brand": "B00", "Genre0": "Head_Chaos", "Genre1": "Head_Final", "HowToGet": "cOrder", "Id": 24013, "ModelName": "Hed_HAP013", "Name": "HAP013", "Price": 9120, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 18, "AocId": 0, "Brand": "B00", "Genre0": "Head_Order", "Genre1": "Head_Final", "HowToGet": "cOrder", "Id": 24014, "ModelName": "Hed_HAP014", "Name": "HAP014", "Price": 7800, "Rarity": 2, "Skill0": "ComeBack"}, {"Addition": 18, "AocId": 0, "Brand": "B00", "Genre0": "Head_Order", "Genre1": "Head_Final", "HowToGet": "cOrder", "Id": 24015, "ModelName": "Hed_HAP015", "Name": "HAP015", "Price": 11111, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25000, "ModelName": "Hed_AMB000", "Name": "AMB000", "Price": 0, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25001, "ModelName": "Hed_AMB001", "Name": "AMB001", "Price": 0, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25002, "ModelName": "Hed_AMB002", "Name": "AMB002", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25003, "ModelName": "Hed_AMB003", "Name": "AMB003", "Price": 0, "Rarity": 1, "Skill0": "StartAllUp"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Mask", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25004, "ModelName": "Hed_AMB004", "Name": "AMB004", "Price": 0, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25005, "ModelName": "Hed_AMB005", "Name": "AMB005", "Price": 0, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25006, "ModelName": "Hed_AMB006", "Name": "AMB006", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": "Head_Headphone", "Genre1": "Head_Bandana", "HowToGet": "cOther", "Id": 25007, "ModelName": "Hed_AMB007", "Name": "AMB007", "Price": 0, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Head_Hat", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25008, "ModelName": "Hed_AMB008", "Name": "AMB008", "Price": 0, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25009, "ModelName": "Hed_AMB009", "Name": "AMB009", "Price": 0, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Unknown", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25010, "ModelName": "Hed_AMB010", "Name": "AMB010", "Price": 0, "Rarity": 1, "Skill0": "ComeBack"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27000, "ModelName": "Hed_MSN000", "Name": "MSN000", "Price": 0, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Head_Helmet", "Genre1": "Head_Headphone", "HowToGet": "cOther", "Id": 27004, "ModelName": "Hed_MSN004", "Name": "MSN004", "Price": 0, "Rarity": 1, "Skill0": "MinorityUp"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Head_Headphone", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27101, "ModelName": "Hed_MSN101", "Name": "MSN101", "Price": 0, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Head_Glasses", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27104, "ModelName": "Hed_MSN104", "Name": "MSN104", "Price": 0, "Rarity": 1, "Skill0": "EndAllUp"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Head_Helmet", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27105, "ModelName": "Hed_MSN105", "Name": "MSN105", "Price": 0, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Head_Cap", "Genre1": "Head_Glasses", "HowToGet": "cOther", "Id": 27106, "ModelName": "Hed_MSN106", "Name": "MSN106", "Price": 0, "Rarity": 1, "Skill0": "ComeBack"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Head_Cap", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27107, "ModelName": "Hed_MSN107", "Name": "MSN107", "Price": 0, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Head_Accessory", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27108, "ModelName": "Hed_MSN108", "Name": "MSN108", "Price": 0, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}] \ No newline at end of file +[ + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cOrder", + "Id": 1, + "ModelName": "Hed_FST000", + "Name": "FST000", + "Price": 300, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1000, + "ModelName": "Hed_CAP000", + "Name": "CAP000", + "Price": 600, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1001, + "ModelName": "Hed_CAP001", + "Name": "CAP001", + "Price": 800, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1002, + "ModelName": "Hed_CAP002", + "Name": "CAP002", + "Price": 400, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1003, + "ModelName": "Hed_CAP003", + "Name": "CAP003", + "Price": 600, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1004, + "ModelName": "Hed_CAP004", + "Name": "CAP004", + "Price": 8500, + "Rarity": 2, + "Skill0": "StartAllUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1005, + "ModelName": "Hed_CAP005", + "Name": "CAP005", + "Price": 1300, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1006, + "ModelName": "Hed_CAP006", + "Name": "CAP006", + "Price": 1400, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1007, + "ModelName": "Hed_CAP007", + "Name": "CAP007", + "Price": 1800, + "Rarity": 1, + "Skill0": "ComeBack" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1008, + "ModelName": "Hed_CAP008", + "Name": "CAP008", + "Price": 500, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1009, + "ModelName": "Hed_CAP009", + "Name": "CAP009", + "Price": 700, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1010, + "ModelName": "Hed_CAP010", + "Name": "CAP010", + "Price": 700, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1011, + "ModelName": "Hed_CAP011", + "Name": "CAP011", + "Price": 700, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1012, + "ModelName": "Hed_CAP012", + "Name": "CAP012", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1014, + "ModelName": "Hed_CAP014", + "Name": "CAP014", + "Price": 2400, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1018, + "ModelName": "Hed_CAP018", + "Name": "CAP018", + "Price": 9800, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1019, + "ModelName": "Hed_CAP019", + "Name": "CAP019", + "Price": 3200, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1020, + "ModelName": "Hed_CAP020", + "Name": "CAP020", + "Price": 8700, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1021, + "ModelName": "Hed_CAP021", + "Name": "CAP021", + "Price": 3800, + "Rarity": 1, + "Skill0": "ComeBack" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1023, + "ModelName": "Hed_CAP023", + "Name": "CAP023", + "Price": 10000, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1024, + "ModelName": "Hed_CAP024", + "Name": "CAP024", + "Price": 5200, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1025, + "ModelName": "Hed_CAP025", + "Name": "CAP025", + "Price": 4200, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Cap", + "Genre1": "Head_Glasses", + "HowToGet": "cShop", + "Id": 1026, + "ModelName": "Hed_CAP026", + "Name": "CAP026", + "Price": 9500, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1027, + "ModelName": "Hed_CAP027", + "Name": "CAP027", + "Price": 11500, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2000, + "ModelName": "Hed_NCP000", + "Name": "NCP000", + "Price": 2000, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2001, + "ModelName": "Hed_NCP001", + "Name": "NCP001", + "Price": 600, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2002, + "ModelName": "Hed_NCP002", + "Name": "NCP002", + "Price": 900, + "Rarity": 0, + "Skill0": "StartAllUp" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2003, + "ModelName": "Hed_NCP003", + "Name": "NCP003", + "Price": 800, + "Rarity": 0, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Beret", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2004, + "ModelName": "Hed_NCP004", + "Name": "NCP004", + "Price": 9700, + "Rarity": 2, + "Skill0": "StartAllUp" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_KnitCap", + "Genre1": "Head_Goggle", + "HowToGet": "cShop", + "Id": 2005, + "ModelName": "Hed_NCP005", + "Name": "NCP005", + "Price": 9500, + "Rarity": 2, + "Skill0": "ComeBack" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B08", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 2006, + "ModelName": "Hed_NCP006", + "Name": "NCP006", + "Price": 0, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2008, + "ModelName": "Hed_NCP008", + "Name": "NCP008", + "Price": 1400, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": "Head_Beret", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2009, + "ModelName": "Hed_NCP009", + "Name": "NCP009", + "Price": 11500, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_KnitCap", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2010, + "ModelName": "Hed_NCP010", + "Name": "NCP010", + "Price": 1280, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_KnitCap", + "Genre1": "Head_Mask", + "HowToGet": "cShop", + "Id": 2011, + "ModelName": "Hed_NCP011", + "Name": "NCP011", + "Price": 3000, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3000, + "ModelName": "Hed_EYE000", + "Name": "EYE000", + "Price": 500, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3001, + "ModelName": "Hed_EYE001", + "Name": "EYE001", + "Price": 2800, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3002, + "ModelName": "Hed_EYE002", + "Name": "EYE002", + "Price": 5500, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3003, + "ModelName": "Hed_EYE003", + "Name": "EYE003", + "Price": 350, + "Rarity": 0, + "Skill0": "EndAllUp" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3004, + "ModelName": "Hed_EYE004", + "Name": "EYE004", + "Price": 2800, + "Rarity": 1, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3005, + "ModelName": "Hed_EYE005", + "Name": "EYE005", + "Price": 3000, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3006, + "ModelName": "Hed_EYE006", + "Name": "EYE006", + "Price": 8000, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3007, + "ModelName": "Hed_EYE007", + "Name": "EYE007", + "Price": 2000, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3008, + "ModelName": "Hed_EYE008", + "Name": "EYE008", + "Price": 12000, + "Rarity": 2, + "Skill0": "EndAllUp" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3009, + "ModelName": "Hed_EYE009", + "Name": "EYE009", + "Price": 600, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3010, + "ModelName": "Hed_EYE010", + "Name": "EYE010", + "Price": 8800, + "Rarity": 2, + "Skill0": "EndAllUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3011, + "ModelName": "Hed_EYE011", + "Name": "EYE011", + "Price": 4100, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3012, + "ModelName": "Hed_EYE012", + "Name": "EYE012", + "Price": 2200, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Cap", + "Genre1": "Head_Glasses", + "HowToGet": "cShop", + "Id": 3013, + "ModelName": "Hed_EYE013", + "Name": "EYE013", + "Price": 2700, + "Rarity": 1, + "Skill0": "StartAllUp" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3014, + "ModelName": "Hed_EYE014", + "Name": "EYE014", + "Price": 11000, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": "Head_Beret", + "Genre1": "Head_Glasses", + "HowToGet": "cShop", + "Id": 3015, + "ModelName": "Hed_EYE015", + "Name": "EYE015", + "Price": 7850, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3016, + "ModelName": "Hed_EYE016", + "Name": "EYE016", + "Price": 100, + "Rarity": 0, + "Skill0": "EndAllUp" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3017, + "ModelName": "Hed_EYE017", + "Name": "EYE017", + "Price": 9600, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3018, + "ModelName": "Hed_EYE018", + "Name": "EYE018", + "Price": 200, + "Rarity": 0, + "Skill0": "ComeBack" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B05", + "Genre0": "Head_Goggle", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 3019, + "ModelName": "Hed_EYE019", + "Name": "EYE019", + "Price": 0, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B08", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 3020, + "ModelName": "Hed_EYE020", + "Name": "EYE020", + "Price": 0, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4000, + "ModelName": "Hed_HAT000", + "Name": "HAT000", + "Price": 2300, + "Rarity": 1, + "Skill0": "EndAllUp" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4001, + "ModelName": "Hed_HAT001", + "Name": "HAT001", + "Price": 9000, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4002, + "ModelName": "Hed_HAT002", + "Name": "HAT002", + "Price": 800, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4003, + "ModelName": "Hed_HAT003", + "Name": "HAT003", + "Price": 850, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4004, + "ModelName": "Hed_HAT004", + "Name": "HAT004", + "Price": 2200, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4005, + "ModelName": "Hed_HAT005", + "Name": "HAT005", + "Price": 550, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4006, + "ModelName": "Hed_HAT006", + "Name": "HAT006", + "Price": 1500, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4007, + "ModelName": "Hed_HAT007", + "Name": "HAT007", + "Price": 3000, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4008, + "ModelName": "Hed_HAT008", + "Name": "HAT008", + "Price": 400, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4009, + "ModelName": "Hed_HAT009", + "Name": "HAT009", + "Price": 3600, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4010, + "ModelName": "Hed_HAT010", + "Name": "HAT010", + "Price": 1280, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4011, + "ModelName": "Hed_HAT011", + "Name": "HAT011", + "Price": 1700, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4012, + "ModelName": "Hed_HAT012", + "Name": "HAT012", + "Price": 3200, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4013, + "ModelName": "Hed_HAT013", + "Name": "HAT013", + "Price": 3680, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4014, + "ModelName": "Hed_HAT014", + "Name": "HAT014", + "Price": 13000, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5000, + "ModelName": "Hed_HDP000", + "Name": "HDP000", + "Price": 2800, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5001, + "ModelName": "Hed_HDP001", + "Name": "HDP001", + "Price": 2500, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5002, + "ModelName": "Hed_HDP002", + "Name": "HDP002", + "Price": 9200, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5003, + "ModelName": "Hed_HDP003", + "Name": "HDP003", + "Price": 3800, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5004, + "ModelName": "Hed_HDP004", + "Name": "HDP004", + "Price": 7070, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 4, + "AocId": 100, + "Brand": "B98", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 5005, + "ModelName": "Hed_HDP005", + "Name": "HDP005", + "Price": 0, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B05", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 5006, + "ModelName": "Hed_HDP006", + "Name": "HDP006", + "Price": 0, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": "Head_Visor", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6000, + "ModelName": "Hed_VIS000", + "Name": "VIS000", + "Price": 400, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Visor", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6001, + "ModelName": "Hed_VIS001", + "Name": "VIS001", + "Price": 500, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Visor", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6002, + "ModelName": "Hed_VIS002", + "Name": "VIS002", + "Price": 2600, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Head_Visor", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6003, + "ModelName": "Hed_VIS003", + "Name": "VIS003", + "Price": 7500, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B17", + "Genre0": "Head_Visor", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6004, + "ModelName": "Hed_VIS004", + "Name": "VIS004", + "Price": 10300, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7000, + "ModelName": "Hed_MET000", + "Name": "MET000", + "Price": 4800, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Helmet", + "Genre1": "Head_Goggle", + "HowToGet": "cShop", + "Id": 7002, + "ModelName": "Hed_MET002", + "Name": "MET002", + "Price": 9800, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7004, + "ModelName": "Hed_MET004", + "Name": "MET004", + "Price": 2500, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B07", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7005, + "ModelName": "Hed_MET005", + "Name": "MET005", + "Price": 8000, + "Rarity": 2, + "Skill0": "EndAllUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7006, + "ModelName": "Hed_MET006", + "Name": "MET006", + "Price": 10500, + "Rarity": 2, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7007, + "ModelName": "Hed_MET007", + "Name": "MET007", + "Price": 9900, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7008, + "ModelName": "Hed_MET008", + "Name": "MET008", + "Price": 10000, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7009, + "ModelName": "Hed_MET009", + "Name": "MET009", + "Price": 8888, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7010, + "ModelName": "Hed_MET010", + "Name": "MET010", + "Price": 8500, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7011, + "ModelName": "Hed_MET011", + "Name": "MET011", + "Price": 10100, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8000, + "ModelName": "Hed_MSK000", + "Name": "MSK000", + "Price": 11000, + "Rarity": 2, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8001, + "ModelName": "Hed_MSK001", + "Name": "MSK001", + "Price": 10000, + "Rarity": 2, + "Skill0": "ComeBack" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Head_Bandana", + "Genre1": "Head_Mask", + "HowToGet": "cShop", + "Id": 8002, + "ModelName": "Hed_MSK002", + "Name": "MSK002", + "Price": 750, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Bandana", + "Genre1": "Head_Mask", + "HowToGet": "cShop", + "Id": 8003, + "ModelName": "Hed_MSK003", + "Name": "MSK003", + "Price": 7800, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8004, + "ModelName": "Hed_MSK004", + "Name": "MSK004", + "Price": 4500, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B15", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8005, + "ModelName": "Hed_MSK005", + "Name": "MSK005", + "Price": 3600, + "Rarity": 1, + "Skill0": "StartAllUp" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8006, + "ModelName": "Hed_MSK006", + "Name": "MSK006", + "Price": 1450, + "Rarity": 0, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8007, + "ModelName": "Hed_MSK007", + "Name": "MSK007", + "Price": 300, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8008, + "ModelName": "Hed_MSK008", + "Name": "MSK008", + "Price": 650, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8009, + "ModelName": "Hed_MSK009", + "Name": "MSK009", + "Price": 500, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Goggle", + "Genre1": "Head_Mask", + "HowToGet": "cShop", + "Id": 8010, + "ModelName": "Hed_MSK010", + "Name": "MSK010", + "Price": 7600, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8011, + "ModelName": "Hed_MSK011", + "Name": "MSK011", + "Price": 1400, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B05", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8012, + "ModelName": "Hed_MSK012", + "Name": "MSK012", + "Price": 1800, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 13, + "AocId": 6, + "Brand": "B00", + "Genre0": "Head_Bandana", + "Genre1": "Head_Mask", + "HowToGet": "cOther", + "Id": 8013, + "ModelName": "Hed_MSK013", + "Name": "MSK013", + "Price": 0, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 9001, + "ModelName": "Hed_HBD001", + "Name": "HBD001", + "Price": 300, + "Rarity": 0, + "Skill0": "StartAllUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 9002, + "ModelName": "Hed_HBD002", + "Name": "HBD002", + "Price": 400, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 9003, + "ModelName": "Hed_HBD003", + "Name": "HBD003", + "Price": 300, + "Rarity": 0, + "Skill0": "ComeBack" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 9004, + "ModelName": "Hed_HBD004", + "Name": "HBD004", + "Price": 400, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Band", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 9005, + "ModelName": "Hed_HBD005", + "Name": "HBD005", + "Price": 3000, + "Rarity": 1, + "Skill0": "MinorityUp" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Bandana", + "Genre1": "Head_Band", + "HowToGet": "cShop", + "Id": 9007, + "ModelName": "Hed_HBD007", + "Name": "HBD007", + "Price": 1250, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": "Head_Bandana", + "Genre1": "Head_Band", + "HowToGet": "cShop", + "Id": 9008, + "ModelName": "Hed_HBD008", + "Name": "HBD008", + "Price": 1250, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 3, + "Brand": "B16", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 10000, + "ModelName": "Hed_ACC001", + "Name": "ACC001", + "Price": 0, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 1, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21000, + "ModelName": "Hed_COP100", + "Name": "COP100", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 2, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21001, + "ModelName": "Hed_COP101", + "Name": "COP101", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21002, + "ModelName": "Hed_COP102", + "Name": "COP102", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21003, + "ModelName": "Hed_COP103", + "Name": "COP103", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Mask", + "Genre1": "Head_Goggle", + "HowToGet": "cOther", + "Id": 21004, + "ModelName": "Hed_COP104", + "Name": "COP104", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 4, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21005, + "ModelName": "Hed_COP105", + "Name": "COP105", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 4, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21006, + "ModelName": "Hed_COP106", + "Name": "COP106", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B97", + "Genre0": "Unknown", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21007, + "ModelName": "Hed_COP107", + "Name": "COP107", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 18, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21008, + "ModelName": "Hed_COP108", + "Name": "COP108", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 14, + "AocId": 0, + "Brand": "B97", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21009, + "ModelName": "Hed_COP109", + "Name": "COP109", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 15, + "AocId": 7, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 22000, + "ModelName": "Hed_CRC000", + "Name": "CRC000", + "Price": 0, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Hat", + "HowToGet": "cOrder", + "Id": 24000, + "ModelName": "Hed_HAP000", + "Name": "HAP000", + "Price": 9500, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Accessory", + "HowToGet": "cOrder", + "Id": 24001, + "ModelName": "Hed_HAP001", + "Name": "HAP001", + "Price": 7700, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Mask", + "HowToGet": "cOrder", + "Id": 24002, + "ModelName": "Hed_HAP002", + "Name": "HAP002", + "Price": 8800, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 9, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Mask", + "HowToGet": "cOrder", + "Id": 24003, + "ModelName": "Hed_HAP003", + "Name": "HAP003", + "Price": 6980, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Hat", + "HowToGet": "cOrder", + "Id": 24004, + "ModelName": "Hed_HAP004", + "Name": "HAP004", + "Price": 7900, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Glasses", + "HowToGet": "cOrder", + "Id": 24005, + "ModelName": "Hed_HAP005", + "Name": "HAP005", + "Price": 9102, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Band", + "HowToGet": "cOrder", + "Id": 24006, + "ModelName": "Hed_HAP006", + "Name": "HAP006", + "Price": 11800, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Party", + "Genre1": "Head_Hat", + "HowToGet": "cOrder", + "Id": 24007, + "ModelName": "Hed_HAP007", + "Name": "HAP007", + "Price": 8200, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Spring", + "Genre1": "Head_Visor", + "HowToGet": "cOrder", + "Id": 24008, + "ModelName": "Hed_HAP008", + "Name": "HAP008", + "Price": 8800, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Spring", + "Genre1": "Head_Visor", + "HowToGet": "cOrder", + "Id": 24009, + "ModelName": "Hed_HAP009", + "Name": "HAP009", + "Price": 8800, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Spring", + "Genre1": "Head_Visor", + "HowToGet": "cOrder", + "Id": 24010, + "ModelName": "Hed_HAP010", + "Name": "HAP010", + "Price": 8800, + "Rarity": 2, + "Skill0": "EndAllUp" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B10", + "Genre0": "Head_Spring", + "Genre1": "Head_Visor", + "HowToGet": "cOrder", + "Id": 24011, + "ModelName": "Hed_HAP011", + "Name": "HAP011", + "Price": 8800, + "Rarity": 2, + "Skill0": "MinorityUp" + }, + { + "Addition": 18, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Chaos", + "Genre1": "Head_Final", + "HowToGet": "cOrder", + "Id": 24012, + "ModelName": "Hed_HAP012", + "Name": "HAP012", + "Price": 10080, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 18, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Chaos", + "Genre1": "Head_Final", + "HowToGet": "cOrder", + "Id": 24013, + "ModelName": "Hed_HAP013", + "Name": "HAP013", + "Price": 9120, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 18, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Order", + "Genre1": "Head_Final", + "HowToGet": "cOrder", + "Id": 24014, + "ModelName": "Hed_HAP014", + "Name": "HAP014", + "Price": 7800, + "Rarity": 2, + "Skill0": "ComeBack" + }, + { + "Addition": 18, + "AocId": 0, + "Brand": "B00", + "Genre0": "Head_Order", + "Genre1": "Head_Final", + "HowToGet": "cOrder", + "Id": 24015, + "ModelName": "Hed_HAP015", + "Name": "HAP015", + "Price": 11111, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25000, + "ModelName": "Hed_AMB000", + "Name": "AMB000", + "Price": 0, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25001, + "ModelName": "Hed_AMB001", + "Name": "AMB001", + "Price": 0, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25002, + "ModelName": "Hed_AMB002", + "Name": "AMB002", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25003, + "ModelName": "Hed_AMB003", + "Name": "AMB003", + "Price": 0, + "Rarity": 1, + "Skill0": "StartAllUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Mask", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25004, + "ModelName": "Hed_AMB004", + "Name": "AMB004", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25005, + "ModelName": "Hed_AMB005", + "Name": "AMB005", + "Price": 0, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25006, + "ModelName": "Hed_AMB006", + "Name": "AMB006", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Headphone", + "Genre1": "Head_Bandana", + "HowToGet": "cOther", + "Id": 25007, + "ModelName": "Hed_AMB007", + "Name": "AMB007", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Hat", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25008, + "ModelName": "Hed_AMB008", + "Name": "AMB008", + "Price": 0, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25009, + "ModelName": "Hed_AMB009", + "Name": "AMB009", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Unknown", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25010, + "ModelName": "Hed_AMB010", + "Name": "AMB010", + "Price": 0, + "Rarity": 1, + "Skill0": "ComeBack" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27000, + "ModelName": "Hed_MSN000", + "Name": "MSN000", + "Price": 0, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Helmet", + "Genre1": "Head_Headphone", + "HowToGet": "cOther", + "Id": 27004, + "ModelName": "Hed_MSN004", + "Name": "MSN004", + "Price": 0, + "Rarity": 1, + "Skill0": "MinorityUp" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Headphone", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27101, + "ModelName": "Hed_MSN101", + "Name": "MSN101", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Glasses", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27104, + "ModelName": "Hed_MSN104", + "Name": "MSN104", + "Price": 0, + "Rarity": 1, + "Skill0": "EndAllUp" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Helmet", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27105, + "ModelName": "Hed_MSN105", + "Name": "MSN105", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Cap", + "Genre1": "Head_Glasses", + "HowToGet": "cOther", + "Id": 27106, + "ModelName": "Hed_MSN106", + "Name": "MSN106", + "Price": 0, + "Rarity": 1, + "Skill0": "ComeBack" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Cap", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27107, + "ModelName": "Hed_MSN107", + "Name": "MSN107", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Head_Accessory", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27108, + "ModelName": "Hed_MSN108", + "Name": "MSN108", + "Price": 0, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + } +] diff --git a/old/scripts/GearInfo_Shoes.json b/old/scripts/GearInfo_Shoes.json index d1a3db26c..b1e3674b4 100644 --- a/old/scripts/GearInfo_Shoes.json +++ b/old/scripts/GearInfo_Shoes.json @@ -1 +1,2312 @@ -[{"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cOrder", "Id": 1, "ModelName": "Shs_FST000", "Name": "FST000", "Price": 300, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1000, "ModelName": "Shs_SLO000", "Name": "SLO000", "Price": 800, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1001, "ModelName": "Shs_SLO001", "Name": "SLO001", "Price": 400, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1002, "ModelName": "Shs_SLO002", "Name": "SLO002", "Price": 8000, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1003, "ModelName": "Shs_SLO003", "Name": "SLO003", "Price": 600, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1004, "ModelName": "Shs_SLO004", "Name": "SLO004", "Price": 800, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1005, "ModelName": "Shs_SLO005", "Name": "SLO005", "Price": 2000, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1006, "ModelName": "Shs_SLO006", "Name": "SLO006", "Price": 500, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1007, "ModelName": "Shs_SLO007", "Name": "SLO007", "Price": 1500, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1008, "ModelName": "Shs_SLO008", "Name": "SLO008", "Price": 8700, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1009, "ModelName": "Shs_SLO009", "Name": "SLO009", "Price": 1400, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Spike", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1010, "ModelName": "Shs_SLO010", "Name": "SLO010", "Price": 9600, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Spike", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1011, "ModelName": "Shs_SLO011", "Name": "SLO011", "Price": 7500, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Bouldering", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1012, "ModelName": "Shs_SLO012", "Name": "SLO012", "Price": 3200, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Bouldering", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1013, "ModelName": "Shs_SLO013", "Name": "SLO013", "Price": 1200, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1014, "ModelName": "Shs_SLO014", "Name": "SLO014", "Price": 1300, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1015, "ModelName": "Shs_SLO015", "Name": "SLO015", "Price": 1800, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1016, "ModelName": "Shs_SLO016", "Name": "SLO016", "Price": 1400, "Rarity": 0, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1017, "ModelName": "Shs_SLO017", "Name": "SLO017", "Price": 1200, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1018, "ModelName": "Shs_SLO018", "Name": "SLO018", "Price": 4200, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1019, "ModelName": "Shs_SLO019", "Name": "SLO019", "Price": 1200, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": "Shoes_Spike", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 1020, "ModelName": "Shs_SLO020", "Name": "SLO020", "Price": 10500, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2000, "ModelName": "Shs_SHI000", "Name": "SHI000", "Price": 800, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2001, "ModelName": "Shs_SHI001", "Name": "SHI001", "Price": 800, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2002, "ModelName": "Shs_SHI002", "Name": "SHI002", "Price": 500, "Rarity": 0, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2003, "ModelName": "Shs_SHI003", "Name": "SHI003", "Price": 1000, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2004, "ModelName": "Shs_SHI004", "Name": "SHI004", "Price": 500, "Rarity": 0, "Skill0": "InkRecovery_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2005, "ModelName": "Shs_SHI005", "Name": "SHI005", "Price": 1800, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2006, "ModelName": "Shs_SHI006", "Name": "SHI006", "Price": 7000, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Moccasin", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2008, "ModelName": "Shs_SHI008", "Name": "SHI008", "Price": 800, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Moccasin", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2009, "ModelName": "Shs_SHI009", "Name": "SHI009", "Price": 2400, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2010, "ModelName": "Shs_SHI010", "Name": "SHI010", "Price": 1700, "Rarity": 1, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2011, "ModelName": "Shs_SHI011", "Name": "SHI011", "Price": 1200, "Rarity": 0, "Skill0": "SomersaultLanding"}, {"Addition": 0, "AocId": 0, "Brand": "B01", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2012, "ModelName": "Shs_SHI012", "Name": "SHI012", "Price": 1500, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Moccasin", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2013, "ModelName": "Shs_SHI013", "Name": "SHI013", "Price": 9400, "Rarity": 2, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2014, "ModelName": "Shs_SHI014", "Name": "SHI014", "Price": 3800, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2015, "ModelName": "Shs_SHI015", "Name": "SHI015", "Price": 9800, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2016, "ModelName": "Shs_SHI016", "Name": "SHI016", "Price": 3800, "Rarity": 1, "Skill0": "SomersaultLanding"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2017, "ModelName": "Shs_SHI017", "Name": "SHI017", "Price": 11000, "Rarity": 2, "Skill0": "SpecialIncrease_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2018, "ModelName": "Shs_SHI018", "Name": "SHI018", "Price": 11000, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2019, "ModelName": "Shs_SHI019", "Name": "SHI019", "Price": 8500, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2020, "ModelName": "Shs_SHI020", "Name": "SHI020", "Price": 2800, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 3, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 2021, "ModelName": "Shs_SHI021", "Name": "SHI021", "Price": 0, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2022, "ModelName": "Shs_SHI022", "Name": "SHI022", "Price": 11000, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2023, "ModelName": "Shs_SHI023", "Name": "SHI023", "Price": 11000, "Rarity": 2, "Skill0": "SomersaultLanding"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2024, "ModelName": "Shs_SHI024", "Name": "SHI024", "Price": 1050, "Rarity": 0, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2025, "ModelName": "Shs_SHI025", "Name": "SHI025", "Price": 12800, "Rarity": 2, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2026, "ModelName": "Shs_SHI026", "Name": "SHI026", "Price": 5800, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2027, "ModelName": "Shs_SHI027", "Name": "SHI027", "Price": 13000, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2028, "ModelName": "Shs_SHI028", "Name": "SHI028", "Price": 3600, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2029, "ModelName": "Shs_SHI029", "Name": "SHI029", "Price": 1050, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2030, "ModelName": "Shs_SHI030", "Name": "SHI030", "Price": 1050, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2031, "ModelName": "Shs_SHI031", "Name": "SHI031", "Price": 1050, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2032, "ModelName": "Shs_SHI032", "Name": "SHI032", "Price": 1050, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2033, "ModelName": "Shs_SHI033", "Name": "SHI033", "Price": 1050, "Rarity": 0, "Skill0": "SomersaultLanding"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2034, "ModelName": "Shs_SHI034", "Name": "SHI034", "Price": 5880, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2035, "ModelName": "Shs_SHI035", "Name": "SHI035", "Price": 4880, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B17", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2036, "ModelName": "Shs_SHI036", "Name": "SHI036", "Price": 9880, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 4, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2037, "ModelName": "Shs_SHI037", "Name": "SHI037", "Price": 3260, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2038, "ModelName": "Shs_SHI038", "Name": "SHI038", "Price": 12800, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2039, "ModelName": "Shs_SHI039", "Name": "SHI039", "Price": 2780, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 2040, "ModelName": "Shs_SHI040", "Name": "SHI040", "Price": 1350, "Rarity": 0, "Skill0": "SpecialTime_Up"}, {"Addition": 9, "AocId": 5, "Brand": "B16", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 2041, "ModelName": "Shs_SHI041", "Name": "SHI041", "Price": 0, "Rarity": 2, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3000, "ModelName": "Shs_SHT000", "Name": "SHT000", "Price": 500, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3001, "ModelName": "Shs_SHT001", "Name": "SHT001", "Price": 1100, "Rarity": 0, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3002, "ModelName": "Shs_SHT002", "Name": "SHT002", "Price": 700, "Rarity": 0, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3003, "ModelName": "Shs_SHT003", "Name": "SHT003", "Price": 2500, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3004, "ModelName": "Shs_SHT004", "Name": "SHT004", "Price": 700, "Rarity": 0, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3005, "ModelName": "Shs_SHT005", "Name": "SHT005", "Price": 800, "Rarity": 0, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3006, "ModelName": "Shs_SHT006", "Name": "SHT006", "Price": 8000, "Rarity": 2, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3007, "ModelName": "Shs_SHT007", "Name": "SHT007", "Price": 1800, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3008, "ModelName": "Shs_SHT008", "Name": "SHT008", "Price": 4500, "Rarity": 1, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3009, "ModelName": "Shs_SHT009", "Name": "SHT009", "Price": 500, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3010, "ModelName": "Shs_SHT010", "Name": "SHT010", "Price": 1000, "Rarity": 0, "Skill0": "ObjectEffect_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3011, "ModelName": "Shs_SHT011", "Name": "SHT011", "Price": 900, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3012, "ModelName": "Shs_SHT012", "Name": "SHT012", "Price": 1300, "Rarity": 0, "Skill0": "MarkingTime_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B17", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3013, "ModelName": "Shs_SHT013", "Name": "SHT013", "Price": 10000, "Rarity": 2, "Skill0": "SomersaultLanding"}, {"Addition": 0, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3014, "ModelName": "Shs_SHT014", "Name": "SHT014", "Price": 1700, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3015, "ModelName": "Shs_SHT015", "Name": "SHT015", "Price": 3900, "Rarity": 1, "Skill0": "ObjectEffect_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3016, "ModelName": "Shs_SHT016", "Name": "SHT016", "Price": 4900, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3017, "ModelName": "Shs_SHT017", "Name": "SHT017", "Price": 8900, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 4, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3018, "ModelName": "Shs_SHT018", "Name": "SHT018", "Price": 3260, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": "5", "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 3019, "ModelName": "Shs_SHT019", "Name": "SHT019", "Price": 1200, "Rarity": 0, "Skill0": "ObjectEffect_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Sandal", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4000, "ModelName": "Shs_SDL000", "Name": "SDL000", "Price": 600, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Sandal", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4001, "ModelName": "Shs_SDL001", "Name": "SDL001", "Price": 1800, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Comfort", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4002, "ModelName": "Shs_CFS000", "Name": "CFS000", "Price": 700, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Comfort", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4003, "ModelName": "Shs_CFS001", "Name": "CFS001", "Price": 2000, "Rarity": 1, "Skill0": "ObjectEffect_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Barefoot", "HowToGet": "cShop", "Id": 4007, "ModelName": "Shs_SDL003", "Name": "SDL003", "Price": 4800, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Barefoot", "HowToGet": "cShop", "Id": 4008, "ModelName": "Shs_SDL004", "Name": "SDL004", "Price": 300, "Rarity": 0, "Skill0": "ObjectEffect_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Barefoot", "HowToGet": "cShop", "Id": 4009, "ModelName": "Shs_SDL005", "Name": "SDL005", "Price": 8800, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Sandal", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4010, "ModelName": "Shs_SDL006", "Name": "SDL006", "Price": 5000, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B06", "Genre0": "Shoes_Sandal", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4011, "ModelName": "Shs_SDL007", "Name": "SDL007", "Price": 2880, "Rarity": 1, "Skill0": "ObjectEffect_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B06", "Genre0": "Shoes_Sandal", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 4012, "ModelName": "Shs_SDL008", "Name": "SDL008", "Price": 2880, "Rarity": 1, "Skill0": "MarkingTime_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Barefoot", "HowToGet": "cShop", "Id": 4013, "ModelName": "Shs_SDL009", "Name": "SDL009", "Price": 280, "Rarity": 0, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5000, "ModelName": "Shs_TRS000", "Name": "TRS000", "Price": 7500, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5001, "ModelName": "Shs_TRS001", "Name": "TRS001", "Price": 3000, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 5002, "ModelName": "Shs_TRS002", "Name": "TRS002", "Price": 9800, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6000, "ModelName": "Shs_BOT000", "Name": "BOT000", "Price": 3800, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6001, "ModelName": "Shs_BOT001", "Name": "BOT001", "Price": 3000, "Rarity": 1, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6002, "ModelName": "Shs_BOT002", "Name": "BOT002", "Price": 11000, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6003, "ModelName": "Shs_BOT003", "Name": "BOT003", "Price": 10800, "Rarity": 2, "Skill0": "OpInkEffect_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_RainBoots", "Genre1": "Shoes_Boots", "HowToGet": "cShop", "Id": 6004, "ModelName": "Shs_BOT004", "Name": "BOT004", "Price": 1600, "Rarity": 1, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_RainBoots", "Genre1": "Shoes_Boots", "HowToGet": "cShop", "Id": 6005, "ModelName": "Shs_BOT005", "Name": "BOT005", "Price": 600, "Rarity": 0, "Skill0": "HumanMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6006, "ModelName": "Shs_BOT006", "Name": "BOT006", "Price": 3800, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6007, "ModelName": "Shs_BOT007", "Name": "BOT007", "Price": 9000, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6008, "ModelName": "Shs_BOT008", "Name": "BOT008", "Price": 3000, "Rarity": 1, "Skill0": "RespawnSpecialGauge_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B09", "Genre0": "Shoes_RainBoots", "Genre1": "Shoes_Boots", "HowToGet": "cShop", "Id": 6009, "ModelName": "Shs_BOT009", "Name": "BOT009", "Price": 450, "Rarity": 0, "Skill0": "SomersaultLanding"}, {"Addition": 3, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6010, "ModelName": "Shs_BOT010", "Name": "BOT010", "Price": 8000, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B10", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6011, "ModelName": "Shs_BOT011", "Name": "BOT011", "Price": 8200, "Rarity": 2, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 0, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6012, "ModelName": "Shs_BOT012", "Name": "BOT012", "Price": 11500, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6013, "ModelName": "Shs_BOT013", "Name": "BOT013", "Price": 8800, "Rarity": 2, "Skill0": "MarkingTime_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6014, "ModelName": "Shs_BOT014", "Name": "BOT014", "Price": 12000, "Rarity": 2, "Skill0": "SubInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B05", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6015, "ModelName": "Shs_BOT015", "Name": "BOT015", "Price": 8500, "Rarity": 2, "Skill0": "ObjectEffect_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6016, "ModelName": "Shs_BOT016", "Name": "BOT016", "Price": 9696, "Rarity": 2, "Skill0": "SquidMove_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6017, "ModelName": "Shs_BOT017", "Name": "BOT017", "Price": 5000, "Rarity": 1, "Skill0": "SomersaultLanding"}, {"Addition": 5, "AocId": 0, "Brand": "B08", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 6018, "ModelName": "Shs_BOT018", "Name": "BOT018", "Price": 11500, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7000, "ModelName": "Shs_SLP000", "Name": "SLP000", "Price": 400, "Rarity": 0, "Skill0": "BombDistance_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7001, "ModelName": "Shs_SLP001", "Name": "SLP001", "Price": 300, "Rarity": 0, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7002, "ModelName": "Shs_SLP002", "Name": "SLP002", "Price": 1500, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 3, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 7003, "ModelName": "Shs_SLP003", "Name": "SLP003", "Price": 1500, "Rarity": 1, "Skill0": "SomersaultLanding"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_RubberSole", "Genre1": "Shoes_Leather", "HowToGet": "cShop", "Id": 8000, "ModelName": "Shs_LTS000", "Name": "LTS000", "Price": 1400, "Rarity": 0, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_RubberSole", "Genre1": "Shoes_Leather", "HowToGet": "cShop", "Id": 8001, "ModelName": "Shs_LTS001", "Name": "LTS001", "Price": 2400, "Rarity": 1, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_RubberSole", "Genre1": "Shoes_Leather", "HowToGet": "cShop", "Id": 8002, "ModelName": "Shs_LTS002", "Name": "LTS002", "Price": 2800, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8003, "ModelName": "Shs_LTS003", "Name": "LTS003", "Price": 800, "Rarity": 0, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8004, "ModelName": "Shs_LTS004", "Name": "LTS004", "Price": 1200, "Rarity": 0, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8005, "ModelName": "Shs_LTS005", "Name": "LTS005", "Price": 9500, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8006, "ModelName": "Shs_LTS006", "Name": "LTS006", "Price": 8600, "Rarity": 2, "Skill0": "ObjectEffect_Up"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8007, "ModelName": "Shs_LTS007", "Name": "LTS007", "Price": 4600, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8008, "ModelName": "Shs_LTS008", "Name": "LTS008", "Price": 4600, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 3, "AocId": 0, "Brand": "B15", "Genre0": "Shoes_RubberSole", "Genre1": "Shoes_Leather", "HowToGet": "cShop", "Id": 8010, "ModelName": "Shs_LTS010", "Name": "LTS010", "Price": 8880, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B15", "Genre0": "Shoes_RubberSole", "Genre1": "Shoes_Leather", "HowToGet": "cShop", "Id": 8011, "ModelName": "Shs_LTS011", "Name": "LTS011", "Price": 9990, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 5, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cShop", "Id": 8009, "ModelName": "Shs_LTS009", "Name": "LTS009", "Price": 10500, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 7, "AocId": 4, "Brand": "B03", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 8012, "ModelName": "Shs_LTS012", "Name": "LTS012", "Price": 0, "Rarity": 2, "Skill0": "SuperJumpSign_Hide"}, {"Addition": 3, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_RainBoots", "Genre1": "Shoes_Boots", "HowToGet": "cOther", "Id": 21001, "ModelName": "Shs_COP101", "Name": "COP101", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 4, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21002, "ModelName": "Shs_COP102", "Name": "COP102", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 5, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21003, "ModelName": "Shs_COP103", "Name": "COP103", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 17, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_Barefoot", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21004, "ModelName": "Shs_COP104", "Name": "COP104", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 8, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_BigFoot", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 21005, "ModelName": "Shs_COP105", "Name": "COP105", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 12, "AocId": 0, "Brand": "B97", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Barefoot", "HowToGet": "cOther", "Id": 21006, "ModelName": "Shs_COP106", "Name": "COP106", "Price": 0, "Rarity": 2, "Skill0": "RespawnTime_Save"}, {"Addition": 15, "AocId": 7, "Brand": "B00", "Genre0": null, "Genre1": null, "HowToGet": "cOther", "Id": 22000, "ModelName": "Shs_CRC000", "Name": "CRC000", "Price": 0, "Rarity": 2, "Skill0": "ObjectEffect_Up"}, {"Addition": 15, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Lowcut", "HowToGet": "cOrder", "Id": 23000, "ModelName": "Shs_HAP000", "Name": "HAP000", "Price": 8021, "Rarity": 2, "Skill0": "JumpTime_Save"}, {"Addition": 15, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Hicut", "HowToGet": "cOrder", "Id": 23001, "ModelName": "Shs_HAP001", "Name": "HAP001", "Price": 12000, "Rarity": 2, "Skill0": "SomersaultLanding"}, {"Addition": 15, "AocId": 0, "Brand": "B03", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Boots", "HowToGet": "cOrder", "Id": 23002, "ModelName": "Shs_HAP002", "Name": "HAP002", "Price": 9800, "Rarity": 2, "Skill0": "MainInk_Save"}, {"Addition": 15, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Lowcut", "HowToGet": "cOrder", "Id": 23003, "ModelName": "Shs_HAP003", "Name": "HAP003", "Price": 10340, "Rarity": 2, "Skill0": "InkRecovery_Up"}, {"Addition": 15, "AocId": 0, "Brand": "B04", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Lowcut", "HowToGet": "cOrder", "Id": 23004, "ModelName": "Shs_HAP004", "Name": "HAP004", "Price": 8018, "Rarity": 2, "Skill0": "SpecialTime_Up"}, {"Addition": 15, "AocId": 0, "Brand": "B16", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Hicut", "HowToGet": "cOrder", "Id": 23005, "ModelName": "Shs_HAP005", "Name": "HAP005", "Price": 11000, "Rarity": 2, "Skill0": "BombDamage_Reduction"}, {"Addition": 15, "AocId": 0, "Brand": "B11", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Hicut", "HowToGet": "cOrder", "Id": 23006, "ModelName": "Shs_HAP006", "Name": "HAP006", "Price": 9600, "Rarity": 2, "Skill0": "BombDistance_Up"}, {"Addition": 15, "AocId": 0, "Brand": "B02", "Genre0": "Shoes_Spring", "Genre1": "Shoes_Slippon", "HowToGet": "cOrder", "Id": 23007, "ModelName": "Shs_HAP007", "Name": "HAP007", "Price": 10140, "Rarity": 2, "Skill0": "ObjectEffect_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25000, "ModelName": "Shs_AMB000", "Name": "AMB000", "Price": 0, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Sandal", "Genre1": "Shoes_Boots", "HowToGet": "cOther", "Id": 25001, "ModelName": "Shs_AMB001", "Name": "AMB001", "Price": 0, "Rarity": 1, "Skill0": "SpecialTime_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_BigFoot", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25002, "ModelName": "Shs_AMB002", "Name": "AMB002", "Price": 0, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Leather", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25003, "ModelName": "Shs_AMB003", "Name": "AMB003", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25004, "ModelName": "Shs_AMB004", "Name": "AMB004", "Price": 0, "Rarity": 1, "Skill0": "SquidMove_Up"}, {"Addition": 0, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_BigFoot", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25005, "ModelName": "Shs_AMB005", "Name": "AMB005", "Price": 0, "Rarity": 1, "Skill0": "BombDamage_Reduction"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Hicut", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25006, "ModelName": "Shs_AMB006", "Name": "AMB006", "Price": 0, "Rarity": 1, "Skill0": "SpecialIncrease_Up"}, {"Addition": 7, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25007, "ModelName": "Shs_AMB007", "Name": "AMB007", "Price": 0, "Rarity": 1, "Skill0": "InkRecovery_Up"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25008, "ModelName": "Shs_AMB008", "Name": "AMB008", "Price": 0, "Rarity": 1, "Skill0": "HumanMove_Up"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25009, "ModelName": "Shs_AMB009", "Name": "AMB009", "Price": 0, "Rarity": 1, "Skill0": "ObjectEffect_Up"}, {"Addition": 10, "AocId": 0, "Brand": "B99", "Genre0": "Shoes_BigFoot", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 25010, "ModelName": "Shs_AMB010", "Name": "AMB010", "Price": 0, "Rarity": 1, "Skill0": "RespawnTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Lowcut", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27000, "ModelName": "Shs_MSN000", "Name": "MSN000", "Price": 0, "Rarity": 1, "Skill0": "JumpTime_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27004, "ModelName": "Shs_MSN004", "Name": "MSN004", "Price": 0, "Rarity": 1, "Skill0": "MainInk_Save"}, {"Addition": 0, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27101, "ModelName": "Shs_MSN101", "Name": "MSN101", "Price": 0, "Rarity": 1, "Skill0": "SubInk_Save"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27104, "ModelName": "Shs_MSN104", "Name": "MSN104", "Price": 0, "Rarity": 1, "Skill0": "ObjectEffect_Up"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Boots", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27105, "ModelName": "Shs_MSN105", "Name": "MSN105", "Price": 0, "Rarity": 1, "Skill0": "SomersaultLanding"}, {"Addition": 6, "AocId": 0, "Brand": "B98", "Genre0": "Shoes_Slippon", "Genre1": "Unknown", "HowToGet": "cOther", "Id": 27106, "ModelName": "Shs_MSN106", "Name": "MSN106", "Price": 0, "Rarity": 1, "Skill0": "HumanMove_Up"}] \ No newline at end of file +[ + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cOrder", + "Id": 1, + "ModelName": "Shs_FST000", + "Name": "FST000", + "Price": 300, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1000, + "ModelName": "Shs_SLO000", + "Name": "SLO000", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1001, + "ModelName": "Shs_SLO001", + "Name": "SLO001", + "Price": 400, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1002, + "ModelName": "Shs_SLO002", + "Name": "SLO002", + "Price": 8000, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1003, + "ModelName": "Shs_SLO003", + "Name": "SLO003", + "Price": 600, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1004, + "ModelName": "Shs_SLO004", + "Name": "SLO004", + "Price": 800, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1005, + "ModelName": "Shs_SLO005", + "Name": "SLO005", + "Price": 2000, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1006, + "ModelName": "Shs_SLO006", + "Name": "SLO006", + "Price": 500, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1007, + "ModelName": "Shs_SLO007", + "Name": "SLO007", + "Price": 1500, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1008, + "ModelName": "Shs_SLO008", + "Name": "SLO008", + "Price": 8700, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1009, + "ModelName": "Shs_SLO009", + "Name": "SLO009", + "Price": 1400, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Spike", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1010, + "ModelName": "Shs_SLO010", + "Name": "SLO010", + "Price": 9600, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Spike", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1011, + "ModelName": "Shs_SLO011", + "Name": "SLO011", + "Price": 7500, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Bouldering", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1012, + "ModelName": "Shs_SLO012", + "Name": "SLO012", + "Price": 3200, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Bouldering", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1013, + "ModelName": "Shs_SLO013", + "Name": "SLO013", + "Price": 1200, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1014, + "ModelName": "Shs_SLO014", + "Name": "SLO014", + "Price": 1300, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1015, + "ModelName": "Shs_SLO015", + "Name": "SLO015", + "Price": 1800, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1016, + "ModelName": "Shs_SLO016", + "Name": "SLO016", + "Price": 1400, + "Rarity": 0, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1017, + "ModelName": "Shs_SLO017", + "Name": "SLO017", + "Price": 1200, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1018, + "ModelName": "Shs_SLO018", + "Name": "SLO018", + "Price": 4200, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1019, + "ModelName": "Shs_SLO019", + "Name": "SLO019", + "Price": 1200, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": "Shoes_Spike", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 1020, + "ModelName": "Shs_SLO020", + "Name": "SLO020", + "Price": 10500, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2000, + "ModelName": "Shs_SHI000", + "Name": "SHI000", + "Price": 800, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2001, + "ModelName": "Shs_SHI001", + "Name": "SHI001", + "Price": 800, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2002, + "ModelName": "Shs_SHI002", + "Name": "SHI002", + "Price": 500, + "Rarity": 0, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2003, + "ModelName": "Shs_SHI003", + "Name": "SHI003", + "Price": 1000, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2004, + "ModelName": "Shs_SHI004", + "Name": "SHI004", + "Price": 500, + "Rarity": 0, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2005, + "ModelName": "Shs_SHI005", + "Name": "SHI005", + "Price": 1800, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2006, + "ModelName": "Shs_SHI006", + "Name": "SHI006", + "Price": 7000, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Moccasin", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2008, + "ModelName": "Shs_SHI008", + "Name": "SHI008", + "Price": 800, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Moccasin", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2009, + "ModelName": "Shs_SHI009", + "Name": "SHI009", + "Price": 2400, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2010, + "ModelName": "Shs_SHI010", + "Name": "SHI010", + "Price": 1700, + "Rarity": 1, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2011, + "ModelName": "Shs_SHI011", + "Name": "SHI011", + "Price": 1200, + "Rarity": 0, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B01", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2012, + "ModelName": "Shs_SHI012", + "Name": "SHI012", + "Price": 1500, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Moccasin", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2013, + "ModelName": "Shs_SHI013", + "Name": "SHI013", + "Price": 9400, + "Rarity": 2, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2014, + "ModelName": "Shs_SHI014", + "Name": "SHI014", + "Price": 3800, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2015, + "ModelName": "Shs_SHI015", + "Name": "SHI015", + "Price": 9800, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2016, + "ModelName": "Shs_SHI016", + "Name": "SHI016", + "Price": 3800, + "Rarity": 1, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2017, + "ModelName": "Shs_SHI017", + "Name": "SHI017", + "Price": 11000, + "Rarity": 2, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2018, + "ModelName": "Shs_SHI018", + "Name": "SHI018", + "Price": 11000, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2019, + "ModelName": "Shs_SHI019", + "Name": "SHI019", + "Price": 8500, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2020, + "ModelName": "Shs_SHI020", + "Name": "SHI020", + "Price": 2800, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 3, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 2021, + "ModelName": "Shs_SHI021", + "Name": "SHI021", + "Price": 0, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2022, + "ModelName": "Shs_SHI022", + "Name": "SHI022", + "Price": 11000, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2023, + "ModelName": "Shs_SHI023", + "Name": "SHI023", + "Price": 11000, + "Rarity": 2, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2024, + "ModelName": "Shs_SHI024", + "Name": "SHI024", + "Price": 1050, + "Rarity": 0, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2025, + "ModelName": "Shs_SHI025", + "Name": "SHI025", + "Price": 12800, + "Rarity": 2, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2026, + "ModelName": "Shs_SHI026", + "Name": "SHI026", + "Price": 5800, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2027, + "ModelName": "Shs_SHI027", + "Name": "SHI027", + "Price": 13000, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2028, + "ModelName": "Shs_SHI028", + "Name": "SHI028", + "Price": 3600, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2029, + "ModelName": "Shs_SHI029", + "Name": "SHI029", + "Price": 1050, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2030, + "ModelName": "Shs_SHI030", + "Name": "SHI030", + "Price": 1050, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2031, + "ModelName": "Shs_SHI031", + "Name": "SHI031", + "Price": 1050, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2032, + "ModelName": "Shs_SHI032", + "Name": "SHI032", + "Price": 1050, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2033, + "ModelName": "Shs_SHI033", + "Name": "SHI033", + "Price": 1050, + "Rarity": 0, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2034, + "ModelName": "Shs_SHI034", + "Name": "SHI034", + "Price": 5880, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2035, + "ModelName": "Shs_SHI035", + "Name": "SHI035", + "Price": 4880, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B17", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2036, + "ModelName": "Shs_SHI036", + "Name": "SHI036", + "Price": 9880, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 4, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2037, + "ModelName": "Shs_SHI037", + "Name": "SHI037", + "Price": 3260, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2038, + "ModelName": "Shs_SHI038", + "Name": "SHI038", + "Price": 12800, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2039, + "ModelName": "Shs_SHI039", + "Name": "SHI039", + "Price": 2780, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 2040, + "ModelName": "Shs_SHI040", + "Name": "SHI040", + "Price": 1350, + "Rarity": 0, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 9, + "AocId": 5, + "Brand": "B16", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 2041, + "ModelName": "Shs_SHI041", + "Name": "SHI041", + "Price": 0, + "Rarity": 2, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3000, + "ModelName": "Shs_SHT000", + "Name": "SHT000", + "Price": 500, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3001, + "ModelName": "Shs_SHT001", + "Name": "SHT001", + "Price": 1100, + "Rarity": 0, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3002, + "ModelName": "Shs_SHT002", + "Name": "SHT002", + "Price": 700, + "Rarity": 0, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3003, + "ModelName": "Shs_SHT003", + "Name": "SHT003", + "Price": 2500, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3004, + "ModelName": "Shs_SHT004", + "Name": "SHT004", + "Price": 700, + "Rarity": 0, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3005, + "ModelName": "Shs_SHT005", + "Name": "SHT005", + "Price": 800, + "Rarity": 0, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3006, + "ModelName": "Shs_SHT006", + "Name": "SHT006", + "Price": 8000, + "Rarity": 2, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3007, + "ModelName": "Shs_SHT007", + "Name": "SHT007", + "Price": 1800, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3008, + "ModelName": "Shs_SHT008", + "Name": "SHT008", + "Price": 4500, + "Rarity": 1, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3009, + "ModelName": "Shs_SHT009", + "Name": "SHT009", + "Price": 500, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3010, + "ModelName": "Shs_SHT010", + "Name": "SHT010", + "Price": 1000, + "Rarity": 0, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3011, + "ModelName": "Shs_SHT011", + "Name": "SHT011", + "Price": 900, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3012, + "ModelName": "Shs_SHT012", + "Name": "SHT012", + "Price": 1300, + "Rarity": 0, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B17", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3013, + "ModelName": "Shs_SHT013", + "Name": "SHT013", + "Price": 10000, + "Rarity": 2, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3014, + "ModelName": "Shs_SHT014", + "Name": "SHT014", + "Price": 1700, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3015, + "ModelName": "Shs_SHT015", + "Name": "SHT015", + "Price": 3900, + "Rarity": 1, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3016, + "ModelName": "Shs_SHT016", + "Name": "SHT016", + "Price": 4900, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3017, + "ModelName": "Shs_SHT017", + "Name": "SHT017", + "Price": 8900, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 4, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3018, + "ModelName": "Shs_SHT018", + "Name": "SHT018", + "Price": 3260, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": "5", + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 3019, + "ModelName": "Shs_SHT019", + "Name": "SHT019", + "Price": 1200, + "Rarity": 0, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Sandal", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4000, + "ModelName": "Shs_SDL000", + "Name": "SDL000", + "Price": 600, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Sandal", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4001, + "ModelName": "Shs_SDL001", + "Name": "SDL001", + "Price": 1800, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Comfort", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4002, + "ModelName": "Shs_CFS000", + "Name": "CFS000", + "Price": 700, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Comfort", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4003, + "ModelName": "Shs_CFS001", + "Name": "CFS001", + "Price": 2000, + "Rarity": 1, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Barefoot", + "HowToGet": "cShop", + "Id": 4007, + "ModelName": "Shs_SDL003", + "Name": "SDL003", + "Price": 4800, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Barefoot", + "HowToGet": "cShop", + "Id": 4008, + "ModelName": "Shs_SDL004", + "Name": "SDL004", + "Price": 300, + "Rarity": 0, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Barefoot", + "HowToGet": "cShop", + "Id": 4009, + "ModelName": "Shs_SDL005", + "Name": "SDL005", + "Price": 8800, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Sandal", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4010, + "ModelName": "Shs_SDL006", + "Name": "SDL006", + "Price": 5000, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B06", + "Genre0": "Shoes_Sandal", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4011, + "ModelName": "Shs_SDL007", + "Name": "SDL007", + "Price": 2880, + "Rarity": 1, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B06", + "Genre0": "Shoes_Sandal", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 4012, + "ModelName": "Shs_SDL008", + "Name": "SDL008", + "Price": 2880, + "Rarity": 1, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Barefoot", + "HowToGet": "cShop", + "Id": 4013, + "ModelName": "Shs_SDL009", + "Name": "SDL009", + "Price": 280, + "Rarity": 0, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5000, + "ModelName": "Shs_TRS000", + "Name": "TRS000", + "Price": 7500, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5001, + "ModelName": "Shs_TRS001", + "Name": "TRS001", + "Price": 3000, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 5002, + "ModelName": "Shs_TRS002", + "Name": "TRS002", + "Price": 9800, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6000, + "ModelName": "Shs_BOT000", + "Name": "BOT000", + "Price": 3800, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6001, + "ModelName": "Shs_BOT001", + "Name": "BOT001", + "Price": 3000, + "Rarity": 1, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6002, + "ModelName": "Shs_BOT002", + "Name": "BOT002", + "Price": 11000, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6003, + "ModelName": "Shs_BOT003", + "Name": "BOT003", + "Price": 10800, + "Rarity": 2, + "Skill0": "OpInkEffect_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_RainBoots", + "Genre1": "Shoes_Boots", + "HowToGet": "cShop", + "Id": 6004, + "ModelName": "Shs_BOT004", + "Name": "BOT004", + "Price": 1600, + "Rarity": 1, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_RainBoots", + "Genre1": "Shoes_Boots", + "HowToGet": "cShop", + "Id": 6005, + "ModelName": "Shs_BOT005", + "Name": "BOT005", + "Price": 600, + "Rarity": 0, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6006, + "ModelName": "Shs_BOT006", + "Name": "BOT006", + "Price": 3800, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6007, + "ModelName": "Shs_BOT007", + "Name": "BOT007", + "Price": 9000, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6008, + "ModelName": "Shs_BOT008", + "Name": "BOT008", + "Price": 3000, + "Rarity": 1, + "Skill0": "RespawnSpecialGauge_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B09", + "Genre0": "Shoes_RainBoots", + "Genre1": "Shoes_Boots", + "HowToGet": "cShop", + "Id": 6009, + "ModelName": "Shs_BOT009", + "Name": "BOT009", + "Price": 450, + "Rarity": 0, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6010, + "ModelName": "Shs_BOT010", + "Name": "BOT010", + "Price": 8000, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B10", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6011, + "ModelName": "Shs_BOT011", + "Name": "BOT011", + "Price": 8200, + "Rarity": 2, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6012, + "ModelName": "Shs_BOT012", + "Name": "BOT012", + "Price": 11500, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6013, + "ModelName": "Shs_BOT013", + "Name": "BOT013", + "Price": 8800, + "Rarity": 2, + "Skill0": "MarkingTime_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6014, + "ModelName": "Shs_BOT014", + "Name": "BOT014", + "Price": 12000, + "Rarity": 2, + "Skill0": "SubInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B05", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6015, + "ModelName": "Shs_BOT015", + "Name": "BOT015", + "Price": 8500, + "Rarity": 2, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6016, + "ModelName": "Shs_BOT016", + "Name": "BOT016", + "Price": 9696, + "Rarity": 2, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6017, + "ModelName": "Shs_BOT017", + "Name": "BOT017", + "Price": 5000, + "Rarity": 1, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B08", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 6018, + "ModelName": "Shs_BOT018", + "Name": "BOT018", + "Price": 11500, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7000, + "ModelName": "Shs_SLP000", + "Name": "SLP000", + "Price": 400, + "Rarity": 0, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7001, + "ModelName": "Shs_SLP001", + "Name": "SLP001", + "Price": 300, + "Rarity": 0, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7002, + "ModelName": "Shs_SLP002", + "Name": "SLP002", + "Price": 1500, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 7003, + "ModelName": "Shs_SLP003", + "Name": "SLP003", + "Price": 1500, + "Rarity": 1, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_RubberSole", + "Genre1": "Shoes_Leather", + "HowToGet": "cShop", + "Id": 8000, + "ModelName": "Shs_LTS000", + "Name": "LTS000", + "Price": 1400, + "Rarity": 0, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_RubberSole", + "Genre1": "Shoes_Leather", + "HowToGet": "cShop", + "Id": 8001, + "ModelName": "Shs_LTS001", + "Name": "LTS001", + "Price": 2400, + "Rarity": 1, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_RubberSole", + "Genre1": "Shoes_Leather", + "HowToGet": "cShop", + "Id": 8002, + "ModelName": "Shs_LTS002", + "Name": "LTS002", + "Price": 2800, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8003, + "ModelName": "Shs_LTS003", + "Name": "LTS003", + "Price": 800, + "Rarity": 0, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8004, + "ModelName": "Shs_LTS004", + "Name": "LTS004", + "Price": 1200, + "Rarity": 0, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8005, + "ModelName": "Shs_LTS005", + "Name": "LTS005", + "Price": 9500, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8006, + "ModelName": "Shs_LTS006", + "Name": "LTS006", + "Price": 8600, + "Rarity": 2, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8007, + "ModelName": "Shs_LTS007", + "Name": "LTS007", + "Price": 4600, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8008, + "ModelName": "Shs_LTS008", + "Name": "LTS008", + "Price": 4600, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B15", + "Genre0": "Shoes_RubberSole", + "Genre1": "Shoes_Leather", + "HowToGet": "cShop", + "Id": 8010, + "ModelName": "Shs_LTS010", + "Name": "LTS010", + "Price": 8880, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B15", + "Genre0": "Shoes_RubberSole", + "Genre1": "Shoes_Leather", + "HowToGet": "cShop", + "Id": 8011, + "ModelName": "Shs_LTS011", + "Name": "LTS011", + "Price": 9990, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cShop", + "Id": 8009, + "ModelName": "Shs_LTS009", + "Name": "LTS009", + "Price": 10500, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 7, + "AocId": 4, + "Brand": "B03", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 8012, + "ModelName": "Shs_LTS012", + "Name": "LTS012", + "Price": 0, + "Rarity": 2, + "Skill0": "SuperJumpSign_Hide" + }, + { + "Addition": 3, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_RainBoots", + "Genre1": "Shoes_Boots", + "HowToGet": "cOther", + "Id": 21001, + "ModelName": "Shs_COP101", + "Name": "COP101", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 4, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21002, + "ModelName": "Shs_COP102", + "Name": "COP102", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 5, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21003, + "ModelName": "Shs_COP103", + "Name": "COP103", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 17, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_Barefoot", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21004, + "ModelName": "Shs_COP104", + "Name": "COP104", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 8, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_BigFoot", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 21005, + "ModelName": "Shs_COP105", + "Name": "COP105", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 12, + "AocId": 0, + "Brand": "B97", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Barefoot", + "HowToGet": "cOther", + "Id": 21006, + "ModelName": "Shs_COP106", + "Name": "COP106", + "Price": 0, + "Rarity": 2, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 15, + "AocId": 7, + "Brand": "B00", + "Genre0": null, + "Genre1": null, + "HowToGet": "cOther", + "Id": 22000, + "ModelName": "Shs_CRC000", + "Name": "CRC000", + "Price": 0, + "Rarity": 2, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Lowcut", + "HowToGet": "cOrder", + "Id": 23000, + "ModelName": "Shs_HAP000", + "Name": "HAP000", + "Price": 8021, + "Rarity": 2, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Hicut", + "HowToGet": "cOrder", + "Id": 23001, + "ModelName": "Shs_HAP001", + "Name": "HAP001", + "Price": 12000, + "Rarity": 2, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B03", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Boots", + "HowToGet": "cOrder", + "Id": 23002, + "ModelName": "Shs_HAP002", + "Name": "HAP002", + "Price": 9800, + "Rarity": 2, + "Skill0": "MainInk_Save" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Lowcut", + "HowToGet": "cOrder", + "Id": 23003, + "ModelName": "Shs_HAP003", + "Name": "HAP003", + "Price": 10340, + "Rarity": 2, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B04", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Lowcut", + "HowToGet": "cOrder", + "Id": 23004, + "ModelName": "Shs_HAP004", + "Name": "HAP004", + "Price": 8018, + "Rarity": 2, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B16", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Hicut", + "HowToGet": "cOrder", + "Id": 23005, + "ModelName": "Shs_HAP005", + "Name": "HAP005", + "Price": 11000, + "Rarity": 2, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B11", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Hicut", + "HowToGet": "cOrder", + "Id": 23006, + "ModelName": "Shs_HAP006", + "Name": "HAP006", + "Price": 9600, + "Rarity": 2, + "Skill0": "BombDistance_Up" + }, + { + "Addition": 15, + "AocId": 0, + "Brand": "B02", + "Genre0": "Shoes_Spring", + "Genre1": "Shoes_Slippon", + "HowToGet": "cOrder", + "Id": 23007, + "ModelName": "Shs_HAP007", + "Name": "HAP007", + "Price": 10140, + "Rarity": 2, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25000, + "ModelName": "Shs_AMB000", + "Name": "AMB000", + "Price": 0, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Sandal", + "Genre1": "Shoes_Boots", + "HowToGet": "cOther", + "Id": 25001, + "ModelName": "Shs_AMB001", + "Name": "AMB001", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialTime_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_BigFoot", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25002, + "ModelName": "Shs_AMB002", + "Name": "AMB002", + "Price": 0, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Leather", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25003, + "ModelName": "Shs_AMB003", + "Name": "AMB003", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25004, + "ModelName": "Shs_AMB004", + "Name": "AMB004", + "Price": 0, + "Rarity": 1, + "Skill0": "SquidMove_Up" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_BigFoot", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25005, + "ModelName": "Shs_AMB005", + "Name": "AMB005", + "Price": 0, + "Rarity": 1, + "Skill0": "BombDamage_Reduction" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Hicut", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25006, + "ModelName": "Shs_AMB006", + "Name": "AMB006", + "Price": 0, + "Rarity": 1, + "Skill0": "SpecialIncrease_Up" + }, + { + "Addition": 7, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25007, + "ModelName": "Shs_AMB007", + "Name": "AMB007", + "Price": 0, + "Rarity": 1, + "Skill0": "InkRecovery_Up" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25008, + "ModelName": "Shs_AMB008", + "Name": "AMB008", + "Price": 0, + "Rarity": 1, + "Skill0": "HumanMove_Up" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25009, + "ModelName": "Shs_AMB009", + "Name": "AMB009", + "Price": 0, + "Rarity": 1, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 10, + "AocId": 0, + "Brand": "B99", + "Genre0": "Shoes_BigFoot", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 25010, + "ModelName": "Shs_AMB010", + "Name": "AMB010", + "Price": 0, + "Rarity": 1, + "Skill0": "RespawnTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Lowcut", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27000, + "ModelName": "Shs_MSN000", + "Name": "MSN000", + "Price": 0, + "Rarity": 1, + "Skill0": "JumpTime_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27004, + "ModelName": "Shs_MSN004", + "Name": "MSN004", + "Price": 0, + "Rarity": 1, + "Skill0": "MainInk_Save" + }, + { + "Addition": 0, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27101, + "ModelName": "Shs_MSN101", + "Name": "MSN101", + "Price": 0, + "Rarity": 1, + "Skill0": "SubInk_Save" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27104, + "ModelName": "Shs_MSN104", + "Name": "MSN104", + "Price": 0, + "Rarity": 1, + "Skill0": "ObjectEffect_Up" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Boots", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27105, + "ModelName": "Shs_MSN105", + "Name": "MSN105", + "Price": 0, + "Rarity": 1, + "Skill0": "SomersaultLanding" + }, + { + "Addition": 6, + "AocId": 0, + "Brand": "B98", + "Genre0": "Shoes_Slippon", + "Genre1": "Unknown", + "HowToGet": "cOther", + "Id": 27106, + "ModelName": "Shs_MSN106", + "Name": "MSN106", + "Price": 0, + "Rarity": 1, + "Skill0": "HumanMove_Up" + } +] diff --git a/old/scripts/WeaponInfo_Main_5_0.json b/old/scripts/WeaponInfo_Main_5_0.json index f11e7f3a7..a21906d24 100644 --- a/old/scripts/WeaponInfo_Main_5_0.json +++ b/old/scripts/WeaponInfo_Main_5_0.json @@ -1 +1,3199 @@ -[{"Addition": 0, "Id": 0, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Shooter_Short_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 12, "ParamValue1": 52, "ParamValue2": 75, "Price": 9700, "Range": 80, "Rank": 10, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 160, "StealthMoveAccLv": "High", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 1, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Shooter_Short_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 12, "ParamValue1": 52, "ParamValue2": 75, "Price": 12200, "Range": 80, "Rank": 18, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 170, "StealthMoveAccLv": "High", "Sub": "Flag"}, {"Addition": 15, "Id": 2, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Shooter_Short_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 12, "ParamValue1": 52, "ParamValue2": 75, "Price": 14600, "Range": 80, "Rank": 23, "ShotMoveVelType": "B", "Special": "SuperStamp", "SpecialCost": 180, "StealthMoveAccLv": "High", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 10, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_First_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 22, "ParamValue2": 75, "Price": 0, "Range": 110, "Rank": 1, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 11, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_First_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 22, "ParamValue2": 75, "Price": 1900, "Range": 110, "Rank": 4, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 10, "Id": 12, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_First_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 22, "ParamValue2": 75, "Price": 8700, "Range": 110, "Rank": 9, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Tako"}, {"Addition": 0, "Id": 20, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Shooter_Precision_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 42, "ParamValue1": 22, "ParamValue2": 75, "Price": 11200, "Range": 117, "Rank": 25, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 21, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Shooter_Precision_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 42, "ParamValue1": 22, "ParamValue2": 75, "Price": 16800, "Range": 117, "Rank": 27, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 30, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_Blaze_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 10, "ParamValue2": 90, "Price": 4900, "Range": 110, "Rank": 6, "ShotMoveVelType": "B", "Special": "LauncherCurling", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 31, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_Blaze_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 10, "ParamValue2": 90, "Price": 16900, "Range": 110, "Rank": 28, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 15, "Id": 32, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_Blaze_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 35, "ParamValue1": 10, "ParamValue2": 90, "Price": 19000, "Range": 110, "Rank": 29, "ShotMoveVelType": "B", "Special": "SuperBall", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 40, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Normal_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 45, "ParamValue2": 60, "Price": 900, "Range": 125, "Rank": 2, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 41, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Normal_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 45, "ParamValue2": 60, "Price": 2100, "Range": 125, "Rank": 4, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 8, "Id": 42, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Normal_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 45, "ParamValue2": 60, "Price": 5300, "Range": 125, "Rank": 6, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 45, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Normal_H", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 45, "ParamValue2": 60, "Price": 1500, "Range": 125, "Rank": 2, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 6, "Id": 46, "InkSaverLv": "Middle", "Lock": "Other", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Normal_Oct", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 45, "ParamValue2": 60, "Price": 0, "Range": 125, "Rank": 1, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 50, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Gravity_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 55, "ParamValue1": 75, "ParamValue2": 25, "Price": 9500, "Range": 133, "Rank": 14, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 51, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Gravity_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 55, "ParamValue1": 75, "ParamValue2": 25, "Price": 12700, "Range": 133, "Rank": 22, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 11, "Id": 52, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_Gravity_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 55, "ParamValue1": 75, "ParamValue2": 25, "Price": 15600, "Range": 133, "Rank": 25, "ShotMoveVelType": "B", "Special": "SuperBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 60, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_QuickMiddle_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 22, "ParamValue2": 75, "Price": 7100, "Range": 125, "Rank": 9, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 61, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_QuickMiddle_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 22, "ParamValue2": 75, "Price": 8800, "Range": 125, "Rank": 11, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 15, "Id": 62, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Shooter_QuickMiddle_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 50, "ParamValue1": 22, "ParamValue2": 75, "Price": 11100, "Range": 125, "Rank": 19, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 70, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Expert_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 60, "ParamValue2": 30, "Price": 13800, "Range": 170, "Rank": 10, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 71, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Expert_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 60, "ParamValue2": 30, "Price": 20800, "Range": 170, "Rank": 20, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 9, "Id": 72, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Expert_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 60, "ParamValue2": 30, "Price": 21900, "Range": 170, "Rank": 23, "ShotMoveVelType": "B", "Special": "SuperBall", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 80, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Heavy_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 74, "ParamValue1": 80, "ParamValue2": 10, "Price": 12600, "Range": 180, "Rank": 21, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 81, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Heavy_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 74, "ParamValue1": 80, "ParamValue2": 10, "Price": 16200, "Range": 180, "Rank": 26, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 90, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Middle", "Name": "Shooter_Long_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 82, "ParamValue1": 35, "ParamValue2": 30, "Price": 11300, "Range": 225, "Rank": 17, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 91, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Middle", "Name": "Shooter_Long_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 82, "ParamValue1": 35, "ParamValue2": 30, "Price": 15900, "Range": 225, "Rank": 27, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 200, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "DamageAreaUp", "MoveVelLv": "High", "Name": "Shooter_BlasterShort_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 9, "ParamValue1": 70, "ParamValue2": 30, "Price": 12100, "Range": 110, "Rank": 19, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 201, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageAreaUp", "MoveVelLv": "High", "Name": "Shooter_BlasterShort_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 9, "ParamValue1": 70, "ParamValue2": 30, "Price": 13600, "Range": 110, "Rank": 24, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 9, "Id": 202, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageAreaUp", "MoveVelLv": "High", "Name": "Shooter_BlasterShort_02", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 9, "ParamValue1": 70, "ParamValue2": 30, "Price": 16600, "Range": 110, "Rank": 26, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Piyo"}, {"Addition": 0, "Id": 210, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterMiddle_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 27, "ParamValue1": 70, "ParamValue2": 20, "Price": 3000, "Range": 133, "Rank": 5, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 211, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterMiddle_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 27, "ParamValue1": 70, "ParamValue2": 20, "Price": 15300, "Range": 133, "Rank": 27, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 215, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterMiddle_H", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 27, "ParamValue1": 70, "ParamValue2": 20, "Price": 3800, "Range": 133, "Rank": 5, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 220, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLong_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 56, "ParamValue1": 70, "ParamValue2": 10, "Price": 9300, "Range": 170, "Rank": 14, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 221, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLong_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 56, "ParamValue1": 70, "ParamValue2": 10, "Price": 11400, "Range": 170, "Rank": 18, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 15, "Id": 222, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLong_02", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 56, "ParamValue1": 70, "ParamValue2": 10, "Price": 14900, "Range": 170, "Rank": 23, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 230, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "High", "Name": "Shooter_BlasterLightShort_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 21, "ParamValue1": 25, "ParamValue2": 65, "Price": 18200, "Range": 110, "Rank": 30, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 231, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "High", "Name": "Shooter_BlasterLightShort_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 21, "ParamValue1": 25, "ParamValue2": 65, "Price": 20500, "Range": 110, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 240, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLight_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 35, "ParamValue2": 40, "Price": 9800, "Range": 167, "Rank": 13, "ShotMoveVelType": "B", "Special": "LauncherSplash", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 0, "Id": 241, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLight_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 35, "ParamValue2": 40, "Price": 11500, "Range": 167, "Rank": 16, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 11, "Id": 242, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLight_02", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 35, "ParamValue2": 40, "Price": 13500, "Range": 167, "Rank": 21, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Tako"}, {"Addition": 0, "Id": 250, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLightLong_00", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 72, "ParamValue1": 35, "ParamValue2": 30, "Price": 12800, "Range": 192, "Rank": 22, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 251, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ReduceDegJump", "MoveVelLv": "Middle", "Name": "Shooter_BlasterLightLong_01", "Param0": "Range", "Param1": "Explosion", "Param2": "Blaze", "ParamValue0": 72, "ParamValue1": 35, "ParamValue2": 30, "Price": 14000, "Range": 192, "Rank": 24, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 300, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleQuick_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 25, "ParamValue2": 65, "Price": 10400, "Range": 135, "Rank": 18, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 301, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleQuick_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 25, "ParamValue2": 65, "Price": 12500, "Range": 135, "Rank": 23, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 10, "Id": 302, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleQuick_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 62, "ParamValue1": 25, "ParamValue2": 65, "Price": 17700, "Range": 135, "Rank": 27, "ShotMoveVelType": "B", "Special": "SuperStamp", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 310, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleMiddle_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 58, "ParamValue2": 30, "Price": 17200, "Range": 170, "Rank": 29, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 311, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleMiddle_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 58, "ParamValue2": 30, "Price": 18400, "Range": 170, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 15, "Id": 312, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_TripleMiddle_02", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 70, "ParamValue1": 58, "ParamValue2": 30, "Price": 26600, "Range": 170, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 400, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Flash_00", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 77, "ParamValue1": 52, "ParamValue2": 30, "Price": 9400, "Range": 200, "Rank": 16, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 401, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Shooter_Flash_01", "Param0": "Range", "Param1": "Power", "Param2": "Blaze", "ParamValue0": 77, "ParamValue1": 52, "ParamValue2": 30, "Price": 10900, "Range": 200, "Rank": 25, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 1000, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Roller_Compact_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 20, "ParamValue1": 63, "ParamValue2": 65, "Price": 6200, "Range": 95, "Rank": 7, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 1001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Roller_Compact_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 20, "ParamValue1": 63, "ParamValue2": 65, "Price": 8500, "Range": 95, "Rank": 10, "ShotMoveVelType": "B", "Special": "LauncherRobo", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 1010, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Normal_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 48, "ParamValue1": 45, "ParamValue2": 55, "Price": 1800, "Range": 118, "Rank": 3, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 1011, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Normal_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 48, "ParamValue1": 45, "ParamValue2": 55, "Price": 9200, "Range": 118, "Rank": 12, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 8, "Id": 1012, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Normal_02", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 48, "ParamValue1": 45, "ParamValue2": 55, "Price": 12300, "Range": 118, "Rank": 14, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 1015, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Normal_H", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 48, "ParamValue1": 45, "ParamValue2": 55, "Price": 2300, "Range": 118, "Rank": 3, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 1020, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Low", "Name": "Roller_Heavy_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 76, "ParamValue1": 25, "ParamValue2": 20, "Price": 24500, "Range": 185, "Rank": 20, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 0, "Id": 1021, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Low", "Name": "Roller_Heavy_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 76, "ParamValue1": 25, "ParamValue2": 20, "Price": 29000, "Range": 185, "Rank": 25, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 9, "Id": 1022, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Low", "Name": "Roller_Heavy_02", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 76, "ParamValue1": 25, "ParamValue2": 20, "Price": 32300, "Range": 185, "Rank": 29, "ShotMoveVelType": "B", "Special": "SuperBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 1030, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Hunter_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 45, "ParamValue2": 45, "Price": 15700, "Range": 140, "Rank": 24, "ShotMoveVelType": "B", "Special": "LauncherSplash", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 0, "Id": 1031, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Roller_Hunter_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 45, "ParamValue2": 45, "Price": 21300, "Range": 140, "Rank": 28, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 1100, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "High", "Name": "Roller_BrushMini_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 5, "ParamValue1": 100, "ParamValue2": 100, "Price": 2600, "Range": 70, "Rank": 5, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 150, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 1101, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "High", "Name": "Roller_BrushMini_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 5, "ParamValue1": 100, "ParamValue2": 100, "Price": 7000, "Range": 70, "Rank": 7, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 15, "Id": 1102, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "High", "Name": "Roller_BrushMini_02", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 5, "ParamValue1": 100, "ParamValue2": 100, "Price": 8400, "Range": 70, "Rank": 12, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 1110, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "Middle", "Name": "Roller_BrushNormal_00", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 23, "ParamValue1": 80, "ParamValue2": 85, "Price": 8200, "Range": 105, "Rank": 10, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 1111, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "Middle", "Name": "Roller_BrushNormal_01", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 23, "ParamValue1": 80, "ParamValue2": 85, "Price": 9900, "Range": 105, "Rank": 15, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 10, "Id": 1112, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "Middle", "Name": "Roller_BrushNormal_02", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 23, "ParamValue1": 80, "ParamValue2": 85, "Price": 13200, "Range": 105, "Rank": 20, "ShotMoveVelType": "B", "Special": "SuperStamp", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 1115, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "BrushSpeedUp", "MoveVelLv": "Middle", "Name": "Roller_BrushNormal_H", "Param0": "Range", "Param1": "PaintSpeed", "Param2": "Weight", "ParamValue0": 23, "ParamValue1": 80, "ParamValue2": 85, "Price": 9400, "Range": 105, "Rank": 10, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 2000, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Middle", "Name": "Charger_Quick_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 75, "ParamValue1": 70, "ParamValue2": 60, "Price": 8900, "Range": 185, "Rank": 12, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 2001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Middle", "Name": "Charger_Quick_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 75, "ParamValue1": 70, "ParamValue2": 60, "Price": 11000, "Range": 185, "Rank": 17, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 15, "Id": 2002, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Middle", "Name": "Charger_Quick_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 75, "ParamValue1": 70, "ParamValue2": 60, "Price": 14100, "Range": 185, "Rank": 24, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 2010, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Normal_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 88, "ParamValue1": 50, "ParamValue2": 40, "Price": 2200, "Range": 260, "Rank": 3, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 2011, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Normal_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 88, "ParamValue1": 50, "ParamValue2": 40, "Price": 10600, "Range": 260, "Rank": 16, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 8, "Id": 2012, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Normal_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 88, "ParamValue1": 50, "ParamValue2": 40, "Price": 14500, "Range": 260, "Rank": 19, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 2015, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Normal_H", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 88, "ParamValue1": 50, "ParamValue2": 40, "Price": 2700, "Range": 260, "Rank": 3, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 2020, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_NormalScope_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 91, "ParamValue1": 50, "ParamValue2": 30, "Price": 11400, "Range": 280, "Rank": 15, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 2021, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_NormalScope_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 91, "ParamValue1": 50, "ParamValue2": 30, "Price": 13900, "Range": 280, "Rank": 25, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 8, "Id": 2022, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_NormalScope_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 91, "ParamValue1": 50, "ParamValue2": 30, "Price": 20400, "Range": 280, "Rank": 28, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 2030, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Low", "Name": "Charger_Long_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 96, "ParamValue1": 20, "ParamValue2": 15, "Price": 13900, "Range": 310, "Rank": 20, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 0, "Id": 2031, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Low", "Name": "Charger_Long_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 96, "ParamValue1": 20, "ParamValue2": 15, "Price": 17300, "Range": 310, "Rank": 26, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 0, "Id": 2040, "InkSaverLv": "High", "Lock": "None", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Low", "Name": "Charger_LongScope_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 100, "ParamValue1": 20, "ParamValue2": 5, "Price": 23200, "Range": 330, "Rank": 30, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 0, "Id": 2041, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "RangeUp", "MoveVelLv": "Low", "Name": "Charger_LongScope_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 100, "ParamValue1": 20, "ParamValue2": 5, "Price": 29900, "Range": 330, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 0, "Id": 2050, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Charger_Light_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 90, "ParamValue2": 80, "Price": 9500, "Range": 210, "Rank": 18, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 2051, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Charger_Light_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 90, "ParamValue2": 80, "Price": 10500, "Range": 210, "Rank": 21, "ShotMoveVelType": "B", "Special": "LauncherQuick", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 15, "Id": 2052, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Charger_Light_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 90, "ParamValue2": 80, "Price": 14400, "Range": 210, "Rank": 27, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Piyo"}, {"Addition": 0, "Id": 2060, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Keeper_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 70, "Price": 13400, "Range": 210, "Rank": 22, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 160, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 2061, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Charger_Keeper_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 70, "Price": 19300, "Range": 210, "Rank": 28, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 0, "Id": 3000, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageReductionDown", "MoveVelLv": "Middle", "Name": "Slosher_Strong_00", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 85, "ParamValue2": 50, "Price": 2500, "Range": 145, "Rank": 5, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 3001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageReductionDown", "MoveVelLv": "Middle", "Name": "Slosher_Strong_01", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 85, "ParamValue2": 50, "Price": 8000, "Range": 145, "Rank": 8, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 15, "Id": 3002, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageReductionDown", "MoveVelLv": "Middle", "Name": "Slosher_Strong_02", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 85, "ParamValue2": 50, "Price": 13100, "Range": 145, "Rank": 16, "ShotMoveVelType": "B", "Special": "LauncherQuick", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 3005, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "DamageReductionDown", "MoveVelLv": "Middle", "Name": "Slosher_Strong_H", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 58, "ParamValue1": 85, "ParamValue2": 50, "Price": 3100, "Range": 145, "Rank": 5, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 3010, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Slosher_Diffusion_00", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 31, "ParamValue1": 75, "ParamValue2": 70, "Price": 10200, "Range": 110, "Rank": 15, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 3011, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "High", "Name": "Slosher_Diffusion_01", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 31, "ParamValue1": 75, "ParamValue2": 70, "Price": 11700, "Range": 110, "Rank": 17, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 0, "Id": 3020, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Middle", "Name": "Slosher_Launcher_00", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 60, "ParamValue1": 90, "ParamValue2": 40, "Price": 12600, "Range": 147, "Rank": 13, "ShotMoveVelType": "B", "Special": "WaterCutter", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 3021, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Middle", "Name": "Slosher_Launcher_01", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 60, "ParamValue1": 90, "ParamValue2": 40, "Price": 19800, "Range": 147, "Rank": 19, "ShotMoveVelType": "B", "Special": "LauncherSplash", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 9, "Id": 3022, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Middle", "Name": "Slosher_Launcher_02", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 60, "ParamValue1": 90, "ParamValue2": 40, "Price": 20700, "Range": 147, "Rank": 21, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Piyo"}, {"Addition": 7, "Id": 3030, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Middle", "Name": "Slosher_Bathtub_00", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 85, "ParamValue1": 29, "ParamValue2": 50, "Price": 10000, "Range": 150, "Rank": 11, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 11, "Id": 3031, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Middle", "Name": "Slosher_Bathtub_01", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 85, "ParamValue1": 29, "ParamValue2": 50, "Price": 17600, "Range": 150, "Rank": 20, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 6, "Id": 3040, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Low", "Name": "Slosher_Washtub_00", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 77, "ParamValue1": 65, "ParamValue2": 20, "Price": 10800, "Range": 207, "Rank": 18, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 11, "Id": 3041, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "PaintUp", "MoveVelLv": "Low", "Name": "Slosher_Washtub_01", "Param0": "Range", "Param1": "Power", "Param2": "Weight", "ParamValue0": 77, "ParamValue1": 65, "ParamValue2": 20, "Price": 12400, "Range": 207, "Rank": 22, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 4000, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Quick_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 62, "ParamValue1": 80, "ParamValue2": 90, "Price": 12300, "Range": 150, "Rank": 23, "ShotMoveVelType": "E", "Special": "SuperMissile", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 4001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Quick_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 62, "ParamValue1": 80, "ParamValue2": 90, "Price": 15400, "Range": 150, "Rank": 26, "ShotMoveVelType": "E", "Special": "RainCloud", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 11, "Id": 4002, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Quick_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 62, "ParamValue1": 80, "ParamValue2": 90, "Price": 18800, "Range": 150, "Rank": 29, "ShotMoveVelType": "E", "Special": "SuperStamp", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 0, "Id": 4010, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Standard_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 55, "Price": 7800, "Range": 210, "Rank": 8, "ShotMoveVelType": "D", "Special": "WaterCutter", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 4011, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Standard_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 55, "Price": 9600, "Range": 210, "Rank": 12, "ShotMoveVelType": "D", "Special": "SuperBubble", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 15, "Id": 4012, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Standard_02", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 55, "Price": 18300, "Range": 210, "Rank": 19, "ShotMoveVelType": "D", "Special": "SuperBall", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 4015, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Standard_H", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 78, "ParamValue1": 38, "ParamValue2": 55, "Price": 8600, "Range": 210, "Rank": 8, "ShotMoveVelType": "D", "Special": "WaterCutter", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 4020, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Low", "Name": "Spinner_Hyper_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 85, "ParamValue1": 10, "ParamValue2": 20, "Price": 18500, "Range": 245, "Rank": 27, "ShotMoveVelType": "D", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 4021, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Low", "Name": "Spinner_Hyper_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 85, "ParamValue1": 10, "ParamValue2": 20, "Price": 33300, "Range": 245, "Rank": 29, "ShotMoveVelType": "D", "Special": "SuperArmor", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 6, "Id": 4030, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Spinner_Downpour_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 85, "ParamValue1": 18, "ParamValue2": 60, "Price": 11600, "Range": 245, "Rank": 25, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 11, "Id": 4031, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Spinner_Downpour_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 85, "ParamValue1": 18, "ParamValue2": 60, "Price": 15800, "Range": 245, "Rank": 28, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 220, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 7, "Id": 4040, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Serein_00", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 74, "ParamValue1": 37, "ParamValue2": 70, "Price": 14700, "Range": 180, "Rank": 26, "ShotMoveVelType": "C", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 11, "Id": 4041, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "ShootingFrameUp", "MoveVelLv": "Middle", "Name": "Spinner_Serein_01", "Param0": "Range", "Param1": "Charge", "Param2": "Mobility", "ParamValue0": 74, "ParamValue1": 37, "ParamValue2": 70, "Price": 27900, "Range": 180, "Rank": 30, "ShotMoveVelType": "C", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 5000, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Twins_Short_00", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 24, "ParamValue1": 47, "ParamValue2": 80, "Price": 14700, "Range": 95, "Rank": 26, "ShotMoveVelType": "B", "Special": "LauncherSuction", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 0, "Id": 5001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Twins_Short_01", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 24, "ParamValue1": 47, "ParamValue2": 80, "Price": 17500, "Range": 95, "Rank": 29, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "PoisonFog"}, {"Addition": 15, "Id": 5002, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "High", "Name": "Twins_Short_02", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 24, "ParamValue1": 47, "ParamValue2": 80, "Price": 22300, "Range": 95, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Tako"}, {"Addition": 0, "Id": 5010, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Normal_00", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 50, "ParamValue1": 29, "ParamValue2": 70, "Price": 2400, "Range": 125, "Rank": 4, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 0, "Id": 5011, "InkSaverLv": "Middle", "Lock": "None", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Normal_01", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 50, "ParamValue1": 29, "ParamValue2": 70, "Price": 9000, "Range": 125, "Rank": 11, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Curling"}, {"Addition": 8, "Id": 5012, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Normal_02", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 50, "ParamValue1": 29, "ParamValue2": 70, "Price": 13000, "Range": 125, "Rank": 16, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Suction"}, {"Addition": 0, "Id": 5015, "InkSaverLv": "Middle", "Lock": "Mission", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Normal_H", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 50, "ParamValue1": 29, "ParamValue2": 70, "Price": 3100, "Range": 125, "Rank": 4, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Quick"}, {"Addition": 1, "Id": 5020, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Gallon_00", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 66, "ParamValue1": 76, "ParamValue2": 35, "Price": 11800, "Range": 160, "Rank": 17, "ShotMoveVelType": "B", "Special": "Jetpack", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 1, "Id": 5021, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Gallon_01", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 66, "ParamValue1": 76, "ParamValue2": 35, "Price": 13700, "Range": 160, "Rank": 24, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 11, "Id": 5022, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Gallon_02", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 66, "ParamValue1": 76, "ParamValue2": 35, "Price": 17000, "Range": 160, "Rank": 27, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Piyo"}, {"Addition": 0, "Id": 5030, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Dual_00", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 70, "ParamValue1": 22, "ParamValue2": 70, "Price": 9800, "Range": 170, "Rank": 12, "ShotMoveVelType": "B", "Special": "SuperMissile", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "PointSensor"}, {"Addition": 0, "Id": 5031, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Dual_01", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 70, "ParamValue1": 22, "ParamValue2": 70, "Price": 12900, "Range": 170, "Rank": 16, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 210, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 1, "Id": 5040, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Stepper_00", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 58, "ParamValue1": 22, "ParamValue2": 90, "Price": 10700, "Range": 140, "Rank": 14, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 190, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 1, "Id": 5041, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "DamageUp", "MoveVelLv": "Middle", "Name": "Twins_Stepper_01", "Param0": "Range", "Param1": "Power", "Param2": "Mobility", "ParamValue0": 58, "ParamValue1": 22, "ParamValue2": 90, "Price": 13300, "Range": 140, "Rank": 21, "ShotMoveVelType": "B", "Special": "LauncherRobo", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 6000, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "Middle", "Name": "Umbrella_Normal_00", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 43, "ParamValue1": 65, "ParamValue2": 60, "Price": 8300, "Range": 125, "Rank": 9, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 0, "Id": 6001, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "Middle", "Name": "Umbrella_Normal_01", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 43, "ParamValue1": 65, "ParamValue2": 60, "Price": 12000, "Range": 125, "Rank": 15, "ShotMoveVelType": "B", "Special": "LauncherSplash", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Robo"}, {"Addition": 0, "Id": 6005, "InkSaverLv": "Middle", "Lock": "MissionBcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "Middle", "Name": "Umbrella_Normal_H", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 43, "ParamValue1": 65, "ParamValue2": 60, "Price": 9000, "Range": 125, "Rank": 9, "ShotMoveVelType": "B", "Special": "RainCloud", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Sprinkler"}, {"Addition": 2, "Id": 6010, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "CanopyHPUp", "MoveVelLv": "Low", "Name": "Umbrella_Wide_00", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 62, "ParamValue1": 85, "ParamValue2": 85, "Price": 14200, "Range": 150, "Rank": 23, "ShotMoveVelType": "B", "Special": "SuperBubble", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Flag"}, {"Addition": 2, "Id": 6011, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "CanopyHPUp", "MoveVelLv": "Low", "Name": "Umbrella_Wide_01", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 62, "ParamValue1": 85, "ParamValue2": 85, "Price": 18600, "Range": 150, "Rank": 28, "ShotMoveVelType": "B", "Special": "LauncherCurling", "SpecialCost": 170, "StealthMoveAccLv": "Middle", "Sub": "Shield"}, {"Addition": 15, "Id": 6012, "InkSaverLv": "High", "Lock": "Bcat", "MainUpGearPowerType": "CanopyHPUp", "MoveVelLv": "Low", "Name": "Umbrella_Wide_02", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 62, "ParamValue1": 85, "ParamValue2": 85, "Price": 29800, "Range": 150, "Rank": 30, "ShotMoveVelType": "B", "Special": "SuperStamp", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 2, "Id": 6020, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "High", "Name": "Umbrella_Compact_00", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 50, "ParamValue1": 30, "ParamValue2": 25, "Price": 9100, "Range": 118, "Rank": 13, "ShotMoveVelType": "B", "Special": "SuperLanding", "SpecialCost": 150, "StealthMoveAccLv": "Middle", "Sub": "TimerTrap"}, {"Addition": 2, "Id": 6021, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "High", "Name": "Umbrella_Compact_01", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 50, "ParamValue1": 30, "ParamValue2": 25, "Price": 11900, "Range": 118, "Rank": 19, "ShotMoveVelType": "B", "Special": "AquaBall", "SpecialCost": 180, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Splash"}, {"Addition": 10, "Id": 6022, "InkSaverLv": "Middle", "Lock": "Bcat", "MainUpGearPowerType": "CanopyRecoveryUp", "MoveVelLv": "High", "Name": "Umbrella_Compact_02", "Param0": "Range", "Param1": "Power", "Param2": "Defence", "ParamValue0": 50, "ParamValue1": 30, "ParamValue2": 25, "Price": 14800, "Range": 118, "Rank": 24, "ShotMoveVelType": "B", "Special": "SuperArmor", "SpecialCost": 200, "StealthMoveAccLv": "Middle", "Sub": "Bomb_Tako"}] \ No newline at end of file +[ + { + "Addition": 0, + "Id": 0, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Shooter_Short_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 12, + "ParamValue1": 52, + "ParamValue2": 75, + "Price": 9700, + "Range": 80, + "Rank": 10, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 160, + "StealthMoveAccLv": "High", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 1, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Shooter_Short_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 12, + "ParamValue1": 52, + "ParamValue2": 75, + "Price": 12200, + "Range": 80, + "Rank": 18, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 170, + "StealthMoveAccLv": "High", + "Sub": "Flag" + }, + { + "Addition": 15, + "Id": 2, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Shooter_Short_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 12, + "ParamValue1": 52, + "ParamValue2": 75, + "Price": 14600, + "Range": 80, + "Rank": 23, + "ShotMoveVelType": "B", + "Special": "SuperStamp", + "SpecialCost": 180, + "StealthMoveAccLv": "High", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 10, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_First_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 0, + "Range": 110, + "Rank": 1, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 11, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_First_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 1900, + "Range": 110, + "Rank": 4, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 10, + "Id": 12, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_First_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 8700, + "Range": 110, + "Rank": 9, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Tako" + }, + { + "Addition": 0, + "Id": 20, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Shooter_Precision_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 42, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 11200, + "Range": 117, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 21, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Shooter_Precision_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 42, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 16800, + "Range": 117, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 30, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_Blaze_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 10, + "ParamValue2": 90, + "Price": 4900, + "Range": 110, + "Rank": 6, + "ShotMoveVelType": "B", + "Special": "LauncherCurling", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 31, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_Blaze_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 10, + "ParamValue2": 90, + "Price": 16900, + "Range": 110, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 15, + "Id": 32, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_Blaze_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 35, + "ParamValue1": 10, + "ParamValue2": 90, + "Price": 19000, + "Range": 110, + "Rank": 29, + "ShotMoveVelType": "B", + "Special": "SuperBall", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 40, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Normal_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 45, + "ParamValue2": 60, + "Price": 900, + "Range": 125, + "Rank": 2, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 41, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Normal_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 45, + "ParamValue2": 60, + "Price": 2100, + "Range": 125, + "Rank": 4, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 8, + "Id": 42, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Normal_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 45, + "ParamValue2": 60, + "Price": 5300, + "Range": 125, + "Rank": 6, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 45, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Normal_H", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 45, + "ParamValue2": 60, + "Price": 1500, + "Range": 125, + "Rank": 2, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 6, + "Id": 46, + "InkSaverLv": "Middle", + "Lock": "Other", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Normal_Oct", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 45, + "ParamValue2": 60, + "Price": 0, + "Range": 125, + "Rank": 1, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 50, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Gravity_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 55, + "ParamValue1": 75, + "ParamValue2": 25, + "Price": 9500, + "Range": 133, + "Rank": 14, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 51, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Gravity_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 55, + "ParamValue1": 75, + "ParamValue2": 25, + "Price": 12700, + "Range": 133, + "Rank": 22, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 11, + "Id": 52, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_Gravity_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 55, + "ParamValue1": 75, + "ParamValue2": 25, + "Price": 15600, + "Range": 133, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "SuperBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 60, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_QuickMiddle_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 7100, + "Range": 125, + "Rank": 9, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 61, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_QuickMiddle_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 8800, + "Range": 125, + "Rank": 11, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 15, + "Id": 62, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Shooter_QuickMiddle_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 50, + "ParamValue1": 22, + "ParamValue2": 75, + "Price": 11100, + "Range": 125, + "Rank": 19, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 70, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Expert_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 60, + "ParamValue2": 30, + "Price": 13800, + "Range": 170, + "Rank": 10, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 71, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Expert_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 60, + "ParamValue2": 30, + "Price": 20800, + "Range": 170, + "Rank": 20, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 9, + "Id": 72, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Expert_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 60, + "ParamValue2": 30, + "Price": 21900, + "Range": 170, + "Rank": 23, + "ShotMoveVelType": "B", + "Special": "SuperBall", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 80, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Heavy_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 74, + "ParamValue1": 80, + "ParamValue2": 10, + "Price": 12600, + "Range": 180, + "Rank": 21, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 81, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Heavy_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 74, + "ParamValue1": 80, + "ParamValue2": 10, + "Price": 16200, + "Range": 180, + "Rank": 26, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 90, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Long_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 82, + "ParamValue1": 35, + "ParamValue2": 30, + "Price": 11300, + "Range": 225, + "Rank": 17, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 91, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Long_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 82, + "ParamValue1": 35, + "ParamValue2": 30, + "Price": 15900, + "Range": 225, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 200, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "DamageAreaUp", + "MoveVelLv": "High", + "Name": "Shooter_BlasterShort_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 9, + "ParamValue1": 70, + "ParamValue2": 30, + "Price": 12100, + "Range": 110, + "Rank": 19, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 201, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageAreaUp", + "MoveVelLv": "High", + "Name": "Shooter_BlasterShort_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 9, + "ParamValue1": 70, + "ParamValue2": 30, + "Price": 13600, + "Range": 110, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 9, + "Id": 202, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageAreaUp", + "MoveVelLv": "High", + "Name": "Shooter_BlasterShort_02", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 9, + "ParamValue1": 70, + "ParamValue2": 30, + "Price": 16600, + "Range": 110, + "Rank": 26, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Piyo" + }, + { + "Addition": 0, + "Id": 210, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterMiddle_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 27, + "ParamValue1": 70, + "ParamValue2": 20, + "Price": 3000, + "Range": 133, + "Rank": 5, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 211, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterMiddle_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 27, + "ParamValue1": 70, + "ParamValue2": 20, + "Price": 15300, + "Range": 133, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 215, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterMiddle_H", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 27, + "ParamValue1": 70, + "ParamValue2": 20, + "Price": 3800, + "Range": 133, + "Rank": 5, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 220, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLong_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 56, + "ParamValue1": 70, + "ParamValue2": 10, + "Price": 9300, + "Range": 170, + "Rank": 14, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 221, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLong_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 56, + "ParamValue1": 70, + "ParamValue2": 10, + "Price": 11400, + "Range": 170, + "Rank": 18, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 15, + "Id": 222, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLong_02", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 56, + "ParamValue1": 70, + "ParamValue2": 10, + "Price": 14900, + "Range": 170, + "Rank": 23, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 230, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "High", + "Name": "Shooter_BlasterLightShort_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 21, + "ParamValue1": 25, + "ParamValue2": 65, + "Price": 18200, + "Range": 110, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 231, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "High", + "Name": "Shooter_BlasterLightShort_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 21, + "ParamValue1": 25, + "ParamValue2": 65, + "Price": 20500, + "Range": 110, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 240, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLight_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 35, + "ParamValue2": 40, + "Price": 9800, + "Range": 167, + "Rank": 13, + "ShotMoveVelType": "B", + "Special": "LauncherSplash", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 0, + "Id": 241, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLight_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 35, + "ParamValue2": 40, + "Price": 11500, + "Range": 167, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 11, + "Id": 242, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLight_02", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 35, + "ParamValue2": 40, + "Price": 13500, + "Range": 167, + "Rank": 21, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Tako" + }, + { + "Addition": 0, + "Id": 250, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLightLong_00", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 72, + "ParamValue1": 35, + "ParamValue2": 30, + "Price": 12800, + "Range": 192, + "Rank": 22, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 251, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ReduceDegJump", + "MoveVelLv": "Middle", + "Name": "Shooter_BlasterLightLong_01", + "Param0": "Range", + "Param1": "Explosion", + "Param2": "Blaze", + "ParamValue0": 72, + "ParamValue1": 35, + "ParamValue2": 30, + "Price": 14000, + "Range": 192, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 300, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleQuick_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 25, + "ParamValue2": 65, + "Price": 10400, + "Range": 135, + "Rank": 18, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 301, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleQuick_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 25, + "ParamValue2": 65, + "Price": 12500, + "Range": 135, + "Rank": 23, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 10, + "Id": 302, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleQuick_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 62, + "ParamValue1": 25, + "ParamValue2": 65, + "Price": 17700, + "Range": 135, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "SuperStamp", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 310, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleMiddle_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 58, + "ParamValue2": 30, + "Price": 17200, + "Range": 170, + "Rank": 29, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 311, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleMiddle_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 58, + "ParamValue2": 30, + "Price": 18400, + "Range": 170, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 15, + "Id": 312, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_TripleMiddle_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 70, + "ParamValue1": 58, + "ParamValue2": 30, + "Price": 26600, + "Range": 170, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 400, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Flash_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 77, + "ParamValue1": 52, + "ParamValue2": 30, + "Price": 9400, + "Range": 200, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 401, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Shooter_Flash_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Blaze", + "ParamValue0": 77, + "ParamValue1": 52, + "ParamValue2": 30, + "Price": 10900, + "Range": 200, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 1000, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Roller_Compact_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 20, + "ParamValue1": 63, + "ParamValue2": 65, + "Price": 6200, + "Range": 95, + "Rank": 7, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 1001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Roller_Compact_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 20, + "ParamValue1": 63, + "ParamValue2": 65, + "Price": 8500, + "Range": 95, + "Rank": 10, + "ShotMoveVelType": "B", + "Special": "LauncherRobo", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 1010, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Normal_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 48, + "ParamValue1": 45, + "ParamValue2": 55, + "Price": 1800, + "Range": 118, + "Rank": 3, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 1011, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Normal_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 48, + "ParamValue1": 45, + "ParamValue2": 55, + "Price": 9200, + "Range": 118, + "Rank": 12, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 8, + "Id": 1012, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Normal_02", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 48, + "ParamValue1": 45, + "ParamValue2": 55, + "Price": 12300, + "Range": 118, + "Rank": 14, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 1015, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Normal_H", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 48, + "ParamValue1": 45, + "ParamValue2": 55, + "Price": 2300, + "Range": 118, + "Rank": 3, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 1020, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Low", + "Name": "Roller_Heavy_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 76, + "ParamValue1": 25, + "ParamValue2": 20, + "Price": 24500, + "Range": 185, + "Rank": 20, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 0, + "Id": 1021, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Low", + "Name": "Roller_Heavy_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 76, + "ParamValue1": 25, + "ParamValue2": 20, + "Price": 29000, + "Range": 185, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 9, + "Id": 1022, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Low", + "Name": "Roller_Heavy_02", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 76, + "ParamValue1": 25, + "ParamValue2": 20, + "Price": 32300, + "Range": 185, + "Rank": 29, + "ShotMoveVelType": "B", + "Special": "SuperBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 1030, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Hunter_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 45, + "ParamValue2": 45, + "Price": 15700, + "Range": 140, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "LauncherSplash", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 0, + "Id": 1031, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Roller_Hunter_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 45, + "ParamValue2": 45, + "Price": 21300, + "Range": 140, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 1100, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "High", + "Name": "Roller_BrushMini_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 5, + "ParamValue1": 100, + "ParamValue2": 100, + "Price": 2600, + "Range": 70, + "Rank": 5, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 150, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 1101, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "High", + "Name": "Roller_BrushMini_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 5, + "ParamValue1": 100, + "ParamValue2": 100, + "Price": 7000, + "Range": 70, + "Rank": 7, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 15, + "Id": 1102, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "High", + "Name": "Roller_BrushMini_02", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 5, + "ParamValue1": 100, + "ParamValue2": 100, + "Price": 8400, + "Range": 70, + "Rank": 12, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 1110, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "Middle", + "Name": "Roller_BrushNormal_00", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 23, + "ParamValue1": 80, + "ParamValue2": 85, + "Price": 8200, + "Range": 105, + "Rank": 10, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 1111, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "Middle", + "Name": "Roller_BrushNormal_01", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 23, + "ParamValue1": 80, + "ParamValue2": 85, + "Price": 9900, + "Range": 105, + "Rank": 15, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 10, + "Id": 1112, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "Middle", + "Name": "Roller_BrushNormal_02", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 23, + "ParamValue1": 80, + "ParamValue2": 85, + "Price": 13200, + "Range": 105, + "Rank": 20, + "ShotMoveVelType": "B", + "Special": "SuperStamp", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 1115, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "BrushSpeedUp", + "MoveVelLv": "Middle", + "Name": "Roller_BrushNormal_H", + "Param0": "Range", + "Param1": "PaintSpeed", + "Param2": "Weight", + "ParamValue0": 23, + "ParamValue1": 80, + "ParamValue2": 85, + "Price": 9400, + "Range": 105, + "Rank": 10, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 2000, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Middle", + "Name": "Charger_Quick_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 75, + "ParamValue1": 70, + "ParamValue2": 60, + "Price": 8900, + "Range": 185, + "Rank": 12, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 2001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Middle", + "Name": "Charger_Quick_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 75, + "ParamValue1": 70, + "ParamValue2": 60, + "Price": 11000, + "Range": 185, + "Rank": 17, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 15, + "Id": 2002, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Middle", + "Name": "Charger_Quick_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 75, + "ParamValue1": 70, + "ParamValue2": 60, + "Price": 14100, + "Range": 185, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 2010, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Normal_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 88, + "ParamValue1": 50, + "ParamValue2": 40, + "Price": 2200, + "Range": 260, + "Rank": 3, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 2011, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Normal_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 88, + "ParamValue1": 50, + "ParamValue2": 40, + "Price": 10600, + "Range": 260, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 8, + "Id": 2012, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Normal_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 88, + "ParamValue1": 50, + "ParamValue2": 40, + "Price": 14500, + "Range": 260, + "Rank": 19, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 2015, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Normal_H", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 88, + "ParamValue1": 50, + "ParamValue2": 40, + "Price": 2700, + "Range": 260, + "Rank": 3, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 2020, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_NormalScope_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 91, + "ParamValue1": 50, + "ParamValue2": 30, + "Price": 11400, + "Range": 280, + "Rank": 15, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 2021, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_NormalScope_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 91, + "ParamValue1": 50, + "ParamValue2": 30, + "Price": 13900, + "Range": 280, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 8, + "Id": 2022, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_NormalScope_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 91, + "ParamValue1": 50, + "ParamValue2": 30, + "Price": 20400, + "Range": 280, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 2030, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Low", + "Name": "Charger_Long_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 96, + "ParamValue1": 20, + "ParamValue2": 15, + "Price": 13900, + "Range": 310, + "Rank": 20, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 0, + "Id": 2031, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Low", + "Name": "Charger_Long_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 96, + "ParamValue1": 20, + "ParamValue2": 15, + "Price": 17300, + "Range": 310, + "Rank": 26, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 0, + "Id": 2040, + "InkSaverLv": "High", + "Lock": "None", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Low", + "Name": "Charger_LongScope_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 100, + "ParamValue1": 20, + "ParamValue2": 5, + "Price": 23200, + "Range": 330, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 0, + "Id": 2041, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "RangeUp", + "MoveVelLv": "Low", + "Name": "Charger_LongScope_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 100, + "ParamValue1": 20, + "ParamValue2": 5, + "Price": 29900, + "Range": 330, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 0, + "Id": 2050, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Charger_Light_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 90, + "ParamValue2": 80, + "Price": 9500, + "Range": 210, + "Rank": 18, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 2051, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Charger_Light_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 90, + "ParamValue2": 80, + "Price": 10500, + "Range": 210, + "Rank": 21, + "ShotMoveVelType": "B", + "Special": "LauncherQuick", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 15, + "Id": 2052, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Charger_Light_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 90, + "ParamValue2": 80, + "Price": 14400, + "Range": 210, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Piyo" + }, + { + "Addition": 0, + "Id": 2060, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Keeper_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 70, + "Price": 13400, + "Range": 210, + "Rank": 22, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 160, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 2061, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Charger_Keeper_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 70, + "Price": 19300, + "Range": 210, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 0, + "Id": 3000, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageReductionDown", + "MoveVelLv": "Middle", + "Name": "Slosher_Strong_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 85, + "ParamValue2": 50, + "Price": 2500, + "Range": 145, + "Rank": 5, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 3001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageReductionDown", + "MoveVelLv": "Middle", + "Name": "Slosher_Strong_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 85, + "ParamValue2": 50, + "Price": 8000, + "Range": 145, + "Rank": 8, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 15, + "Id": 3002, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageReductionDown", + "MoveVelLv": "Middle", + "Name": "Slosher_Strong_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 85, + "ParamValue2": 50, + "Price": 13100, + "Range": 145, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "LauncherQuick", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 3005, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "DamageReductionDown", + "MoveVelLv": "Middle", + "Name": "Slosher_Strong_H", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 58, + "ParamValue1": 85, + "ParamValue2": 50, + "Price": 3100, + "Range": 145, + "Rank": 5, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 3010, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Slosher_Diffusion_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 31, + "ParamValue1": 75, + "ParamValue2": 70, + "Price": 10200, + "Range": 110, + "Rank": 15, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 3011, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "High", + "Name": "Slosher_Diffusion_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 31, + "ParamValue1": 75, + "ParamValue2": 70, + "Price": 11700, + "Range": 110, + "Rank": 17, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 0, + "Id": 3020, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Middle", + "Name": "Slosher_Launcher_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 60, + "ParamValue1": 90, + "ParamValue2": 40, + "Price": 12600, + "Range": 147, + "Rank": 13, + "ShotMoveVelType": "B", + "Special": "WaterCutter", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 3021, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Middle", + "Name": "Slosher_Launcher_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 60, + "ParamValue1": 90, + "ParamValue2": 40, + "Price": 19800, + "Range": 147, + "Rank": 19, + "ShotMoveVelType": "B", + "Special": "LauncherSplash", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 9, + "Id": 3022, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Middle", + "Name": "Slosher_Launcher_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 60, + "ParamValue1": 90, + "ParamValue2": 40, + "Price": 20700, + "Range": 147, + "Rank": 21, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Piyo" + }, + { + "Addition": 7, + "Id": 3030, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Middle", + "Name": "Slosher_Bathtub_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 85, + "ParamValue1": 29, + "ParamValue2": 50, + "Price": 10000, + "Range": 150, + "Rank": 11, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 11, + "Id": 3031, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Middle", + "Name": "Slosher_Bathtub_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 85, + "ParamValue1": 29, + "ParamValue2": 50, + "Price": 17600, + "Range": 150, + "Rank": 20, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 6, + "Id": 3040, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Low", + "Name": "Slosher_Washtub_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 77, + "ParamValue1": 65, + "ParamValue2": 20, + "Price": 10800, + "Range": 207, + "Rank": 18, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 11, + "Id": 3041, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "PaintUp", + "MoveVelLv": "Low", + "Name": "Slosher_Washtub_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Weight", + "ParamValue0": 77, + "ParamValue1": 65, + "ParamValue2": 20, + "Price": 12400, + "Range": 207, + "Rank": 22, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 4000, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Quick_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 62, + "ParamValue1": 80, + "ParamValue2": 90, + "Price": 12300, + "Range": 150, + "Rank": 23, + "ShotMoveVelType": "E", + "Special": "SuperMissile", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 4001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Quick_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 62, + "ParamValue1": 80, + "ParamValue2": 90, + "Price": 15400, + "Range": 150, + "Rank": 26, + "ShotMoveVelType": "E", + "Special": "RainCloud", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 11, + "Id": 4002, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Quick_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 62, + "ParamValue1": 80, + "ParamValue2": 90, + "Price": 18800, + "Range": 150, + "Rank": 29, + "ShotMoveVelType": "E", + "Special": "SuperStamp", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 0, + "Id": 4010, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Standard_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 55, + "Price": 7800, + "Range": 210, + "Rank": 8, + "ShotMoveVelType": "D", + "Special": "WaterCutter", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 4011, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Standard_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 55, + "Price": 9600, + "Range": 210, + "Rank": 12, + "ShotMoveVelType": "D", + "Special": "SuperBubble", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 15, + "Id": 4012, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Standard_02", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 55, + "Price": 18300, + "Range": 210, + "Rank": 19, + "ShotMoveVelType": "D", + "Special": "SuperBall", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 4015, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Standard_H", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 78, + "ParamValue1": 38, + "ParamValue2": 55, + "Price": 8600, + "Range": 210, + "Rank": 8, + "ShotMoveVelType": "D", + "Special": "WaterCutter", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 4020, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Low", + "Name": "Spinner_Hyper_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 85, + "ParamValue1": 10, + "ParamValue2": 20, + "Price": 18500, + "Range": 245, + "Rank": 27, + "ShotMoveVelType": "D", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 4021, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Low", + "Name": "Spinner_Hyper_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 85, + "ParamValue1": 10, + "ParamValue2": 20, + "Price": 33300, + "Range": 245, + "Rank": 29, + "ShotMoveVelType": "D", + "Special": "SuperArmor", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 6, + "Id": 4030, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Downpour_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 85, + "ParamValue1": 18, + "ParamValue2": 60, + "Price": 11600, + "Range": 245, + "Rank": 25, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 11, + "Id": 4031, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Downpour_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 85, + "ParamValue1": 18, + "ParamValue2": 60, + "Price": 15800, + "Range": 245, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 220, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 7, + "Id": 4040, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Serein_00", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 74, + "ParamValue1": 37, + "ParamValue2": 70, + "Price": 14700, + "Range": 180, + "Rank": 26, + "ShotMoveVelType": "C", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 11, + "Id": 4041, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "ShootingFrameUp", + "MoveVelLv": "Middle", + "Name": "Spinner_Serein_01", + "Param0": "Range", + "Param1": "Charge", + "Param2": "Mobility", + "ParamValue0": 74, + "ParamValue1": 37, + "ParamValue2": 70, + "Price": 27900, + "Range": 180, + "Rank": 30, + "ShotMoveVelType": "C", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 5000, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Twins_Short_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 24, + "ParamValue1": 47, + "ParamValue2": 80, + "Price": 14700, + "Range": 95, + "Rank": 26, + "ShotMoveVelType": "B", + "Special": "LauncherSuction", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 0, + "Id": 5001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Twins_Short_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 24, + "ParamValue1": 47, + "ParamValue2": 80, + "Price": 17500, + "Range": 95, + "Rank": 29, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "PoisonFog" + }, + { + "Addition": 15, + "Id": 5002, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "High", + "Name": "Twins_Short_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 24, + "ParamValue1": 47, + "ParamValue2": 80, + "Price": 22300, + "Range": 95, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Tako" + }, + { + "Addition": 0, + "Id": 5010, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Normal_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 50, + "ParamValue1": 29, + "ParamValue2": 70, + "Price": 2400, + "Range": 125, + "Rank": 4, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 0, + "Id": 5011, + "InkSaverLv": "Middle", + "Lock": "None", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Normal_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 50, + "ParamValue1": 29, + "ParamValue2": 70, + "Price": 9000, + "Range": 125, + "Rank": 11, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Curling" + }, + { + "Addition": 8, + "Id": 5012, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Normal_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 50, + "ParamValue1": 29, + "ParamValue2": 70, + "Price": 13000, + "Range": 125, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Suction" + }, + { + "Addition": 0, + "Id": 5015, + "InkSaverLv": "Middle", + "Lock": "Mission", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Normal_H", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 50, + "ParamValue1": 29, + "ParamValue2": 70, + "Price": 3100, + "Range": 125, + "Rank": 4, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Quick" + }, + { + "Addition": 1, + "Id": 5020, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Gallon_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 66, + "ParamValue1": 76, + "ParamValue2": 35, + "Price": 11800, + "Range": 160, + "Rank": 17, + "ShotMoveVelType": "B", + "Special": "Jetpack", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 1, + "Id": 5021, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Gallon_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 66, + "ParamValue1": 76, + "ParamValue2": 35, + "Price": 13700, + "Range": 160, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 11, + "Id": 5022, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Gallon_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 66, + "ParamValue1": 76, + "ParamValue2": 35, + "Price": 17000, + "Range": 160, + "Rank": 27, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Piyo" + }, + { + "Addition": 0, + "Id": 5030, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Dual_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 70, + "ParamValue1": 22, + "ParamValue2": 70, + "Price": 9800, + "Range": 170, + "Rank": 12, + "ShotMoveVelType": "B", + "Special": "SuperMissile", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "PointSensor" + }, + { + "Addition": 0, + "Id": 5031, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Dual_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 70, + "ParamValue1": 22, + "ParamValue2": 70, + "Price": 12900, + "Range": 170, + "Rank": 16, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 210, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 1, + "Id": 5040, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Stepper_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 58, + "ParamValue1": 22, + "ParamValue2": 90, + "Price": 10700, + "Range": 140, + "Rank": 14, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 190, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 1, + "Id": 5041, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "DamageUp", + "MoveVelLv": "Middle", + "Name": "Twins_Stepper_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Mobility", + "ParamValue0": 58, + "ParamValue1": 22, + "ParamValue2": 90, + "Price": 13300, + "Range": 140, + "Rank": 21, + "ShotMoveVelType": "B", + "Special": "LauncherRobo", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 6000, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "Middle", + "Name": "Umbrella_Normal_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 43, + "ParamValue1": 65, + "ParamValue2": 60, + "Price": 8300, + "Range": 125, + "Rank": 9, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 0, + "Id": 6001, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "Middle", + "Name": "Umbrella_Normal_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 43, + "ParamValue1": 65, + "ParamValue2": 60, + "Price": 12000, + "Range": 125, + "Rank": 15, + "ShotMoveVelType": "B", + "Special": "LauncherSplash", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Robo" + }, + { + "Addition": 0, + "Id": 6005, + "InkSaverLv": "Middle", + "Lock": "MissionBcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "Middle", + "Name": "Umbrella_Normal_H", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 43, + "ParamValue1": 65, + "ParamValue2": 60, + "Price": 9000, + "Range": 125, + "Rank": 9, + "ShotMoveVelType": "B", + "Special": "RainCloud", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Sprinkler" + }, + { + "Addition": 2, + "Id": 6010, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyHPUp", + "MoveVelLv": "Low", + "Name": "Umbrella_Wide_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 62, + "ParamValue1": 85, + "ParamValue2": 85, + "Price": 14200, + "Range": 150, + "Rank": 23, + "ShotMoveVelType": "B", + "Special": "SuperBubble", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Flag" + }, + { + "Addition": 2, + "Id": 6011, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyHPUp", + "MoveVelLv": "Low", + "Name": "Umbrella_Wide_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 62, + "ParamValue1": 85, + "ParamValue2": 85, + "Price": 18600, + "Range": 150, + "Rank": 28, + "ShotMoveVelType": "B", + "Special": "LauncherCurling", + "SpecialCost": 170, + "StealthMoveAccLv": "Middle", + "Sub": "Shield" + }, + { + "Addition": 15, + "Id": 6012, + "InkSaverLv": "High", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyHPUp", + "MoveVelLv": "Low", + "Name": "Umbrella_Wide_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 62, + "ParamValue1": 85, + "ParamValue2": 85, + "Price": 29800, + "Range": 150, + "Rank": 30, + "ShotMoveVelType": "B", + "Special": "SuperStamp", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 2, + "Id": 6020, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "High", + "Name": "Umbrella_Compact_00", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 50, + "ParamValue1": 30, + "ParamValue2": 25, + "Price": 9100, + "Range": 118, + "Rank": 13, + "ShotMoveVelType": "B", + "Special": "SuperLanding", + "SpecialCost": 150, + "StealthMoveAccLv": "Middle", + "Sub": "TimerTrap" + }, + { + "Addition": 2, + "Id": 6021, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "High", + "Name": "Umbrella_Compact_01", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 50, + "ParamValue1": 30, + "ParamValue2": 25, + "Price": 11900, + "Range": 118, + "Rank": 19, + "ShotMoveVelType": "B", + "Special": "AquaBall", + "SpecialCost": 180, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Splash" + }, + { + "Addition": 10, + "Id": 6022, + "InkSaverLv": "Middle", + "Lock": "Bcat", + "MainUpGearPowerType": "CanopyRecoveryUp", + "MoveVelLv": "High", + "Name": "Umbrella_Compact_02", + "Param0": "Range", + "Param1": "Power", + "Param2": "Defence", + "ParamValue0": 50, + "ParamValue1": 30, + "ParamValue2": 25, + "Price": 14800, + "Range": 118, + "Rank": 24, + "ShotMoveVelType": "B", + "Special": "SuperArmor", + "SpecialCost": 200, + "StealthMoveAccLv": "Middle", + "Sub": "Bomb_Tako" + } +] diff --git a/old/scripts/lang_dict_EUen.json b/old/scripts/lang_dict_EUen.json index 3ba45442b..421f5e233 100644 --- a/old/scripts/lang_dict_EUen.json +++ b/old/scripts/lang_dict_EUen.json @@ -1 +1,946 @@ -{"AquaBall": "Baller", "B00": "SquidForce", "B01": "Zink", "B02": "Krak-On", "B03": "Rockenberg", "B04": "Zekko", "B05": "Forge", "B06": "Firefin", "B07": "Skalop", "B08": "Splash Mob", "B09": "Inkline", "B10": "Tentatek", "B11": "Takoroka", "B15": "Annaki", "B16": "Enperry", "B17": "Toni Kensa", "B97": "Grizzco", "B98": "Cuttlegear", "B99": "amiibo", "BigLaser": "Princess Cannon", "Blank": "", "Blaze": "Fire Rate", "BombDamage_Reduction": "Bomb Defense Up DX", "BombDistance_Up": "Sub Power Up", "Bomb_Curling": "Curling Bomb", "Bomb_MissionCurling": "Curling Bomb", "Bomb_MissionRobo": "Autobomb", "Bomb_MissionSplash": "Splat Bomb", "Bomb_Piyo": "Fizzy Bomb", "Bomb_Quick": "Burst Bomb", "Bomb_Robo": "Autobomb", "Bomb_Splash": "Splat Bomb", "Bomb_Suction": "Suction Bomb", "Bomb_Tako": "Torpedo", "Charge": "Charge Speed", "Charger_CoopSpark": "Grizzco Charger", "Charger_Keeper_00": "Goo Tuber", "Charger_Keeper_01": "Custom Goo Tuber", "Charger_Light_00": "Bamboozler 14 Mk I", "Charger_Light_01": "Bamboozler 14 Mk II", "Charger_Light_02": "Bamboozler 14 Mk III", "Charger_LongScope_00": "E-liter 4K Scope", "Charger_LongScope_01": "Custom E-liter 4K Scope", "Charger_Long_00": "E-liter 4K", "Charger_Long_01": "Custom E-liter 4K", "Charger_MissionNormalLv0": "Hero Charger", "Charger_MissionNormalLv1": "Hero Charger", "Charger_NormalScope_00": "Splatterscope", "Charger_NormalScope_01": "Firefin Splatterscope", "Charger_NormalScope_02": "Kensa Splatterscope", "Charger_Normal_00": "Splat Charger", "Charger_Normal_01": "Firefin Splat Charger", "Charger_Normal_02": "Kensa Charger", "Charger_Normal_H": "Hero Charger Replica", "Charger_Quick_00": "Classic Squiffer", "Charger_Quick_01": "New Squiffer", "Charger_Quick_02": "Fresh Squiffer", "Clt_AMB000": "School Uniform", "Clt_AMB001": "Samurai Jacket", "Clt_AMB002": "Power Armor", "Clt_AMB003": "School Cardigan", "Clt_AMB004": "Squinja Suit", "Clt_AMB005": "Power Armor Mk I", "Clt_AMB006": "Pearlescent Hoodie", "Clt_AMB007": "Marinated Top", "Clt_AMB008": "Enchanted Robe", "Clt_AMB009": "Steel Platemail", "Clt_AMB010": "Fresh Fish Gloves", "Clt_COP100": "Squiddor Polo", "Clt_COP101": "Anchor Life Vest", "Clt_COP102": "Juice Parka", "Clt_COP103": "Garden Gear", "Clt_COP104": "Crustwear XXL", "Clt_COP105": "North-Country Parka", "Clt_COP106": "Octoleet Armor", "Clt_COP107": "Record Shop Look EP", "Clt_COP108": "Dev Uniform", "Clt_COP109": "Office Attire", "Clt_COP110": "SRL Coat", "Clt_CRC000": "Mecha Body - AKM", "Clt_FST001": "Basic Tee", "Clt_FST002": "Fresh Octo Tee", "Clt_HAP001": "Splatfest Tee", "Clt_HAP002": "Splatfest Tee Replica", "Clt_JKT000": "Olive Ski Jacket", "Clt_JKT001": "Takoroka Nylon Vintage", "Clt_JKT002": "Berry Ski Jacket", "Clt_JKT003": "Varsity Jacket", "Clt_JKT004": "School Jersey", "Clt_JKT005": "Green Cardigan", "Clt_JKT006": "Black Inky Rider", "Clt_JKT007": "White Inky Rider", "Clt_JKT008": "Retro Gamer Jersey", "Clt_JKT009": "Orange Cardigan", "Clt_JKT010": "Forge Inkling Parka", "Clt_JKT011": "Forge Octarian Jacket", "Clt_JKT012": "Blue Sailor Suit", "Clt_JKT013": "White Sailor Suit", "Clt_JKT014": "Squid Satin Jacket", "Clt_JKT015": "Zapfish Satin Jacket", "Clt_JKT016": "Krak-On 528", "Clt_JKT017": "Chilly Mountain Coat", "Clt_JKT018": "Takoroka Windcrusher", "Clt_JKT019": "Matcha Down Jacket", "Clt_JKT020": "FA-01 Jacket", "Clt_JKT021": "FA-01 Reversed", "Clt_JKT022": "Pullover Coat", "Clt_JKT023": "Kensa Coat", "Clt_JKT024": "Birded Corduroy Jacket", "Clt_JKT025": "Deep-Octo Satin Jacket", "Clt_JKT026": "Zekko Redleaf Coat", "Clt_JKT027": "Eggplant Mountain Coat", "Clt_JKT028": "Zekko Jade Coat", "Clt_JKT029": "Light Bomber Jacket", "Clt_JKT030": "Brown FA-11 Bomber", "Clt_JKT031": "Gray FA-11 Bomber", "Clt_JKT032": "Milky Eminence Jacket", "Clt_JKT033": "Navy Eminence Jacket", "Clt_JKT034": "Tumeric Zekko Coat", "Clt_JKT035": "Custom Painted F-3 ", "Clt_JKT036": "Dark Bomber Jacket", "Clt_JKT037": "Moist Ghillie Suit", "Clt_JKT038": "White Leather F-3", "Clt_JKT039": "Chili-Pepper Ski Jacket", "Clt_JKT040": "Whale-Knit Sweater", "Clt_JKT041": "Rockin' Leather Jacket", "Clt_JKT042": "Kung-Fu Zip-Up", "Clt_JKT043": "Panda Kung-Fu Zip-Up", "Clt_JKT044": "Sennyu Suit", "Clt_MSN000": "Hero Jacket Replica", "Clt_MSN004": "Armor Jacket Replica", "Clt_MSN101": "Hero Hoodie Replica", "Clt_MSN104": "Neo Octoling Armor", "Clt_MSN105": "Null Armor Replica", "Clt_MSN106": "Old-Timey Clothes", "Clt_PLO000": "Shrimp-Pink Polo", "Clt_PLO001": "Striped Rugby", "Clt_PLO002": "Tricolor Rugby", "Clt_PLO003": "Sage Polo", "Clt_PLO004": "Black Polo", "Clt_PLO005": "Cycling Shirt", "Clt_PLO006": "Cycle King Jersey", "Clt_PLO007": "Slipstream United", "Clt_PLO008": "FC Albacore", "Clt_PRK000": "Camo Zip Hoodie", "Clt_PRK001": "Green Zip Hoodie", "Clt_PRK002": "Zekko Hoodie", "Clt_PRK004": "Shirt with Blue Hoodie", "Clt_PRK005": "Grape Hoodie", "Clt_PRK006": "Gray Hoodie", "Clt_PRK007": "Hothouse Hoodie", "Clt_PRK008": "Pink Hoodie", "Clt_PRK009": "Olive Zekko Parka", "Clt_PRK010": "Black Hoodie", "Clt_PRK011": "Octo Support Hoodie", "Clt_RVL000": "Octoling Armor", "Clt_SHT000": "Lumberjack Shirt", "Clt_SHT001": "Rodeo Shirt", "Clt_SHT002": "Green-Check Shirt", "Clt_SHT003": "White Shirt", "Clt_SHT004": "Urchins Jersey", "Clt_SHT005": "Aloha Shirt", "Clt_SHT006": "Red-Check Shirt", "Clt_SHT007": "Baby-Jelly Shirt", "Clt_SHT008": "Baseball Jersey", "Clt_SHT009": "Gray Mixed Shirt", "Clt_SHT010": "Vintage Check Shirt", "Clt_SHT011": "Round-Collar Shirt", "Clt_SHT012": "Logo Aloha Shirt", "Clt_SHT013": "Striped Shirt", "Clt_SHT014": "Linen Shirt", "Clt_SHT015": "Shirt & Tie", "Clt_SHT017": "Hula Punk Shirt", "Clt_SHT018": "Octobowler Shirt", "Clt_SHT019": "Inkfall Shirt", "Clt_SHT020": "Crimson Parashooter", "Clt_SHT021": "Baby-Jelly Shirt & Tie", "Clt_SHT022": "Prune Parashooter", "Clt_SHT023": "Red Hula Punk with Tie", "Clt_SHT024": "Chili Octo Aloha", "Clt_SHT025": "Annaki Flannel Hoodie", "Clt_SHT026": "Ink-Wash Shirt", "Clt_SHT027": "Dots-On-Dots Shirt", "Clt_SHT028": "Toni K. Baseball Jersey", "Clt_SHT029": "Online Jersey", "Clt_SWT000": "Gray College Sweat", "Clt_SWT001": "Squidmark Sweat", "Clt_SWT002": "Retro Sweat", "Clt_SWT003": "Firefin Navy Sweat", "Clt_SWT004": "Navy College Sweat", "Clt_SWT005": "Reel Sweat", "Clt_SWT006": "Anchor Sweat", "Clt_SWT007": "Negative Longcuff Sweater", "Clt_SWT008": "Short Knit Layers", "Clt_SWT009": "Positive Longcuff Sweater", "Clt_SWT010": "Annaki Blue Cuff", "Clt_SWT011": "Annaki Yellow Cuff", "Clt_SWT012": "Annaki Red Cuff", "Clt_SWT013": "N-Pacer Sweat", "Clt_SWT014": "Octarian Retro", "Clt_SWT015": "Takoroka Jersey", "Clt_TEL000": "White Striped LS", "Clt_TEL001": "Black LS", "Clt_TEL002": "Purple Camo LS", "Clt_TEL003": "Navy Striped LS", "Clt_TEL004": "Zekko Baseball LS", "Clt_TEL005": "Varsity Baseball LS", "Clt_TEL006": "Black Baseball LS", "Clt_TEL007": "White Baseball LS", "Clt_TEL008": "White LS", "Clt_TEL009": "Green Striped LS", "Clt_TEL010": "Squidmark LS", "Clt_TEL011": "Zink LS", "Clt_TEL012": "Striped Peaks LS", "Clt_TEL013": "Pink Easy-Stripe Shirt", "Clt_TEL014": "Inkopolis Squaps Jersey", "Clt_TEL015": "Annaki Drive Tee ", "Clt_TEL016": "Lime Easy-Stripe Shirt", "Clt_TEL017": "Annaki Evolution Tee", "Clt_TEL018": "Zekko Long Carrot Tee", "Clt_TEL019": "Zekko Long Radish Tee", "Clt_TEL020": "Black Cuttlegear LS", "Clt_TEL021": "Takoroka Crazy Baseball LS", "Clt_TEL022": "Red Cuttlegear LS", "Clt_TEL023": "Khaki 16-Bit FishFry", "Clt_TEL024": "Blue 16-Bit FishFry", "Clt_TES000": "White Tee", "Clt_TES001": "Black Squideye", "Clt_TES003": "Sky-Blue Squideye", "Clt_TES004": "Rockenberg White", "Clt_TES005": "Rockenberg Black", "Clt_TES006": "Black Tee", "Clt_TES007": "Sunny-Day Tee", "Clt_TES008": "Rainy-Day Tee", "Clt_TES009": "Reggae Tee", "Clt_TES010": "Fugu Tee", "Clt_TES011": "Mint Tee", "Clt_TES012": "Grape Tee", "Clt_TES013": "Red Vector Tee", "Clt_TES014": "Gray Vector Tee", "Clt_TES015": "Blue Peaks Tee", "Clt_TES016": "Ivory Peaks Tee", "Clt_TES017": "Squid-Stitch Tee", "Clt_TES018": "Pirate-Stripe Tee", "Clt_TES019": "Sailor-Stripe Tee", "Clt_TES020": "White 8-Bit FishFry", "Clt_TES021": "Black 8-Bit FishFry", "Clt_TES022": "White Anchor Tee", "Clt_TES023": "Black Anchor Tee", "Clt_TES026": "Carnivore Tee", "Clt_TES027": "Pearl Tee", "Clt_TES028": "Octo Tee", "Clt_TES029": "Herbivore Tee", "Clt_TES030": "Black V-Neck Tee", "Clt_TES031": "White Deca Logo Tee", "Clt_TES032": "Half-Sleeve Sweater", "Clt_TES033": "King Jersey", "Clt_TES034": "Gray 8-Bit FishFry", "Clt_TES035": "White V-Neck Tee", "Clt_TES036": "White Urchin Rock Tee", "Clt_TES037": "Black Urchin Rock Tee", "Clt_TES038": "Wet Floor Band Tee", "Clt_TES039": "Squid Squad Band Tee", "Clt_TES040": "Navy Deca Logo Tee", "Clt_TES041": "Mister Shrug Tee", "Clt_TES042": "Chirpy Chips Band Tee", "Clt_TES043": "Hightide Era Band Tee", "Clt_TES044": "Red V-Neck Limited Tee", "Clt_TES045": "Green V-Neck Limited Tee", "Clt_TES046": "\u03c9-3 Tee", "Clt_TES047": "Annaki Polpo-Pic Tee", "Clt_TES048": "Firewave Tee", "Clt_TES049": "Takoroka Galactic Tie Dye", "Clt_TES050": "Takoroka Rainbow Tie Dye", "Clt_TES051": "Missus Shrug Tee", "Clt_TES052": "League Tee", "Clt_TES053": "Friend Tee", "Clt_TES054": "Tentatek Slogan Tee", "Clt_TES055": "Icewave Tee", "Clt_TES056": "Octoking HK Jersey", "Clt_TES057": "Dakro Nana Tee", "Clt_TES058": "Dakro Golden Tee", "Clt_TES059": "Black Velour Octoking Tee ", "Clt_TES060": "Green Velour Octoking Tee", "Clt_TES061": "SWC Logo Tee", "Clt_TLY000": "White Layered LS", "Clt_TLY001": "Yellow Layered LS", "Clt_TLY002": "Camo Layered LS", "Clt_TLY003": "Black Layered LS", "Clt_TLY004": "Zink Layered LS", "Clt_TLY005": "Layered Anchor LS", "Clt_TLY006": "Choco Layered LS", "Clt_TLY007": "Part-Time Pirate", "Clt_TLY008": "Layered Vector LS", "Clt_TLY009": "Green Tee", "Clt_TLY010": "Red Tentatek Tee", "Clt_TLY011": "Blue Tentatek Tee", "Clt_TLY012": "Octo Layered LS", "Clt_TLY013": "Squid Yellow Layered LS", "Clt_TNK000": "B-ball Jersey (Home)", "Clt_TNK001": "B-ball Jersey (Away)", "Clt_TNK003": "White King Tank", "Clt_TNK004": "Slash King Tank", "Clt_TNK005": "Navy King Tank", "Clt_TNK006": "Lob-Stars Jersey", "Clt_VST000": "Mountain Vest", "Clt_VST001": "Forest Vest", "Clt_VST002": "Dark Urban Vest", "Clt_VST003": "Yellow Urban Vest", "Clt_VST004": "Squid-Pattern Waistcoat", "Clt_VST005": "Squidstar Waistcoat", "Clt_VST007": "Fishing Vest", "Clt_VST008": "Front Zip Vest", "Clt_VST009": "Silver Tentatek Vest", "ComeBack": "Comeback", "DeathMarking": "Haunt", "Defence": "Durability", "EndAllUp": "Last-Ditch Effort", "ExSkillDouble": "Ability Doubler", "Exorcist": "Respawn Punisher", "Explosion": "Impact", "Flag": "Squid Beakon", "Fld_Amida01_Vss": "Port Mackerel", "Fld_Athletic01_Vss": "Camp Triggerfish", "Fld_Carousel00_Vss": "Wahoo World", "Fld_Court00_Vss": "Goby Arena", "Fld_Deli_Octa00_02_Vss": "Windmill House on the Pearlie", "Fld_Deli_Octa01_2_Vss": "Wayslide Cool", "Fld_Deli_Octa02_2_Vss": "The Secret of S.P.L.A.T.", "Fld_Deli_Octa03_2_Vss": "Goosponge", "Fld_Deli_Octa05_Vss": "Cannon Fire Pearl", "Fld_Deli_Octa06_Vss": "Zone of Glass", "Fld_Deli_Octa07_Vss": "Fancy Spew", "Fld_Deli_Octa08_Vss": "Grapplink Girl", "Fld_Deli_Octa09_Vss": "Zappy Longshocking", "Fld_Deli_Octa10_Vss": "The Bunker Games", "Fld_Deli_Octa11_Vss": "A Swiftly Tilting Balance", "Fld_Deli_Octa12_Vss": "The Switches", "Fld_Deli_Octa13_Vss": "Sweet Valley Tentacles", "Fld_Deli_Octa14_Vss": "The Bouncey Twins", "Fld_Deli_Octa15_Vss": "Railway Chillin'", "Fld_Deli_Octa16_Vss": "Gusher Towns", "Fld_Deli_Octa17_Vss": "The Maze Dasher", "Fld_Deli_Octa18_Vss": "Flooders in the Attic", "Fld_Deli_Octa19_Vss": "The Splat in our Zones", "Fld_Deli_Octa20_Vss": "The Ink is Spreading", "Fld_Deli_Octa21_Vss": "Bridge to Tentaswitchia", "Fld_Deli_Octa22_Vss": "The Chronicles of Rolonium", "Fld_Deli_Octa23_Vss": "Furler in the Ashes", "Fld_Deli_Octa24_Vss": "MC.Princess Diaries", "Fld_Deli_Vss": "Shifty Station", "Fld_Ditch02_Vss": "The Reef", "Fld_Kawa00_Vss": "Snapper Canal", "Fld_Line00_Vss": "MakoMart", "Fld_Maze01_Vss": "Kelp Dome", "Fld_Maze02_Vss": "Kelp Dome", "Fld_Mirror00_Vss": "Skipper Pavilion", "Fld_Nagasaki00_Vss": "Sturgeon Shipyard", "Fld_Nakasu00_Vss": "New Albacore Hotel", "Fld_Nakasu02_Vss": "New Albacore Hotel", "Fld_Office01_Vss": "Ancho-V Games", "Fld_Pillar00_Vss": "Manta Maria", "Fld_Quarry01_Vss": "Piranha Pit", "Fld_Shakehouse00_Cop": "Lost Outpost", "Fld_Shakelift00_Cop": "Salmonid Smokeyard", "Fld_Shakeride00_Cop": "Ruins of Ark Polaris", "Fld_Shakeship00_Cop": "Marooner's Bay", "Fld_Shakeup00_Cop": "Spawning Grounds", "Fld_SkatePark02_Vss": "Blackbelly Skatepark", "Fld_Tunnel00_Vss": "Shellendorf Institute", "Fld_Tunnel02_Vss": "Shellendorf Institute", "Fld_Tuzura00_Vss": "Moray Towers", "Fld_Unduck00_Vss": "Musselforge Fitness", "Fld_UpDown01_Vss": "Arowana Mall", "Fld_Upland00_Vss": "Inkblot Art Academy", "Fld_Venue02_Vss": "Starfish Mainstage", "Fld_Warehouse01_Vss": "Walleye Warehouse", "Fld_Wave00_Vss": "Humpback Pump Track", "Hed_ACC001": "Eminence Cuff", "Hed_AMB000": "Squid Hairclip", "Hed_AMB001": "Samurai Helmet", "Hed_AMB002": "Power Mask", "Hed_AMB003": "Squid Clip-Ons", "Hed_AMB004": "Squinja Mask", "Hed_AMB005": "Power Mask Mk I", "Hed_AMB006": "Pearlescent Crown", "Hed_AMB007": "Marinated Headphones", "Hed_AMB008": "Enchanted Hat", "Hed_AMB009": "Steel Helm", "Hed_AMB010": "Fresh Fish Head", "Hed_CAP000": "Urchins Cap", "Hed_CAP001": "Lightweight Cap", "Hed_CAP002": "Takoroka Mesh", "Hed_CAP003": "Streetstyle Cap", "Hed_CAP004": "Squid-Stitch Cap", "Hed_CAP005": "Squidvader Cap", "Hed_CAP006": "Camo Mesh", "Hed_CAP007": "Five-Panel Cap", "Hed_CAP008": "Zekko Mesh", "Hed_CAP009": "Backwards Cap", "Hed_CAP010": "Two-Stripe Mesh", "Hed_CAP011": "Jet Cap", "Hed_CAP012": "Cycling Cap", "Hed_CAP014": "Cycle King Cap", "Hed_CAP015": "Legendary Cap", "Hed_CAP018": "Long-Billed Cap", "Hed_CAP019": "King Flip Mesh", "Hed_CAP020": "Hickory Work Cap", "Hed_CAP021": "Woolly Urchins Classic", "Hed_CAP023": "Jellyvader Cap", "Hed_CAP024": "House-Tag Denim Cap", "Hed_CAP025": "Blowfish Newsie", "Hed_CAP026": "Do-Rag, Cap, & Glasses", "Hed_CAP027": "Pilot Hat", "Hed_COP100": "Headlamp Helmet", "Hed_COP101": "Dust Blocker 2000", "Hed_COP102": "Welding Mask", "Hed_COP103": "Beekeeper Hat", "Hed_COP104": "Octoleet Goggles", "Hed_COP105": "Cap of Legend", "Hed_COP106": "Oceanic Hard Hat", "Hed_COP107": "Worker's Head Towel", "Hed_COP108": "Worker's Cap", "Hed_COP109": "Sailor Cap", "Hed_CRC000": "Mecha Head - HTR", "Hed_EYE000": "Retro Specs", "Hed_EYE001": "Splash Goggles", "Hed_EYE002": "Pilot Goggles", "Hed_EYE003": "Tinted Shades", "Hed_EYE004": "Black Arrowbands", "Hed_EYE005": "Snorkel Mask", "Hed_EYE006": "White Arrowbands", "Hed_EYE007": "Fake Contacts", "Hed_EYE008": "18K Aviators", "Hed_EYE009": "Full Moon Glasses", "Hed_EYE010": "Octoglasses", "Hed_EYE011": "Half-Rim Glasses", "Hed_EYE012": "Double Egg Shades", "Hed_EYE013": "Zekko Cap", "Hed_EYE014": "SV925 Circle Shades", "Hed_EYE015": "Annaki Beret & Glasses", "Hed_EYE016": "Swim Goggles", "Hed_EYE017": "Ink-Guard Goggles", "Hed_EYE018": "Toni Kensa Goggles", "Hed_EYE019": "Sennyu Goggles", "Hed_EYE020": "Sennyu Specs", "Hed_FST000": "White Headband", "Hed_HAP000": "Kyonshi Hat", "Hed_HAP001": "Li'l Devil Horns", "Hed_HAP002": "Hockey Mask", "Hed_HAP003": "Anglerfish Mask", "Hed_HAP004": "Festive Party Cone", "Hed_HAP005": "New Year's Glasses DX", "Hed_HAP006": "Twisty Headband", "Hed_HAP007": "Eel-Cake Hat", "Hed_HAP008": "Purple Novelty Visor", "Hed_HAP009": "Green Novelty Visor", "Hed_HAP010": "Orange Novelty Visor", "Hed_HAP011": "Pink Novelty Visor", "Hed_HAP012": "Jetflame Crest", "Hed_HAP013": "Fierce Fishskull", "Hed_HAP014": "Hivemind Antenna", "Hed_HAP015": "Eye of Justice", "Hed_HAT000": "Safari Hat", "Hed_HAT001": "Jungle Hat", "Hed_HAT002": "Camping Hat", "Hed_HAT003": "Blowfish Bell Hat", "Hed_HAT004": "Bamboo Hat", "Hed_HAT005": "Straw Boater", "Hed_HAT006": "Classic Straw Boater", "Hed_HAT007": "Treasure Hunter", "Hed_HAT008": "Bucket Hat", "Hed_HAT009": "Patched Hat", "Hed_HAT010": "Tulip Parasol", "Hed_HAT011": "Fugu Bell Hat", "Hed_HAT012": "Seashell Bamboo Hat", "Hed_HAT013": "Hothouse Hat", "Hed_HAT014": "Mountie Hat", "Hed_HBD001": "B-ball Headband", "Hed_HBD002": "Squash Headband", "Hed_HBD003": "Tennis Headband", "Hed_HBD004": "Jogging Headband", "Hed_HBD005": "Soccer Headband", "Hed_HBD007": "FishFry Biscuit Bandana", "Hed_HBD008": "Black FishFry Bandana", "Hed_HDP000": "Studio Headphones", "Hed_HDP001": "Designer Headphones", "Hed_HDP002": "Noise Cancelers", "Hed_HDP003": "Squidfin Hook Cans", "Hed_HDP004": "Squidlife Headphones", "Hed_HDP005": "Studio Octophones", "Hed_HDP006": "Sennyu Headphones", "Hed_MET000": "Bike Helmet", "Hed_MET002": "Stealth Goggles", "Hed_MET003": "Tentacles Helmet", "Hed_MET004": "Skate Helmet", "Hed_MET005": "Visor Skate Helmet", "Hed_MET006": "MTB Helmet", "Hed_MET007": "Hockey Helmet", "Hed_MET008": "Matte Bike Helmet", "Hed_MET009": "Octo Tackle Helmet Deco", "Hed_MET010": "Moist Ghillie Helmet", "Hed_MET011": "Deca Tackle Visor Helmet", "Hed_MSK000": "Gas Mask", "Hed_MSK001": "Paintball Mask", "Hed_MSK002": "Paisley Bandana", "Hed_MSK003": "Skull Bandana", "Hed_MSK004": "Painter's Mask", "Hed_MSK005": "Annaki Mask", "Hed_MSK006": "Octoking Facemask", "Hed_MSK007": "Squid Facemask", "Hed_MSK008": "Firefin Facemask", "Hed_MSK009": "King Facemask", "Hed_MSK010": "Motocross Nose Guard", "Hed_MSK011": "Forge Mask", "Hed_MSK012": "Digi-Camo Forge Mask", "Hed_MSK013": "Koshien Bandana", "Hed_MSN000": "Hero Headset Replica", "Hed_MSN004": "Armor Helmet Replica", "Hed_MSN101": "Hero Headphones Replica", "Hed_MSN104": "Octoling Shades", "Hed_MSN105": "Null Visor Replica", "Hed_MSN106": "Old-Timey Hat", "Hed_MSN107": "Conductor Cap", "Hed_MSN108": "Golden Toothpick", "Hed_NCP000": "Bobble Hat", "Hed_NCP001": "Short Beanie", "Hed_NCP002": "Striped Beanie", "Hed_NCP003": "Sporty Bobble Hat", "Hed_NCP004": "Special Forces Beret", "Hed_NCP005": "Squid Nordic", "Hed_NCP006": "Sennyu Bon Bon Beanie", "Hed_NCP008": "Knitted Hat", "Hed_NCP009": "Annaki Beret", "Hed_NCP010": "Yamagiri Beanie", "Hed_NCP011": "Sneaky Beanie", "Hed_RVL000": "Octoling Goggles", "Hed_VIS000": "Golf Visor", "Hed_VIS001": "FishFry Visor", "Hed_VIS002": "Sun Visor", "Hed_VIS003": "Takoroka Visor", "Hed_VIS004": "Face Visor", "HumanMove_Up": "Run Speed Up", "InkRecovery_Up": "Ink Recovery Up", "Jetpack": "Inkjet", "JumpTime_Save": "Quick Super Jump", "LauncherCurling": "Curling-Bomb Launcher", "LauncherQuick": "Burst-Bomb Launcher", "LauncherRobo": "Autobomb Launcher", "LauncherSplash": "Splat-Bomb Launcher", "LauncherSuction": "Suction-Bomb Launcher", "MPU_BrushSpeedUp": "Slightly increases\nmovement speed\nwhile inking.", "MPU_CanopyHPUp": "Increases Brella\ncanopy durability.", "MPU_CanopyRecoveryUp": "Speeds up Brella\ncanopy regeneration.", "MPU_DamageAreaUp": "Increases high-damage\nradius of explosions.", "MPU_DamageReductionDown": "Increases maximum\ndamage range.", "MPU_DamageUp": "Increases damage.", "MPU_PaintUp": "Increases ink coverage.", "MPU_RangeUp": "Slightly increases range.", "MPU_ReduceDegJump": "Increases shot accuracy\nwhen firing while jumping.", "MPU_ShootingFrameUp": "Increases duration of\nfiring in a burst.", "MainInk_Save": "Ink Saver (Main)", "MarkingTime_Reduction": "Main Power Up", "MinorityUp": "Tenacity", "MissileMissilePosition": "Cannon", "Mobility": "Mobility", "ObjectEffect_Up": "Object Shredder", "OpInkEffect_Reduction": "Ink Resistance Up", "PaintSpeed": "Ink Speed", "PointSensor": "Point Sensor", "PoisonFog": "Toxic Mist", "Power": "Damage", "RainCloud": "Ink Storm", "Range": "Range", "RespawnSpecialGauge_Save": "Special Saver", "RespawnTime_Save": "Quick Respawn", "Roller_BrushMini_00": "Inkbrush", "Roller_BrushMini_01": "Inkbrush Nouveau", "Roller_BrushMini_02": "Permanent Inkbrush", "Roller_BrushNormal_00": "Octobrush", "Roller_BrushNormal_01": "Octobrush Nouveau", "Roller_BrushNormal_02": "Kensa Octobrush", "Roller_BrushNormal_H": "Herobrush Replica", "Roller_Compact_00": "Carbon Roller", "Roller_Compact_01": "Carbon Roller Deco", "Roller_Heavy_00": "Dynamo Roller", "Roller_Heavy_01": "Gold Dynamo Roller", "Roller_Heavy_02": "Kensa Dynamo Roller", "Roller_Hunter_00": "Flingza Roller", "Roller_Hunter_01": "Foil Flingza Roller", "Roller_MissionBrushNormalLv0": "Herobrush", "Roller_MissionBrushNormalLv1": "Herobrush", "Roller_MissionNormalLv0": "Hero Roller", "Roller_MissionNormalLv1": "Hero Roller", "Roller_Normal_00": "Splat Roller", "Roller_Normal_01": "Krak-On Splat Roller", "Roller_Normal_02": "Kensa Splat Roller", "Roller_Normal_H": "Hero Roller Replica", "SE_Blank": "", "SE_BombDamage_Reduction": "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.", "SE_BombDistance_Up": "Upgrades your\nsub weapon.", "SE_ComeBack": "Boosts some of your\nabilities for a short\ntime after respawning.", "SE_DeathMarking": "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.", "SE_EndAllUp": "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.", "SE_ExSkillDouble": "Doubles the effect of\nother gear abilities\nattached to this gear.", "SE_Exorcist": "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.", "SE_HumanMove_Up": "Increases movement\nspeed in Inkling form.", "SE_InkRecovery_Up": "Increases ink-tank refill\nrate.", "SE_JumpTime_Save": "Increases Super Jump\nspeed.", "SE_MainInk_Save": "Decreases amount\nof ink consumed by\nyour main weapon.", "SE_MarkingTime_Reduction": "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000", "SE_MarkingTime_Reduction_Default": "Upgrades your\nmain weapon.", "SE_MinorityUp": "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.", "SE_ObjectEffect_Up": "Increases damage dealt\nto all non-player targets.", "SE_OpInkEffect_Reduction": "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.", "SE_RespawnSpecialGauge_Save": "Reduces special-gauge\ndecrease after getting\nsplatted.", "SE_RespawnTime_Save": "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.", "SE_SomersaultLanding": "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.", "SE_SpecialIncrease_Up": "Increases special-\ngauge fill rate.", "SE_SpecialTime_Up": "Upgrades your\nspecial weapon.", "SE_SquidMoveSpatter_Reduction": "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.", "SE_SquidMove_Up": "Increases movement\nspeed in squid form.", "SE_StartAllUp": "Boosts your speed while\nmoving for the first 30\nseconds of battle.", "SE_SubInk_Save": "Decreases amount\nof ink consumed by\nyour sub weapon.", "SE_SuperJumpSign_Hide": "Hides your Super Jump\nlanding point from\ndistant players.", "SE_ThermalInk": "Allows you to track\ndistant players hit with\nshots from your main\nweapon.", "SE_Unknown": "Unlock this ability by\nbattling while wearing\nthis gear.", "Shachihoko": "Rainmaker", "Shield": "Splash Wall", "Shooter_BlasterCoopBurst": "Grizzco Blaster", "Shooter_BlasterLightLong_00": "Rapid Blaster Pro", "Shooter_BlasterLightLong_01": "Rapid Blaster Pro Deco", "Shooter_BlasterLightShort_00": "Clash Blaster", "Shooter_BlasterLightShort_01": "Clash Blaster Neo", "Shooter_BlasterLight_00": "Rapid Blaster", "Shooter_BlasterLight_01": "Rapid Blaster Deco", "Shooter_BlasterLight_02": "Kensa Rapid Blaster", "Shooter_BlasterLong_00": "Range Blaster", "Shooter_BlasterLong_01": "Custom Range Blaster", "Shooter_BlasterLong_02": "Grim Range Blaster", "Shooter_BlasterMiddle_00": "Blaster", "Shooter_BlasterMiddle_01": "Custom Blaster", "Shooter_BlasterMiddle_H": "Hero Blaster Replica", "Shooter_BlasterMissionMiddleLv0": "Hero Blaster", "Shooter_BlasterMissionMiddleLv1": "Hero Blaster", "Shooter_BlasterShort_00": "Luna Blaster", "Shooter_BlasterShort_01": "Luna Blaster Neo", "Shooter_BlasterShort_02": "Kensa Luna Blaster", "Shooter_Blaze_00": "Aerospray MG", "Shooter_Blaze_01": "Aerospray RG", "Shooter_Blaze_02": "Aerospray PG", "Shooter_Expert_00": "Splattershot Pro", "Shooter_Expert_01": "Forge Splattershot Pro", "Shooter_Expert_02": "Kensa Splattershot Pro", "Shooter_First_00": "Splattershot Jr.", "Shooter_First_01": "Custom Splattershot Jr.", "Shooter_First_02": "Kensa Splattershot Jr.", "Shooter_Flash_00": "Squeezer", "Shooter_Flash_01": "Foil Squeezer", "Shooter_Gravity_00": ".52 Gal", "Shooter_Gravity_01": ".52 Gal Deco", "Shooter_Gravity_02": "Kensa .52 Gal", "Shooter_Heavy_00": ".96 Gal", "Shooter_Heavy_01": ".96 Gal Deco", "Shooter_Long_00": "Jet Squelcher", "Shooter_Long_01": "Custom Jet Squelcher", "Shooter_MissionNormalLv0": "Hero Shot", "Shooter_MissionNormalLv1": "Hero Shot", "Shooter_MissionNormalLv2": "Hero Shot", "Shooter_Normal_00": "Splattershot", "Shooter_Normal_01": "Tentatek Splattershot", "Shooter_Normal_02": "Kensa Splattershot", "Shooter_Normal_H": "Hero Shot Replica", "Shooter_Normal_Oct": "Octo Shot Replica", "Shooter_Precision_00": "Splash-o-matic", "Shooter_Precision_01": "Neo Splash-o-matic", "Shooter_QuickMiddle_00": "N-ZAP '85", "Shooter_QuickMiddle_01": "N-ZAP '89", "Shooter_QuickMiddle_02": "N-ZAP '83", "Shooter_Short_00": "Sploosh-o-matic", "Shooter_Short_01": "Neo Sploosh-o-matic", "Shooter_Short_02": "Sploosh-o-matic 7", "Shooter_TripleMiddle_00": "H-3 Nozzlenose", "Shooter_TripleMiddle_01": "H-3 Nozzlenose D", "Shooter_TripleMiddle_02": "Cherry H-3 Nozzlenose", "Shooter_TripleQuick_00": "L-3 Nozzlenose", "Shooter_TripleQuick_01": "L-3 Nozzlenose D", "Shooter_TripleQuick_02": "Kensa L-3 Nozzlenose", "Shs_AMB000": "School Shoes", "Shs_AMB001": "Samurai Shoes", "Shs_AMB002": "Power Boots", "Shs_AMB003": "Fringed Loafers", "Shs_AMB004": "Squinja Boots", "Shs_AMB005": "Power Boots Mk I", "Shs_AMB006": "Pearlescent Kicks", "Shs_AMB007": "Marinated Slip-Ons", "Shs_AMB008": "Enchanted Boots", "Shs_AMB009": "Steel Greaves", "Shs_AMB010": "Fresh Fish Feet", "Shs_BOT000": "Moto Boots", "Shs_BOT001": "Tan Work Boots", "Shs_BOT002": "Red Work Boots", "Shs_BOT003": "Blue Moto Boots", "Shs_BOT004": "Green Rain Boots", "Shs_BOT005": "Acerola Rain Boots", "Shs_BOT006": "Punk Whites", "Shs_BOT007": "Punk Cherries", "Shs_BOT008": "Punk Yellows", "Shs_BOT009": "Bubble Rain Boots", "Shs_BOT010": "Snowy Down Boots", "Shs_BOT011": "Icy Down Boots", "Shs_BOT012": "Hunting Boots", "Shs_BOT013": "Punk Blacks", "Shs_BOT014": "Deepsea Leather Boots", "Shs_BOT015": "Moist Ghillie Boots", "Shs_BOT016": "Annaki Arachno Boots", "Shs_BOT017": "New-Leaf Leather Boots", "Shs_BOT018": "Tea-Green Hunting Boots", "Shs_CFS000": "Blueberry Casuals", "Shs_CFS001": "Plum Casuals", "Shs_COP101": "Angry Rain Boots", "Shs_COP102": "Non-slip Senseis", "Shs_COP103": "Octoleet Boots", "Shs_COP104": "Friendship Bracelet", "Shs_COP105": "Flipper Floppers", "Shs_COP106": "Wooden Sandals", "Shs_CRC000": "Mecha Legs - LBS", "Shs_FST000": "Cream Basics", "Shs_HAP000": "Pearl-Scout Lace-Ups", "Shs_HAP001": "Pearlescent Squidkid IV", "Shs_HAP002": "Pearl Punk Crowns", "Shs_HAP003": "New-Day Arrows", "Shs_HAP004": "Marination Lace-Ups", "Shs_HAP005": "Rina Squidkid IV", "Shs_HAP006": "Trooper Power Stripes", "Shs_HAP007": "Midnight Slip-Ons", "Shs_LTS000": "White Kicks", "Shs_LTS001": "Cherry Kicks", "Shs_LTS002": "Turquoise Kicks", "Shs_LTS003": "Squink Wingtips", "Shs_LTS004": "Roasted Brogues", "Shs_LTS005": "Kid Clams", "Shs_LTS006": "Smoky Wingtips", "Shs_LTS007": "Navy Red-Soled Wingtips", "Shs_LTS008": "Gray Yellow-Soled Wingtips", "Shs_LTS009": "Inky Kid Clams", "Shs_LTS010": "Annaki Habaneros", "Shs_LTS011": "Annaki Tigers", "Shs_LTS012": "Sennyu Inksoles", "Shs_MSN000": "Hero Runner Replicas", "Shs_MSN004": "Armor Boot Replicas", "Shs_MSN101": "Hero Snowboots Replicas", "Shs_MSN104": "Neo Octoling Boots", "Shs_MSN105": "Null Boots Replica", "Shs_MSN106": "Old-Timey Shoes", "Shs_RVL000": "Octoling Boots", "Shs_SDL000": "Oyster Clogs", "Shs_SDL001": "Choco Clogs", "Shs_SDL003": "Neon Delta Straps", "Shs_SDL004": "Black Flip-Flops", "Shs_SDL005": "Snow Delta Straps", "Shs_SDL006": "Luminous Delta Straps", "Shs_SDL007": "Red FishFry Sandals", "Shs_SDL008": "Yellow FishFry Sandals", "Shs_SDL009": "Musselforge Flip-Flops", "Shs_SHI000": "Red Hi-Horses", "Shs_SHI001": "Zombie Hi-Horses", "Shs_SHI002": "Cream Hi-Tops", "Shs_SHI003": "Purple Hi-Horses", "Shs_SHI004": "Hunter Hi-Tops", "Shs_SHI005": "Red Hi-Tops", "Shs_SHI006": "Gold Hi-Horses", "Shs_SHI008": "Shark Moccasins", "Shs_SHI009": "Mawcasins", "Shs_SHI010": "Chocolate Dakroniks", "Shs_SHI011": "Mint Dakroniks", "Shs_SHI012": "Black Dakroniks", "Shs_SHI013": "Piranha Moccasins", "Shs_SHI014": "White Norimaki 750s", "Shs_SHI015": "Black Norimaki 750s", "Shs_SHI016": "Sunset Orca Hi-Tops", "Shs_SHI017": "Red & Black Squidkid IV", "Shs_SHI018": "Blue & Black Squidkid IV", "Shs_SHI019": "Gray Sea-Slug Hi-Tops", "Shs_SHI020": "Orca Hi-Tops", "Shs_SHI021": "Milky Enperrials", "Shs_SHI022": "Navy Enperrials", "Shs_SHI023": "Amber Sea Slug Hi-Tops", "Shs_SHI024": "Yellow Iromaki 750s", "Shs_SHI025": "Red & White Squidkid V", "Shs_SHI026": "Honey & Orange Squidkid V", "Shs_SHI027": "Sun & Shade Squidkid IV", "Shs_SHI028": "Orca Woven Hi-Tops", "Shs_SHI029": "Green Iromaki 750s", "Shs_SHI030": "Purple Iromaki 750s", "Shs_SHI031": "Red Iromaki 750s", "Shs_SHI032": "Blue Iromaki 750s", "Shs_SHI033": "Orange Iromaki 750s", "Shs_SHI034": "Red Power Stripes", "Shs_SHI035": "Blue Power Stripes", "Shs_SHI036": "Toni Kensa Black Hi-Tops", "Shs_SHI037": "Sesame Salt 270s", "Shs_SHI038": "Black & Blue Squidkid V", "Shs_SHI039": "Orca Passion Hi-Tops", "Shs_SHI040": "Truffle Canvas Hi-Tops", "Shs_SHI041": "Online Squidkid V", "Shs_SHT000": "Pink Trainers", "Shs_SHT001": "Orange Arrows", "Shs_SHT002": "Neon Sea Slugs", "Shs_SHT003": "White Arrows", "Shs_SHT004": "Cyan Trainers", "Shs_SHT005": "Blue Sea Slugs", "Shs_SHT006": "Red Sea Slugs", "Shs_SHT007": "Purple Sea Slugs", "Shs_SHT008": "Crazy Arrows", "Shs_SHT009": "Black Trainers", "Shs_SHT010": "Violet Trainers", "Shs_SHT011": "Canary Trainers", "Shs_SHT012": "Yellow-Mesh Sneakers", "Shs_SHT013": "Arrow Pull-Ons", "Shs_SHT014": "Red-Mesh Sneakers", "Shs_SHT015": "N-Pacer CaO", "Shs_SHT016": "N-Pacer Ag", "Shs_SHT017": "N-Pacer Au", "Shs_SHT018": "Sea Slug Volt 95s", "Shs_SHT019": "Athletic Arrows", "Shs_SLO000": "Blue Lo-Tops", "Shs_SLO001": "Banana Basics", "Shs_SLO002": "LE Lo-Tops", "Shs_SLO003": "White Seahorses", "Shs_SLO004": "Orange Lo-Tops", "Shs_SLO005": "Black Seahorses", "Shs_SLO006": "Clownfish Basics", "Shs_SLO007": "Yellow Seahorses", "Shs_SLO008": "Strapping Whites", "Shs_SLO009": "Strapping Reds", "Shs_SLO010": "Soccer Shoes", "Shs_SLO011": "LE Soccer Shoes", "Shs_SLO012": "Sunny Climbing Shoes", "Shs_SLO013": "Birch Climbing Shoes", "Shs_SLO014": "Green Laceups", "Shs_SLO015": "White Laceless Dakroniks", "Shs_SLO016": "Blue Laceless Dakroniks", "Shs_SLO017": "Suede Gray Lace-Ups", "Shs_SLO018": "Suede Nation Lace-Ups", "Shs_SLO019": "Suede Marine Lace-Ups", "Shs_SLO020": "Toni Kensa Soccer Shoes", "Shs_SLP000": "Blue Slip-Ons", "Shs_SLP001": "Red Slip-Ons", "Shs_SLP002": "Squid-Stitch Slip-Ons", "Shs_SLP003": "Polka-dot Slip-Ons", "Shs_TRS000": "Trail Boots", "Shs_TRS001": "Custom Trail Boots", "Shs_TRS002": "Pro Trail Boots", "Slosher_Bathtub_00": "Bloblobber", "Slosher_Bathtub_01": "Bloblobber Deco", "Slosher_CoopVase": "Grizzco Slosher", "Slosher_Diffusion_00": "Tri-Slosher", "Slosher_Diffusion_01": "Tri-Slosher Nouveau", "Slosher_Launcher_00": "Sloshing Machine", "Slosher_Launcher_01": "Sloshing Machine Neo", "Slosher_Launcher_02": "Kensa Sloshing Machine", "Slosher_MissionStrongLv0": "Hero Slosher", "Slosher_MissionStrongLv1": "Hero Slosher", "Slosher_Strong_00": "Slosher", "Slosher_Strong_01": "Slosher Deco", "Slosher_Strong_02": "Soda Slosher", "Slosher_Strong_H": "Hero Slosher Replica", "Slosher_Washtub_00": "Explosher", "Slosher_Washtub_01": "Custom Explosher", "SomersaultLanding": "Drop Roller", "SpecialIncrease_Up": "Special Charge Up", "SpecialTime_Up": "Special Power Up", "Spinner_Downpour_00": "Ballpoint Splatling", "Spinner_Downpour_01": "Ballpoint Splatling Nouveau", "Spinner_Hyper_00": "Hydra Splatling", "Spinner_Hyper_01": "Custom Hydra Splatling", "Spinner_MissionStandardLv0": "Hero Splatling", "Spinner_MissionStandardLv1": "Hero Splatling", "Spinner_Quick_00": "Mini Splatling", "Spinner_Quick_01": "Zink Mini Splatling ", "Spinner_Quick_02": "Kensa Mini Splatling", "Spinner_Serein_00": "Nautilus 47", "Spinner_Serein_01": "Nautilus 79", "Spinner_Standard_00": "Heavy Splatling", "Spinner_Standard_01": "Heavy Splatling Deco", "Spinner_Standard_02": "Heavy Splatling Remix", "Spinner_Standard_H": "Hero Splatling Replica", "Sprinkler": "Sprinkler", "SquidMoveSpatter_Reduction": "Ninja Squid", "SquidMove_Up": "Swim Speed Up", "StartAllUp": "Opening Gambit", "SubInk_Save": "Ink Saver (Sub)", "SuperArmor": "Ink Armor", "SuperBall": "Booyah Bomb", "SuperBubble": "Bubble Blower", "SuperJumpSign_Hide": "Stealth Jump", "SuperLanding": "Splashdown", "SuperMissile": "Tenta Missiles", "SuperStamp": "Ultra Stamp", "ThermalInk": "Thermal Ink", "TimerTrap": "Ink Mine", "Twins_Dual_00": "Dualie Squelchers", "Twins_Dual_01": "Custom Dualie Squelchers", "Twins_Gallon_00": "Glooga Dualies", "Twins_Gallon_01": "Glooga Dualies Deco", "Twins_Gallon_02": "Kensa Glooga Dualies", "Twins_MissionNormalLv0": "Hero Dualies", "Twins_MissionNormalLv1": "Hero Dualies", "Twins_Normal_00": "Splat Dualies", "Twins_Normal_01": "Enperry Splat Dualies", "Twins_Normal_02": "Kensa Splat Dualies", "Twins_Normal_H": "Hero Dualie Replicas", "Twins_Short_00": "Dapple Dualies", "Twins_Short_01": "Dapple Dualies Nouveau", "Twins_Short_02": "Clear Dapple Dualies", "Twins_Stepper_00": "Dark Tetra Dualies", "Twins_Stepper_01": "Light Tetra Dualies", "Umbrella_Compact_00": "Undercover Brella", "Umbrella_Compact_01": "Undercover Sorella Brella", "Umbrella_Compact_02": "Kensa Undercover Brella", "Umbrella_CoopAutoAssault": "Grizzco Brella", "Umbrella_MissionNormalLv0": "Hero Brella", "Umbrella_MissionNormalLv1": "Hero Brella", "Umbrella_Normal_00": "Splat Brella", "Umbrella_Normal_01": "Sorella Brella", "Umbrella_Normal_H": "Hero Brella Replica", "Umbrella_Wide_00": "Tenta Brella", "Umbrella_Wide_01": "Tenta Sorella Brella", "Umbrella_Wide_02": "Tenta Camo Brella", "Unknown": "", "WaterCutter": "Sting Ray", "Weight": "Handling", "cFes": "Turf War (Splatfest)", "cPnt": "Turf War", "cPnt_2L": "Turf\nWar", "cVar": "Splat Zones", "cVar_2L": "Splat\nZones", "cVcl": "Clam Blitz", "cVcl_2L": "Clam\nBlitz", "cVgl": "Rainmaker", "cVgl_2L": "Rainmaker", "cVlf": "Tower Control", "cVlf_2L": "Tower\nControl"} \ No newline at end of file +{ + "AquaBall": "Baller", + "B00": "SquidForce", + "B01": "Zink", + "B02": "Krak-On", + "B03": "Rockenberg", + "B04": "Zekko", + "B05": "Forge", + "B06": "Firefin", + "B07": "Skalop", + "B08": "Splash Mob", + "B09": "Inkline", + "B10": "Tentatek", + "B11": "Takoroka", + "B15": "Annaki", + "B16": "Enperry", + "B17": "Toni Kensa", + "B97": "Grizzco", + "B98": "Cuttlegear", + "B99": "amiibo", + "BigLaser": "Princess Cannon", + "Blank": "", + "Blaze": "Fire Rate", + "BombDamage_Reduction": "Bomb Defense Up DX", + "BombDistance_Up": "Sub Power Up", + "Bomb_Curling": "Curling Bomb", + "Bomb_MissionCurling": "Curling Bomb", + "Bomb_MissionRobo": "Autobomb", + "Bomb_MissionSplash": "Splat Bomb", + "Bomb_Piyo": "Fizzy Bomb", + "Bomb_Quick": "Burst Bomb", + "Bomb_Robo": "Autobomb", + "Bomb_Splash": "Splat Bomb", + "Bomb_Suction": "Suction Bomb", + "Bomb_Tako": "Torpedo", + "Charge": "Charge Speed", + "Charger_CoopSpark": "Grizzco Charger", + "Charger_Keeper_00": "Goo Tuber", + "Charger_Keeper_01": "Custom Goo Tuber", + "Charger_Light_00": "Bamboozler 14 Mk I", + "Charger_Light_01": "Bamboozler 14 Mk II", + "Charger_Light_02": "Bamboozler 14 Mk III", + "Charger_LongScope_00": "E-liter 4K Scope", + "Charger_LongScope_01": "Custom E-liter 4K Scope", + "Charger_Long_00": "E-liter 4K", + "Charger_Long_01": "Custom E-liter 4K", + "Charger_MissionNormalLv0": "Hero Charger", + "Charger_MissionNormalLv1": "Hero Charger", + "Charger_NormalScope_00": "Splatterscope", + "Charger_NormalScope_01": "Firefin Splatterscope", + "Charger_NormalScope_02": "Kensa Splatterscope", + "Charger_Normal_00": "Splat Charger", + "Charger_Normal_01": "Firefin Splat Charger", + "Charger_Normal_02": "Kensa Charger", + "Charger_Normal_H": "Hero Charger Replica", + "Charger_Quick_00": "Classic Squiffer", + "Charger_Quick_01": "New Squiffer", + "Charger_Quick_02": "Fresh Squiffer", + "Clt_AMB000": "School Uniform", + "Clt_AMB001": "Samurai Jacket", + "Clt_AMB002": "Power Armor", + "Clt_AMB003": "School Cardigan", + "Clt_AMB004": "Squinja Suit", + "Clt_AMB005": "Power Armor Mk I", + "Clt_AMB006": "Pearlescent Hoodie", + "Clt_AMB007": "Marinated Top", + "Clt_AMB008": "Enchanted Robe", + "Clt_AMB009": "Steel Platemail", + "Clt_AMB010": "Fresh Fish Gloves", + "Clt_COP100": "Squiddor Polo", + "Clt_COP101": "Anchor Life Vest", + "Clt_COP102": "Juice Parka", + "Clt_COP103": "Garden Gear", + "Clt_COP104": "Crustwear XXL", + "Clt_COP105": "North-Country Parka", + "Clt_COP106": "Octoleet Armor", + "Clt_COP107": "Record Shop Look EP", + "Clt_COP108": "Dev Uniform", + "Clt_COP109": "Office Attire", + "Clt_COP110": "SRL Coat", + "Clt_CRC000": "Mecha Body - AKM", + "Clt_FST001": "Basic Tee", + "Clt_FST002": "Fresh Octo Tee", + "Clt_HAP001": "Splatfest Tee", + "Clt_HAP002": "Splatfest Tee Replica", + "Clt_JKT000": "Olive Ski Jacket", + "Clt_JKT001": "Takoroka Nylon Vintage", + "Clt_JKT002": "Berry Ski Jacket", + "Clt_JKT003": "Varsity Jacket", + "Clt_JKT004": "School Jersey", + "Clt_JKT005": "Green Cardigan", + "Clt_JKT006": "Black Inky Rider", + "Clt_JKT007": "White Inky Rider", + "Clt_JKT008": "Retro Gamer Jersey", + "Clt_JKT009": "Orange Cardigan", + "Clt_JKT010": "Forge Inkling Parka", + "Clt_JKT011": "Forge Octarian Jacket", + "Clt_JKT012": "Blue Sailor Suit", + "Clt_JKT013": "White Sailor Suit", + "Clt_JKT014": "Squid Satin Jacket", + "Clt_JKT015": "Zapfish Satin Jacket", + "Clt_JKT016": "Krak-On 528", + "Clt_JKT017": "Chilly Mountain Coat", + "Clt_JKT018": "Takoroka Windcrusher", + "Clt_JKT019": "Matcha Down Jacket", + "Clt_JKT020": "FA-01 Jacket", + "Clt_JKT021": "FA-01 Reversed", + "Clt_JKT022": "Pullover Coat", + "Clt_JKT023": "Kensa Coat", + "Clt_JKT024": "Birded Corduroy Jacket", + "Clt_JKT025": "Deep-Octo Satin Jacket", + "Clt_JKT026": "Zekko Redleaf Coat", + "Clt_JKT027": "Eggplant Mountain Coat", + "Clt_JKT028": "Zekko Jade Coat", + "Clt_JKT029": "Light Bomber Jacket", + "Clt_JKT030": "Brown FA-11 Bomber", + "Clt_JKT031": "Gray FA-11 Bomber", + "Clt_JKT032": "Milky Eminence Jacket", + "Clt_JKT033": "Navy Eminence Jacket", + "Clt_JKT034": "Tumeric Zekko Coat", + "Clt_JKT035": "Custom Painted F-3 ", + "Clt_JKT036": "Dark Bomber Jacket", + "Clt_JKT037": "Moist Ghillie Suit", + "Clt_JKT038": "White Leather F-3", + "Clt_JKT039": "Chili-Pepper Ski Jacket", + "Clt_JKT040": "Whale-Knit Sweater", + "Clt_JKT041": "Rockin' Leather Jacket", + "Clt_JKT042": "Kung-Fu Zip-Up", + "Clt_JKT043": "Panda Kung-Fu Zip-Up", + "Clt_JKT044": "Sennyu Suit", + "Clt_MSN000": "Hero Jacket Replica", + "Clt_MSN004": "Armor Jacket Replica", + "Clt_MSN101": "Hero Hoodie Replica", + "Clt_MSN104": "Neo Octoling Armor", + "Clt_MSN105": "Null Armor Replica", + "Clt_MSN106": "Old-Timey Clothes", + "Clt_PLO000": "Shrimp-Pink Polo", + "Clt_PLO001": "Striped Rugby", + "Clt_PLO002": "Tricolor Rugby", + "Clt_PLO003": "Sage Polo", + "Clt_PLO004": "Black Polo", + "Clt_PLO005": "Cycling Shirt", + "Clt_PLO006": "Cycle King Jersey", + "Clt_PLO007": "Slipstream United", + "Clt_PLO008": "FC Albacore", + "Clt_PRK000": "Camo Zip Hoodie", + "Clt_PRK001": "Green Zip Hoodie", + "Clt_PRK002": "Zekko Hoodie", + "Clt_PRK004": "Shirt with Blue Hoodie", + "Clt_PRK005": "Grape Hoodie", + "Clt_PRK006": "Gray Hoodie", + "Clt_PRK007": "Hothouse Hoodie", + "Clt_PRK008": "Pink Hoodie", + "Clt_PRK009": "Olive Zekko Parka", + "Clt_PRK010": "Black Hoodie", + "Clt_PRK011": "Octo Support Hoodie", + "Clt_RVL000": "Octoling Armor", + "Clt_SHT000": "Lumberjack Shirt", + "Clt_SHT001": "Rodeo Shirt", + "Clt_SHT002": "Green-Check Shirt", + "Clt_SHT003": "White Shirt", + "Clt_SHT004": "Urchins Jersey", + "Clt_SHT005": "Aloha Shirt", + "Clt_SHT006": "Red-Check Shirt", + "Clt_SHT007": "Baby-Jelly Shirt", + "Clt_SHT008": "Baseball Jersey", + "Clt_SHT009": "Gray Mixed Shirt", + "Clt_SHT010": "Vintage Check Shirt", + "Clt_SHT011": "Round-Collar Shirt", + "Clt_SHT012": "Logo Aloha Shirt", + "Clt_SHT013": "Striped Shirt", + "Clt_SHT014": "Linen Shirt", + "Clt_SHT015": "Shirt & Tie", + "Clt_SHT017": "Hula Punk Shirt", + "Clt_SHT018": "Octobowler Shirt", + "Clt_SHT019": "Inkfall Shirt", + "Clt_SHT020": "Crimson Parashooter", + "Clt_SHT021": "Baby-Jelly Shirt & Tie", + "Clt_SHT022": "Prune Parashooter", + "Clt_SHT023": "Red Hula Punk with Tie", + "Clt_SHT024": "Chili Octo Aloha", + "Clt_SHT025": "Annaki Flannel Hoodie", + "Clt_SHT026": "Ink-Wash Shirt", + "Clt_SHT027": "Dots-On-Dots Shirt", + "Clt_SHT028": "Toni K. Baseball Jersey", + "Clt_SHT029": "Online Jersey", + "Clt_SWT000": "Gray College Sweat", + "Clt_SWT001": "Squidmark Sweat", + "Clt_SWT002": "Retro Sweat", + "Clt_SWT003": "Firefin Navy Sweat", + "Clt_SWT004": "Navy College Sweat", + "Clt_SWT005": "Reel Sweat", + "Clt_SWT006": "Anchor Sweat", + "Clt_SWT007": "Negative Longcuff Sweater", + "Clt_SWT008": "Short Knit Layers", + "Clt_SWT009": "Positive Longcuff Sweater", + "Clt_SWT010": "Annaki Blue Cuff", + "Clt_SWT011": "Annaki Yellow Cuff", + "Clt_SWT012": "Annaki Red Cuff", + "Clt_SWT013": "N-Pacer Sweat", + "Clt_SWT014": "Octarian Retro", + "Clt_SWT015": "Takoroka Jersey", + "Clt_TEL000": "White Striped LS", + "Clt_TEL001": "Black LS", + "Clt_TEL002": "Purple Camo LS", + "Clt_TEL003": "Navy Striped LS", + "Clt_TEL004": "Zekko Baseball LS", + "Clt_TEL005": "Varsity Baseball LS", + "Clt_TEL006": "Black Baseball LS", + "Clt_TEL007": "White Baseball LS", + "Clt_TEL008": "White LS", + "Clt_TEL009": "Green Striped LS", + "Clt_TEL010": "Squidmark LS", + "Clt_TEL011": "Zink LS", + "Clt_TEL012": "Striped Peaks LS", + "Clt_TEL013": "Pink Easy-Stripe Shirt", + "Clt_TEL014": "Inkopolis Squaps Jersey", + "Clt_TEL015": "Annaki Drive Tee ", + "Clt_TEL016": "Lime Easy-Stripe Shirt", + "Clt_TEL017": "Annaki Evolution Tee", + "Clt_TEL018": "Zekko Long Carrot Tee", + "Clt_TEL019": "Zekko Long Radish Tee", + "Clt_TEL020": "Black Cuttlegear LS", + "Clt_TEL021": "Takoroka Crazy Baseball LS", + "Clt_TEL022": "Red Cuttlegear LS", + "Clt_TEL023": "Khaki 16-Bit FishFry", + "Clt_TEL024": "Blue 16-Bit FishFry", + "Clt_TES000": "White Tee", + "Clt_TES001": "Black Squideye", + "Clt_TES003": "Sky-Blue Squideye", + "Clt_TES004": "Rockenberg White", + "Clt_TES005": "Rockenberg Black", + "Clt_TES006": "Black Tee", + "Clt_TES007": "Sunny-Day Tee", + "Clt_TES008": "Rainy-Day Tee", + "Clt_TES009": "Reggae Tee", + "Clt_TES010": "Fugu Tee", + "Clt_TES011": "Mint Tee", + "Clt_TES012": "Grape Tee", + "Clt_TES013": "Red Vector Tee", + "Clt_TES014": "Gray Vector Tee", + "Clt_TES015": "Blue Peaks Tee", + "Clt_TES016": "Ivory Peaks Tee", + "Clt_TES017": "Squid-Stitch Tee", + "Clt_TES018": "Pirate-Stripe Tee", + "Clt_TES019": "Sailor-Stripe Tee", + "Clt_TES020": "White 8-Bit FishFry", + "Clt_TES021": "Black 8-Bit FishFry", + "Clt_TES022": "White Anchor Tee", + "Clt_TES023": "Black Anchor Tee", + "Clt_TES026": "Carnivore Tee", + "Clt_TES027": "Pearl Tee", + "Clt_TES028": "Octo Tee", + "Clt_TES029": "Herbivore Tee", + "Clt_TES030": "Black V-Neck Tee", + "Clt_TES031": "White Deca Logo Tee", + "Clt_TES032": "Half-Sleeve Sweater", + "Clt_TES033": "King Jersey", + "Clt_TES034": "Gray 8-Bit FishFry", + "Clt_TES035": "White V-Neck Tee", + "Clt_TES036": "White Urchin Rock Tee", + "Clt_TES037": "Black Urchin Rock Tee", + "Clt_TES038": "Wet Floor Band Tee", + "Clt_TES039": "Squid Squad Band Tee", + "Clt_TES040": "Navy Deca Logo Tee", + "Clt_TES041": "Mister Shrug Tee", + "Clt_TES042": "Chirpy Chips Band Tee", + "Clt_TES043": "Hightide Era Band Tee", + "Clt_TES044": "Red V-Neck Limited Tee", + "Clt_TES045": "Green V-Neck Limited Tee", + "Clt_TES046": "\u03c9-3 Tee", + "Clt_TES047": "Annaki Polpo-Pic Tee", + "Clt_TES048": "Firewave Tee", + "Clt_TES049": "Takoroka Galactic Tie Dye", + "Clt_TES050": "Takoroka Rainbow Tie Dye", + "Clt_TES051": "Missus Shrug Tee", + "Clt_TES052": "League Tee", + "Clt_TES053": "Friend Tee", + "Clt_TES054": "Tentatek Slogan Tee", + "Clt_TES055": "Icewave Tee", + "Clt_TES056": "Octoking HK Jersey", + "Clt_TES057": "Dakro Nana Tee", + "Clt_TES058": "Dakro Golden Tee", + "Clt_TES059": "Black Velour Octoking Tee ", + "Clt_TES060": "Green Velour Octoking Tee", + "Clt_TES061": "SWC Logo Tee", + "Clt_TLY000": "White Layered LS", + "Clt_TLY001": "Yellow Layered LS", + "Clt_TLY002": "Camo Layered LS", + "Clt_TLY003": "Black Layered LS", + "Clt_TLY004": "Zink Layered LS", + "Clt_TLY005": "Layered Anchor LS", + "Clt_TLY006": "Choco Layered LS", + "Clt_TLY007": "Part-Time Pirate", + "Clt_TLY008": "Layered Vector LS", + "Clt_TLY009": "Green Tee", + "Clt_TLY010": "Red Tentatek Tee", + "Clt_TLY011": "Blue Tentatek Tee", + "Clt_TLY012": "Octo Layered LS", + "Clt_TLY013": "Squid Yellow Layered LS", + "Clt_TNK000": "B-ball Jersey (Home)", + "Clt_TNK001": "B-ball Jersey (Away)", + "Clt_TNK003": "White King Tank", + "Clt_TNK004": "Slash King Tank", + "Clt_TNK005": "Navy King Tank", + "Clt_TNK006": "Lob-Stars Jersey", + "Clt_VST000": "Mountain Vest", + "Clt_VST001": "Forest Vest", + "Clt_VST002": "Dark Urban Vest", + "Clt_VST003": "Yellow Urban Vest", + "Clt_VST004": "Squid-Pattern Waistcoat", + "Clt_VST005": "Squidstar Waistcoat", + "Clt_VST007": "Fishing Vest", + "Clt_VST008": "Front Zip Vest", + "Clt_VST009": "Silver Tentatek Vest", + "ComeBack": "Comeback", + "DeathMarking": "Haunt", + "Defence": "Durability", + "EndAllUp": "Last-Ditch Effort", + "ExSkillDouble": "Ability Doubler", + "Exorcist": "Respawn Punisher", + "Explosion": "Impact", + "Flag": "Squid Beakon", + "Fld_Amida01_Vss": "Port Mackerel", + "Fld_Athletic01_Vss": "Camp Triggerfish", + "Fld_Carousel00_Vss": "Wahoo World", + "Fld_Court00_Vss": "Goby Arena", + "Fld_Deli_Octa00_02_Vss": "Windmill House on the Pearlie", + "Fld_Deli_Octa01_2_Vss": "Wayslide Cool", + "Fld_Deli_Octa02_2_Vss": "The Secret of S.P.L.A.T.", + "Fld_Deli_Octa03_2_Vss": "Goosponge", + "Fld_Deli_Octa05_Vss": "Cannon Fire Pearl", + "Fld_Deli_Octa06_Vss": "Zone of Glass", + "Fld_Deli_Octa07_Vss": "Fancy Spew", + "Fld_Deli_Octa08_Vss": "Grapplink Girl", + "Fld_Deli_Octa09_Vss": "Zappy Longshocking", + "Fld_Deli_Octa10_Vss": "The Bunker Games", + "Fld_Deli_Octa11_Vss": "A Swiftly Tilting Balance", + "Fld_Deli_Octa12_Vss": "The Switches", + "Fld_Deli_Octa13_Vss": "Sweet Valley Tentacles", + "Fld_Deli_Octa14_Vss": "The Bouncey Twins", + "Fld_Deli_Octa15_Vss": "Railway Chillin'", + "Fld_Deli_Octa16_Vss": "Gusher Towns", + "Fld_Deli_Octa17_Vss": "The Maze Dasher", + "Fld_Deli_Octa18_Vss": "Flooders in the Attic", + "Fld_Deli_Octa19_Vss": "The Splat in our Zones", + "Fld_Deli_Octa20_Vss": "The Ink is Spreading", + "Fld_Deli_Octa21_Vss": "Bridge to Tentaswitchia", + "Fld_Deli_Octa22_Vss": "The Chronicles of Rolonium", + "Fld_Deli_Octa23_Vss": "Furler in the Ashes", + "Fld_Deli_Octa24_Vss": "MC.Princess Diaries", + "Fld_Deli_Vss": "Shifty Station", + "Fld_Ditch02_Vss": "The Reef", + "Fld_Kawa00_Vss": "Snapper Canal", + "Fld_Line00_Vss": "MakoMart", + "Fld_Maze01_Vss": "Kelp Dome", + "Fld_Maze02_Vss": "Kelp Dome", + "Fld_Mirror00_Vss": "Skipper Pavilion", + "Fld_Nagasaki00_Vss": "Sturgeon Shipyard", + "Fld_Nakasu00_Vss": "New Albacore Hotel", + "Fld_Nakasu02_Vss": "New Albacore Hotel", + "Fld_Office01_Vss": "Ancho-V Games", + "Fld_Pillar00_Vss": "Manta Maria", + "Fld_Quarry01_Vss": "Piranha Pit", + "Fld_Shakehouse00_Cop": "Lost Outpost", + "Fld_Shakelift00_Cop": "Salmonid Smokeyard", + "Fld_Shakeride00_Cop": "Ruins of Ark Polaris", + "Fld_Shakeship00_Cop": "Marooner's Bay", + "Fld_Shakeup00_Cop": "Spawning Grounds", + "Fld_SkatePark02_Vss": "Blackbelly Skatepark", + "Fld_Tunnel00_Vss": "Shellendorf Institute", + "Fld_Tunnel02_Vss": "Shellendorf Institute", + "Fld_Tuzura00_Vss": "Moray Towers", + "Fld_Unduck00_Vss": "Musselforge Fitness", + "Fld_UpDown01_Vss": "Arowana Mall", + "Fld_Upland00_Vss": "Inkblot Art Academy", + "Fld_Venue02_Vss": "Starfish Mainstage", + "Fld_Warehouse01_Vss": "Walleye Warehouse", + "Fld_Wave00_Vss": "Humpback Pump Track", + "Hed_ACC001": "Eminence Cuff", + "Hed_AMB000": "Squid Hairclip", + "Hed_AMB001": "Samurai Helmet", + "Hed_AMB002": "Power Mask", + "Hed_AMB003": "Squid Clip-Ons", + "Hed_AMB004": "Squinja Mask", + "Hed_AMB005": "Power Mask Mk I", + "Hed_AMB006": "Pearlescent Crown", + "Hed_AMB007": "Marinated Headphones", + "Hed_AMB008": "Enchanted Hat", + "Hed_AMB009": "Steel Helm", + "Hed_AMB010": "Fresh Fish Head", + "Hed_CAP000": "Urchins Cap", + "Hed_CAP001": "Lightweight Cap", + "Hed_CAP002": "Takoroka Mesh", + "Hed_CAP003": "Streetstyle Cap", + "Hed_CAP004": "Squid-Stitch Cap", + "Hed_CAP005": "Squidvader Cap", + "Hed_CAP006": "Camo Mesh", + "Hed_CAP007": "Five-Panel Cap", + "Hed_CAP008": "Zekko Mesh", + "Hed_CAP009": "Backwards Cap", + "Hed_CAP010": "Two-Stripe Mesh", + "Hed_CAP011": "Jet Cap", + "Hed_CAP012": "Cycling Cap", + "Hed_CAP014": "Cycle King Cap", + "Hed_CAP015": "Legendary Cap", + "Hed_CAP018": "Long-Billed Cap", + "Hed_CAP019": "King Flip Mesh", + "Hed_CAP020": "Hickory Work Cap", + "Hed_CAP021": "Woolly Urchins Classic", + "Hed_CAP023": "Jellyvader Cap", + "Hed_CAP024": "House-Tag Denim Cap", + "Hed_CAP025": "Blowfish Newsie", + "Hed_CAP026": "Do-Rag, Cap, & Glasses", + "Hed_CAP027": "Pilot Hat", + "Hed_COP100": "Headlamp Helmet", + "Hed_COP101": "Dust Blocker 2000", + "Hed_COP102": "Welding Mask", + "Hed_COP103": "Beekeeper Hat", + "Hed_COP104": "Octoleet Goggles", + "Hed_COP105": "Cap of Legend", + "Hed_COP106": "Oceanic Hard Hat", + "Hed_COP107": "Worker's Head Towel", + "Hed_COP108": "Worker's Cap", + "Hed_COP109": "Sailor Cap", + "Hed_CRC000": "Mecha Head - HTR", + "Hed_EYE000": "Retro Specs", + "Hed_EYE001": "Splash Goggles", + "Hed_EYE002": "Pilot Goggles", + "Hed_EYE003": "Tinted Shades", + "Hed_EYE004": "Black Arrowbands", + "Hed_EYE005": "Snorkel Mask", + "Hed_EYE006": "White Arrowbands", + "Hed_EYE007": "Fake Contacts", + "Hed_EYE008": "18K Aviators", + "Hed_EYE009": "Full Moon Glasses", + "Hed_EYE010": "Octoglasses", + "Hed_EYE011": "Half-Rim Glasses", + "Hed_EYE012": "Double Egg Shades", + "Hed_EYE013": "Zekko Cap", + "Hed_EYE014": "SV925 Circle Shades", + "Hed_EYE015": "Annaki Beret & Glasses", + "Hed_EYE016": "Swim Goggles", + "Hed_EYE017": "Ink-Guard Goggles", + "Hed_EYE018": "Toni Kensa Goggles", + "Hed_EYE019": "Sennyu Goggles", + "Hed_EYE020": "Sennyu Specs", + "Hed_FST000": "White Headband", + "Hed_HAP000": "Kyonshi Hat", + "Hed_HAP001": "Li'l Devil Horns", + "Hed_HAP002": "Hockey Mask", + "Hed_HAP003": "Anglerfish Mask", + "Hed_HAP004": "Festive Party Cone", + "Hed_HAP005": "New Year's Glasses DX", + "Hed_HAP006": "Twisty Headband", + "Hed_HAP007": "Eel-Cake Hat", + "Hed_HAP008": "Purple Novelty Visor", + "Hed_HAP009": "Green Novelty Visor", + "Hed_HAP010": "Orange Novelty Visor", + "Hed_HAP011": "Pink Novelty Visor", + "Hed_HAP012": "Jetflame Crest", + "Hed_HAP013": "Fierce Fishskull", + "Hed_HAP014": "Hivemind Antenna", + "Hed_HAP015": "Eye of Justice", + "Hed_HAT000": "Safari Hat", + "Hed_HAT001": "Jungle Hat", + "Hed_HAT002": "Camping Hat", + "Hed_HAT003": "Blowfish Bell Hat", + "Hed_HAT004": "Bamboo Hat", + "Hed_HAT005": "Straw Boater", + "Hed_HAT006": "Classic Straw Boater", + "Hed_HAT007": "Treasure Hunter", + "Hed_HAT008": "Bucket Hat", + "Hed_HAT009": "Patched Hat", + "Hed_HAT010": "Tulip Parasol", + "Hed_HAT011": "Fugu Bell Hat", + "Hed_HAT012": "Seashell Bamboo Hat", + "Hed_HAT013": "Hothouse Hat", + "Hed_HAT014": "Mountie Hat", + "Hed_HBD001": "B-ball Headband", + "Hed_HBD002": "Squash Headband", + "Hed_HBD003": "Tennis Headband", + "Hed_HBD004": "Jogging Headband", + "Hed_HBD005": "Soccer Headband", + "Hed_HBD007": "FishFry Biscuit Bandana", + "Hed_HBD008": "Black FishFry Bandana", + "Hed_HDP000": "Studio Headphones", + "Hed_HDP001": "Designer Headphones", + "Hed_HDP002": "Noise Cancelers", + "Hed_HDP003": "Squidfin Hook Cans", + "Hed_HDP004": "Squidlife Headphones", + "Hed_HDP005": "Studio Octophones", + "Hed_HDP006": "Sennyu Headphones", + "Hed_MET000": "Bike Helmet", + "Hed_MET002": "Stealth Goggles", + "Hed_MET003": "Tentacles Helmet", + "Hed_MET004": "Skate Helmet", + "Hed_MET005": "Visor Skate Helmet", + "Hed_MET006": "MTB Helmet", + "Hed_MET007": "Hockey Helmet", + "Hed_MET008": "Matte Bike Helmet", + "Hed_MET009": "Octo Tackle Helmet Deco", + "Hed_MET010": "Moist Ghillie Helmet", + "Hed_MET011": "Deca Tackle Visor Helmet", + "Hed_MSK000": "Gas Mask", + "Hed_MSK001": "Paintball Mask", + "Hed_MSK002": "Paisley Bandana", + "Hed_MSK003": "Skull Bandana", + "Hed_MSK004": "Painter's Mask", + "Hed_MSK005": "Annaki Mask", + "Hed_MSK006": "Octoking Facemask", + "Hed_MSK007": "Squid Facemask", + "Hed_MSK008": "Firefin Facemask", + "Hed_MSK009": "King Facemask", + "Hed_MSK010": "Motocross Nose Guard", + "Hed_MSK011": "Forge Mask", + "Hed_MSK012": "Digi-Camo Forge Mask", + "Hed_MSK013": "Koshien Bandana", + "Hed_MSN000": "Hero Headset Replica", + "Hed_MSN004": "Armor Helmet Replica", + "Hed_MSN101": "Hero Headphones Replica", + "Hed_MSN104": "Octoling Shades", + "Hed_MSN105": "Null Visor Replica", + "Hed_MSN106": "Old-Timey Hat", + "Hed_MSN107": "Conductor Cap", + "Hed_MSN108": "Golden Toothpick", + "Hed_NCP000": "Bobble Hat", + "Hed_NCP001": "Short Beanie", + "Hed_NCP002": "Striped Beanie", + "Hed_NCP003": "Sporty Bobble Hat", + "Hed_NCP004": "Special Forces Beret", + "Hed_NCP005": "Squid Nordic", + "Hed_NCP006": "Sennyu Bon Bon Beanie", + "Hed_NCP008": "Knitted Hat", + "Hed_NCP009": "Annaki Beret", + "Hed_NCP010": "Yamagiri Beanie", + "Hed_NCP011": "Sneaky Beanie", + "Hed_RVL000": "Octoling Goggles", + "Hed_VIS000": "Golf Visor", + "Hed_VIS001": "FishFry Visor", + "Hed_VIS002": "Sun Visor", + "Hed_VIS003": "Takoroka Visor", + "Hed_VIS004": "Face Visor", + "HumanMove_Up": "Run Speed Up", + "InkRecovery_Up": "Ink Recovery Up", + "Jetpack": "Inkjet", + "JumpTime_Save": "Quick Super Jump", + "LauncherCurling": "Curling-Bomb Launcher", + "LauncherQuick": "Burst-Bomb Launcher", + "LauncherRobo": "Autobomb Launcher", + "LauncherSplash": "Splat-Bomb Launcher", + "LauncherSuction": "Suction-Bomb Launcher", + "MPU_BrushSpeedUp": "Slightly increases\nmovement speed\nwhile inking.", + "MPU_CanopyHPUp": "Increases Brella\ncanopy durability.", + "MPU_CanopyRecoveryUp": "Speeds up Brella\ncanopy regeneration.", + "MPU_DamageAreaUp": "Increases high-damage\nradius of explosions.", + "MPU_DamageReductionDown": "Increases maximum\ndamage range.", + "MPU_DamageUp": "Increases damage.", + "MPU_PaintUp": "Increases ink coverage.", + "MPU_RangeUp": "Slightly increases range.", + "MPU_ReduceDegJump": "Increases shot accuracy\nwhen firing while jumping.", + "MPU_ShootingFrameUp": "Increases duration of\nfiring in a burst.", + "MainInk_Save": "Ink Saver (Main)", + "MarkingTime_Reduction": "Main Power Up", + "MinorityUp": "Tenacity", + "MissileMissilePosition": "Cannon", + "Mobility": "Mobility", + "ObjectEffect_Up": "Object Shredder", + "OpInkEffect_Reduction": "Ink Resistance Up", + "PaintSpeed": "Ink Speed", + "PointSensor": "Point Sensor", + "PoisonFog": "Toxic Mist", + "Power": "Damage", + "RainCloud": "Ink Storm", + "Range": "Range", + "RespawnSpecialGauge_Save": "Special Saver", + "RespawnTime_Save": "Quick Respawn", + "Roller_BrushMini_00": "Inkbrush", + "Roller_BrushMini_01": "Inkbrush Nouveau", + "Roller_BrushMini_02": "Permanent Inkbrush", + "Roller_BrushNormal_00": "Octobrush", + "Roller_BrushNormal_01": "Octobrush Nouveau", + "Roller_BrushNormal_02": "Kensa Octobrush", + "Roller_BrushNormal_H": "Herobrush Replica", + "Roller_Compact_00": "Carbon Roller", + "Roller_Compact_01": "Carbon Roller Deco", + "Roller_Heavy_00": "Dynamo Roller", + "Roller_Heavy_01": "Gold Dynamo Roller", + "Roller_Heavy_02": "Kensa Dynamo Roller", + "Roller_Hunter_00": "Flingza Roller", + "Roller_Hunter_01": "Foil Flingza Roller", + "Roller_MissionBrushNormalLv0": "Herobrush", + "Roller_MissionBrushNormalLv1": "Herobrush", + "Roller_MissionNormalLv0": "Hero Roller", + "Roller_MissionNormalLv1": "Hero Roller", + "Roller_Normal_00": "Splat Roller", + "Roller_Normal_01": "Krak-On Splat Roller", + "Roller_Normal_02": "Kensa Splat Roller", + "Roller_Normal_H": "Hero Roller Replica", + "SE_Blank": "", + "SE_BombDamage_Reduction": "Reduces damage taken by\nblasts from non-main\nweapons, and reduces\nthe time you're tracked.", + "SE_BombDistance_Up": "Upgrades your\nsub weapon.", + "SE_ComeBack": "Boosts some of your\nabilities for a short\ntime after respawning.", + "SE_DeathMarking": "Once you've respawned,\nreveals the position of\nplayers who've splatted\nyou.", + "SE_EndAllUp": "Boosts ink recovery\nrate and weapon ink\nefficiency for the last\n30 seconds of battle.", + "SE_ExSkillDouble": "Doubles the effect of\nother gear abilities\nattached to this gear.", + "SE_Exorcist": "Increases respawn time\nand special-gauge spawn\npenalty for you and any\nplayer you splat.", + "SE_HumanMove_Up": "Increases movement\nspeed in Inkling form.", + "SE_InkRecovery_Up": "Increases ink-tank refill\nrate.", + "SE_JumpTime_Save": "Increases Super Jump\nspeed.", + "SE_MainInk_Save": "Decreases amount\nof ink consumed by\nyour main weapon.", + "SE_MarkingTime_Reduction": "[\u000e\u0004\u0000\u0004\u0000\ucd00]\n\u000e\u0004\u0005\u0000", + "SE_MarkingTime_Reduction_Default": "Upgrades your\nmain weapon.", + "SE_MinorityUp": "Fills special gauge\nautomatically if your\nteam has fewer active\nplayers than the enemy.", + "SE_ObjectEffect_Up": "Increases damage dealt\nto all non-player targets.", + "SE_OpInkEffect_Reduction": "Reduces damage taken\nand improves mobility\nwhen walking through\nenemy ink.", + "SE_RespawnSpecialGauge_Save": "Reduces special-gauge\ndecrease after getting\nsplatted.", + "SE_RespawnTime_Save": "Reduces respawn time\nafter getting splatted\nrepeatedly without\nsplatting any opponents.", + "SE_SomersaultLanding": "Tilting the L Stick during\na Super Jump allows you\nto perform a roll in that\ndirection when landing.", + "SE_SpecialIncrease_Up": "Increases special-\ngauge fill rate.", + "SE_SpecialTime_Up": "Upgrades your\nspecial weapon.", + "SE_SquidMoveSpatter_Reduction": "Leaves no trace when\nswimming in inked\nground, but slightly\nreduces swim speed.", + "SE_SquidMove_Up": "Increases movement\nspeed in squid form.", + "SE_StartAllUp": "Boosts your speed while\nmoving for the first 30\nseconds of battle.", + "SE_SubInk_Save": "Decreases amount\nof ink consumed by\nyour sub weapon.", + "SE_SuperJumpSign_Hide": "Hides your Super Jump\nlanding point from\ndistant players.", + "SE_ThermalInk": "Allows you to track\ndistant players hit with\nshots from your main\nweapon.", + "SE_Unknown": "Unlock this ability by\nbattling while wearing\nthis gear.", + "Shachihoko": "Rainmaker", + "Shield": "Splash Wall", + "Shooter_BlasterCoopBurst": "Grizzco Blaster", + "Shooter_BlasterLightLong_00": "Rapid Blaster Pro", + "Shooter_BlasterLightLong_01": "Rapid Blaster Pro Deco", + "Shooter_BlasterLightShort_00": "Clash Blaster", + "Shooter_BlasterLightShort_01": "Clash Blaster Neo", + "Shooter_BlasterLight_00": "Rapid Blaster", + "Shooter_BlasterLight_01": "Rapid Blaster Deco", + "Shooter_BlasterLight_02": "Kensa Rapid Blaster", + "Shooter_BlasterLong_00": "Range Blaster", + "Shooter_BlasterLong_01": "Custom Range Blaster", + "Shooter_BlasterLong_02": "Grim Range Blaster", + "Shooter_BlasterMiddle_00": "Blaster", + "Shooter_BlasterMiddle_01": "Custom Blaster", + "Shooter_BlasterMiddle_H": "Hero Blaster Replica", + "Shooter_BlasterMissionMiddleLv0": "Hero Blaster", + "Shooter_BlasterMissionMiddleLv1": "Hero Blaster", + "Shooter_BlasterShort_00": "Luna Blaster", + "Shooter_BlasterShort_01": "Luna Blaster Neo", + "Shooter_BlasterShort_02": "Kensa Luna Blaster", + "Shooter_Blaze_00": "Aerospray MG", + "Shooter_Blaze_01": "Aerospray RG", + "Shooter_Blaze_02": "Aerospray PG", + "Shooter_Expert_00": "Splattershot Pro", + "Shooter_Expert_01": "Forge Splattershot Pro", + "Shooter_Expert_02": "Kensa Splattershot Pro", + "Shooter_First_00": "Splattershot Jr.", + "Shooter_First_01": "Custom Splattershot Jr.", + "Shooter_First_02": "Kensa Splattershot Jr.", + "Shooter_Flash_00": "Squeezer", + "Shooter_Flash_01": "Foil Squeezer", + "Shooter_Gravity_00": ".52 Gal", + "Shooter_Gravity_01": ".52 Gal Deco", + "Shooter_Gravity_02": "Kensa .52 Gal", + "Shooter_Heavy_00": ".96 Gal", + "Shooter_Heavy_01": ".96 Gal Deco", + "Shooter_Long_00": "Jet Squelcher", + "Shooter_Long_01": "Custom Jet Squelcher", + "Shooter_MissionNormalLv0": "Hero Shot", + "Shooter_MissionNormalLv1": "Hero Shot", + "Shooter_MissionNormalLv2": "Hero Shot", + "Shooter_Normal_00": "Splattershot", + "Shooter_Normal_01": "Tentatek Splattershot", + "Shooter_Normal_02": "Kensa Splattershot", + "Shooter_Normal_H": "Hero Shot Replica", + "Shooter_Normal_Oct": "Octo Shot Replica", + "Shooter_Precision_00": "Splash-o-matic", + "Shooter_Precision_01": "Neo Splash-o-matic", + "Shooter_QuickMiddle_00": "N-ZAP '85", + "Shooter_QuickMiddle_01": "N-ZAP '89", + "Shooter_QuickMiddle_02": "N-ZAP '83", + "Shooter_Short_00": "Sploosh-o-matic", + "Shooter_Short_01": "Neo Sploosh-o-matic", + "Shooter_Short_02": "Sploosh-o-matic 7", + "Shooter_TripleMiddle_00": "H-3 Nozzlenose", + "Shooter_TripleMiddle_01": "H-3 Nozzlenose D", + "Shooter_TripleMiddle_02": "Cherry H-3 Nozzlenose", + "Shooter_TripleQuick_00": "L-3 Nozzlenose", + "Shooter_TripleQuick_01": "L-3 Nozzlenose D", + "Shooter_TripleQuick_02": "Kensa L-3 Nozzlenose", + "Shs_AMB000": "School Shoes", + "Shs_AMB001": "Samurai Shoes", + "Shs_AMB002": "Power Boots", + "Shs_AMB003": "Fringed Loafers", + "Shs_AMB004": "Squinja Boots", + "Shs_AMB005": "Power Boots Mk I", + "Shs_AMB006": "Pearlescent Kicks", + "Shs_AMB007": "Marinated Slip-Ons", + "Shs_AMB008": "Enchanted Boots", + "Shs_AMB009": "Steel Greaves", + "Shs_AMB010": "Fresh Fish Feet", + "Shs_BOT000": "Moto Boots", + "Shs_BOT001": "Tan Work Boots", + "Shs_BOT002": "Red Work Boots", + "Shs_BOT003": "Blue Moto Boots", + "Shs_BOT004": "Green Rain Boots", + "Shs_BOT005": "Acerola Rain Boots", + "Shs_BOT006": "Punk Whites", + "Shs_BOT007": "Punk Cherries", + "Shs_BOT008": "Punk Yellows", + "Shs_BOT009": "Bubble Rain Boots", + "Shs_BOT010": "Snowy Down Boots", + "Shs_BOT011": "Icy Down Boots", + "Shs_BOT012": "Hunting Boots", + "Shs_BOT013": "Punk Blacks", + "Shs_BOT014": "Deepsea Leather Boots", + "Shs_BOT015": "Moist Ghillie Boots", + "Shs_BOT016": "Annaki Arachno Boots", + "Shs_BOT017": "New-Leaf Leather Boots", + "Shs_BOT018": "Tea-Green Hunting Boots", + "Shs_CFS000": "Blueberry Casuals", + "Shs_CFS001": "Plum Casuals", + "Shs_COP101": "Angry Rain Boots", + "Shs_COP102": "Non-slip Senseis", + "Shs_COP103": "Octoleet Boots", + "Shs_COP104": "Friendship Bracelet", + "Shs_COP105": "Flipper Floppers", + "Shs_COP106": "Wooden Sandals", + "Shs_CRC000": "Mecha Legs - LBS", + "Shs_FST000": "Cream Basics", + "Shs_HAP000": "Pearl-Scout Lace-Ups", + "Shs_HAP001": "Pearlescent Squidkid IV", + "Shs_HAP002": "Pearl Punk Crowns", + "Shs_HAP003": "New-Day Arrows", + "Shs_HAP004": "Marination Lace-Ups", + "Shs_HAP005": "Rina Squidkid IV", + "Shs_HAP006": "Trooper Power Stripes", + "Shs_HAP007": "Midnight Slip-Ons", + "Shs_LTS000": "White Kicks", + "Shs_LTS001": "Cherry Kicks", + "Shs_LTS002": "Turquoise Kicks", + "Shs_LTS003": "Squink Wingtips", + "Shs_LTS004": "Roasted Brogues", + "Shs_LTS005": "Kid Clams", + "Shs_LTS006": "Smoky Wingtips", + "Shs_LTS007": "Navy Red-Soled Wingtips", + "Shs_LTS008": "Gray Yellow-Soled Wingtips", + "Shs_LTS009": "Inky Kid Clams", + "Shs_LTS010": "Annaki Habaneros", + "Shs_LTS011": "Annaki Tigers", + "Shs_LTS012": "Sennyu Inksoles", + "Shs_MSN000": "Hero Runner Replicas", + "Shs_MSN004": "Armor Boot Replicas", + "Shs_MSN101": "Hero Snowboots Replicas", + "Shs_MSN104": "Neo Octoling Boots", + "Shs_MSN105": "Null Boots Replica", + "Shs_MSN106": "Old-Timey Shoes", + "Shs_RVL000": "Octoling Boots", + "Shs_SDL000": "Oyster Clogs", + "Shs_SDL001": "Choco Clogs", + "Shs_SDL003": "Neon Delta Straps", + "Shs_SDL004": "Black Flip-Flops", + "Shs_SDL005": "Snow Delta Straps", + "Shs_SDL006": "Luminous Delta Straps", + "Shs_SDL007": "Red FishFry Sandals", + "Shs_SDL008": "Yellow FishFry Sandals", + "Shs_SDL009": "Musselforge Flip-Flops", + "Shs_SHI000": "Red Hi-Horses", + "Shs_SHI001": "Zombie Hi-Horses", + "Shs_SHI002": "Cream Hi-Tops", + "Shs_SHI003": "Purple Hi-Horses", + "Shs_SHI004": "Hunter Hi-Tops", + "Shs_SHI005": "Red Hi-Tops", + "Shs_SHI006": "Gold Hi-Horses", + "Shs_SHI008": "Shark Moccasins", + "Shs_SHI009": "Mawcasins", + "Shs_SHI010": "Chocolate Dakroniks", + "Shs_SHI011": "Mint Dakroniks", + "Shs_SHI012": "Black Dakroniks", + "Shs_SHI013": "Piranha Moccasins", + "Shs_SHI014": "White Norimaki 750s", + "Shs_SHI015": "Black Norimaki 750s", + "Shs_SHI016": "Sunset Orca Hi-Tops", + "Shs_SHI017": "Red & Black Squidkid IV", + "Shs_SHI018": "Blue & Black Squidkid IV", + "Shs_SHI019": "Gray Sea-Slug Hi-Tops", + "Shs_SHI020": "Orca Hi-Tops", + "Shs_SHI021": "Milky Enperrials", + "Shs_SHI022": "Navy Enperrials", + "Shs_SHI023": "Amber Sea Slug Hi-Tops", + "Shs_SHI024": "Yellow Iromaki 750s", + "Shs_SHI025": "Red & White Squidkid V", + "Shs_SHI026": "Honey & Orange Squidkid V", + "Shs_SHI027": "Sun & Shade Squidkid IV", + "Shs_SHI028": "Orca Woven Hi-Tops", + "Shs_SHI029": "Green Iromaki 750s", + "Shs_SHI030": "Purple Iromaki 750s", + "Shs_SHI031": "Red Iromaki 750s", + "Shs_SHI032": "Blue Iromaki 750s", + "Shs_SHI033": "Orange Iromaki 750s", + "Shs_SHI034": "Red Power Stripes", + "Shs_SHI035": "Blue Power Stripes", + "Shs_SHI036": "Toni Kensa Black Hi-Tops", + "Shs_SHI037": "Sesame Salt 270s", + "Shs_SHI038": "Black & Blue Squidkid V", + "Shs_SHI039": "Orca Passion Hi-Tops", + "Shs_SHI040": "Truffle Canvas Hi-Tops", + "Shs_SHI041": "Online Squidkid V", + "Shs_SHT000": "Pink Trainers", + "Shs_SHT001": "Orange Arrows", + "Shs_SHT002": "Neon Sea Slugs", + "Shs_SHT003": "White Arrows", + "Shs_SHT004": "Cyan Trainers", + "Shs_SHT005": "Blue Sea Slugs", + "Shs_SHT006": "Red Sea Slugs", + "Shs_SHT007": "Purple Sea Slugs", + "Shs_SHT008": "Crazy Arrows", + "Shs_SHT009": "Black Trainers", + "Shs_SHT010": "Violet Trainers", + "Shs_SHT011": "Canary Trainers", + "Shs_SHT012": "Yellow-Mesh Sneakers", + "Shs_SHT013": "Arrow Pull-Ons", + "Shs_SHT014": "Red-Mesh Sneakers", + "Shs_SHT015": "N-Pacer CaO", + "Shs_SHT016": "N-Pacer Ag", + "Shs_SHT017": "N-Pacer Au", + "Shs_SHT018": "Sea Slug Volt 95s", + "Shs_SHT019": "Athletic Arrows", + "Shs_SLO000": "Blue Lo-Tops", + "Shs_SLO001": "Banana Basics", + "Shs_SLO002": "LE Lo-Tops", + "Shs_SLO003": "White Seahorses", + "Shs_SLO004": "Orange Lo-Tops", + "Shs_SLO005": "Black Seahorses", + "Shs_SLO006": "Clownfish Basics", + "Shs_SLO007": "Yellow Seahorses", + "Shs_SLO008": "Strapping Whites", + "Shs_SLO009": "Strapping Reds", + "Shs_SLO010": "Soccer Shoes", + "Shs_SLO011": "LE Soccer Shoes", + "Shs_SLO012": "Sunny Climbing Shoes", + "Shs_SLO013": "Birch Climbing Shoes", + "Shs_SLO014": "Green Laceups", + "Shs_SLO015": "White Laceless Dakroniks", + "Shs_SLO016": "Blue Laceless Dakroniks", + "Shs_SLO017": "Suede Gray Lace-Ups", + "Shs_SLO018": "Suede Nation Lace-Ups", + "Shs_SLO019": "Suede Marine Lace-Ups", + "Shs_SLO020": "Toni Kensa Soccer Shoes", + "Shs_SLP000": "Blue Slip-Ons", + "Shs_SLP001": "Red Slip-Ons", + "Shs_SLP002": "Squid-Stitch Slip-Ons", + "Shs_SLP003": "Polka-dot Slip-Ons", + "Shs_TRS000": "Trail Boots", + "Shs_TRS001": "Custom Trail Boots", + "Shs_TRS002": "Pro Trail Boots", + "Slosher_Bathtub_00": "Bloblobber", + "Slosher_Bathtub_01": "Bloblobber Deco", + "Slosher_CoopVase": "Grizzco Slosher", + "Slosher_Diffusion_00": "Tri-Slosher", + "Slosher_Diffusion_01": "Tri-Slosher Nouveau", + "Slosher_Launcher_00": "Sloshing Machine", + "Slosher_Launcher_01": "Sloshing Machine Neo", + "Slosher_Launcher_02": "Kensa Sloshing Machine", + "Slosher_MissionStrongLv0": "Hero Slosher", + "Slosher_MissionStrongLv1": "Hero Slosher", + "Slosher_Strong_00": "Slosher", + "Slosher_Strong_01": "Slosher Deco", + "Slosher_Strong_02": "Soda Slosher", + "Slosher_Strong_H": "Hero Slosher Replica", + "Slosher_Washtub_00": "Explosher", + "Slosher_Washtub_01": "Custom Explosher", + "SomersaultLanding": "Drop Roller", + "SpecialIncrease_Up": "Special Charge Up", + "SpecialTime_Up": "Special Power Up", + "Spinner_Downpour_00": "Ballpoint Splatling", + "Spinner_Downpour_01": "Ballpoint Splatling Nouveau", + "Spinner_Hyper_00": "Hydra Splatling", + "Spinner_Hyper_01": "Custom Hydra Splatling", + "Spinner_MissionStandardLv0": "Hero Splatling", + "Spinner_MissionStandardLv1": "Hero Splatling", + "Spinner_Quick_00": "Mini Splatling", + "Spinner_Quick_01": "Zink Mini Splatling ", + "Spinner_Quick_02": "Kensa Mini Splatling", + "Spinner_Serein_00": "Nautilus 47", + "Spinner_Serein_01": "Nautilus 79", + "Spinner_Standard_00": "Heavy Splatling", + "Spinner_Standard_01": "Heavy Splatling Deco", + "Spinner_Standard_02": "Heavy Splatling Remix", + "Spinner_Standard_H": "Hero Splatling Replica", + "Sprinkler": "Sprinkler", + "SquidMoveSpatter_Reduction": "Ninja Squid", + "SquidMove_Up": "Swim Speed Up", + "StartAllUp": "Opening Gambit", + "SubInk_Save": "Ink Saver (Sub)", + "SuperArmor": "Ink Armor", + "SuperBall": "Booyah Bomb", + "SuperBubble": "Bubble Blower", + "SuperJumpSign_Hide": "Stealth Jump", + "SuperLanding": "Splashdown", + "SuperMissile": "Tenta Missiles", + "SuperStamp": "Ultra Stamp", + "ThermalInk": "Thermal Ink", + "TimerTrap": "Ink Mine", + "Twins_Dual_00": "Dualie Squelchers", + "Twins_Dual_01": "Custom Dualie Squelchers", + "Twins_Gallon_00": "Glooga Dualies", + "Twins_Gallon_01": "Glooga Dualies Deco", + "Twins_Gallon_02": "Kensa Glooga Dualies", + "Twins_MissionNormalLv0": "Hero Dualies", + "Twins_MissionNormalLv1": "Hero Dualies", + "Twins_Normal_00": "Splat Dualies", + "Twins_Normal_01": "Enperry Splat Dualies", + "Twins_Normal_02": "Kensa Splat Dualies", + "Twins_Normal_H": "Hero Dualie Replicas", + "Twins_Short_00": "Dapple Dualies", + "Twins_Short_01": "Dapple Dualies Nouveau", + "Twins_Short_02": "Clear Dapple Dualies", + "Twins_Stepper_00": "Dark Tetra Dualies", + "Twins_Stepper_01": "Light Tetra Dualies", + "Umbrella_Compact_00": "Undercover Brella", + "Umbrella_Compact_01": "Undercover Sorella Brella", + "Umbrella_Compact_02": "Kensa Undercover Brella", + "Umbrella_CoopAutoAssault": "Grizzco Brella", + "Umbrella_MissionNormalLv0": "Hero Brella", + "Umbrella_MissionNormalLv1": "Hero Brella", + "Umbrella_Normal_00": "Splat Brella", + "Umbrella_Normal_01": "Sorella Brella", + "Umbrella_Normal_H": "Hero Brella Replica", + "Umbrella_Wide_00": "Tenta Brella", + "Umbrella_Wide_01": "Tenta Sorella Brella", + "Umbrella_Wide_02": "Tenta Camo Brella", + "Unknown": "", + "WaterCutter": "Sting Ray", + "Weight": "Handling", + "cFes": "Turf War (Splatfest)", + "cPnt": "Turf War", + "cPnt_2L": "Turf\nWar", + "cVar": "Splat Zones", + "cVar_2L": "Splat\nZones", + "cVcl": "Clam Blitz", + "cVcl_2L": "Clam\nBlitz", + "cVgl": "Rainmaker", + "cVgl_2L": "Rainmaker", + "cVlf": "Tower Control", + "cVlf_2L": "Tower\nControl" +} diff --git a/old/scripts/weapon_info.json b/old/scripts/weapon_info.json index 73f5f4172..69a8de7a4 100644 --- a/old/scripts/weapon_info.json +++ b/old/scripts/weapon_info.json @@ -1 +1,776 @@ -{"Sploosh-o-matic": {"Sub": "Curling Bomb", "Special": "Splashdown", "Range": 80, "SpecialCost": 160}, "Neo Sploosh-o-matic": {"Sub": "Squid Beakon", "Special": "Tenta Missiles", "Range": 80, "SpecialCost": 170}, "Sploosh-o-matic 7": {"Sub": "Splat Bomb", "Special": "Ultra Stamp", "Range": 80, "SpecialCost": 180}, "Splattershot Jr.": {"Sub": "Splat Bomb", "Special": "Ink Armor", "Range": 110, "SpecialCost": 180}, "Custom Splattershot Jr.": {"Sub": "Autobomb", "Special": "Ink Storm", "Range": 110, "SpecialCost": 160}, "Kensa Splattershot Jr.": {"Sub": "Torpedo", "Special": "Bubble Blower", "Range": 110, "SpecialCost": 200}, "Splash-o-matic": {"Sub": "Toxic Mist", "Special": "Inkjet", "Range": 117, "SpecialCost": 170}, "Neo Splash-o-matic": {"Sub": "Burst Bomb", "Special": "Suction-Bomb Launcher", "Range": 117, "SpecialCost": 210}, "Aerospray MG": {"Sub": "Suction Bomb", "Special": "Curling-Bomb Launcher", "Range": 110, "SpecialCost": 160}, "Aerospray RG": {"Sub": "Sprinkler", "Special": "Baller", "Range": 110, "SpecialCost": 180}, "Aerospray PG": {"Sub": "Burst Bomb", "Special": "Booyah Bomb", "Range": 110, "SpecialCost": 190}, "Splattershot": {"Sub": "Burst Bomb", "Special": "Splashdown", "Range": 125, "SpecialCost": 170}, "Tentatek Splattershot": {"Sub": "Splat Bomb", "Special": "Inkjet", "Range": 125, "SpecialCost": 210}, "Kensa Splattershot": {"Sub": "Suction Bomb", "Special": "Tenta Missiles", "Range": 125, "SpecialCost": 180}, ".52 Gal": {"Sub": "Point Sensor", "Special": "Baller", "Range": 133, "SpecialCost": 170}, ".52 Gal Deco": {"Sub": "Curling Bomb", "Special": "Sting Ray", "Range": 133, "SpecialCost": 190}, "Kensa .52 Gal": {"Sub": "Splash Wall", "Special": "Booyah Bomb", "Range": 133, "SpecialCost": 180}, "N-ZAP '85": {"Sub": "Suction Bomb", "Special": "Ink Armor", "Range": 125, "SpecialCost": 200}, "N-ZAP '89": {"Sub": "Autobomb", "Special": "Tenta Missiles", "Range": 125, "SpecialCost": 180}, "N-ZAP '83": {"Sub": "Sprinkler", "Special": "Ink Storm", "Range": 125, "SpecialCost": 180}, "Splattershot Pro": {"Sub": "Point Sensor", "Special": "Ink Storm", "Range": 170, "SpecialCost": 170}, "Forge Splattershot Pro": {"Sub": "Suction Bomb", "Special": "Bubble Blower", "Range": 170, "SpecialCost": 200}, "Kensa Splattershot Pro": {"Sub": "Splat Bomb", "Special": "Booyah Bomb", "Range": 170, "SpecialCost": 210}, ".96 Gal": {"Sub": "Sprinkler", "Special": "Ink Armor", "Range": 180, "SpecialCost": 190}, ".96 Gal Deco": {"Sub": "Splash Wall", "Special": "Splashdown", "Range": 180, "SpecialCost": 170}, "Jet Squelcher": {"Sub": "Toxic Mist", "Special": "Tenta Missiles", "Range": 225, "SpecialCost": 180}, "Custom Jet Squelcher": {"Sub": "Burst Bomb", "Special": "Sting Ray", "Range": 225, "SpecialCost": 180}, "Luna Blaster": {"Sub": "Splat Bomb", "Special": "Baller", "Range": 110, "SpecialCost": 180}, "Luna Blaster Neo": {"Sub": "Ink Mine", "Special": "Suction-Bomb Launcher", "Range": 110, "SpecialCost": 170}, "Kensa Luna Blaster": {"Sub": "Fizzy Bomb", "Special": "Ink Storm", "Range": 110, "SpecialCost": 170}, "Blaster": {"Sub": "Toxic Mist", "Special": "Splashdown", "Range": 133, "SpecialCost": 170}, "Custom Blaster": {"Sub": "Autobomb", "Special": "Inkjet", "Range": 133, "SpecialCost": 190}, "Range Blaster": {"Sub": "Suction Bomb", "Special": "Ink Storm", "Range": 170, "SpecialCost": 200}, "Custom Range Blaster": {"Sub": "Curling Bomb", "Special": "Bubble Blower", "Range": 170, "SpecialCost": 180}, "Grim Range Blaster": {"Sub": "Burst Bomb", "Special": "Tenta Missiles", "Range": 170, "SpecialCost": 190}, "Clash Blaster": {"Sub": "Splat Bomb", "Special": "Sting Ray", "Range": 110, "SpecialCost": 180}, "Clash Blaster Neo": {"Sub": "Curling Bomb", "Special": "Tenta Missiles", "Range": 110, "SpecialCost": 180}, "Rapid Blaster": {"Sub": "Ink Mine", "Special": "Splat-Bomb Launcher", "Range": 167, "SpecialCost": 200}, "Rapid Blaster Deco": {"Sub": "Suction Bomb", "Special": "Inkjet", "Range": 167, "SpecialCost": 190}, "Kensa Rapid Blaster": {"Sub": "Torpedo", "Special": "Baller", "Range": 167, "SpecialCost": 200}, "Rapid Blaster Pro": {"Sub": "Toxic Mist", "Special": "Ink Storm", "Range": 192, "SpecialCost": 180}, "Rapid Blaster Pro Deco": {"Sub": "Splash Wall", "Special": "Ink Armor", "Range": 192, "SpecialCost": 180}, "L-3 Nozzlenose": {"Sub": "Curling Bomb", "Special": "Baller", "Range": 135, "SpecialCost": 190}, "L-3 Nozzlenose D": {"Sub": "Burst Bomb", "Special": "Inkjet", "Range": 135, "SpecialCost": 180}, "Kensa L-3 Nozzlenose": {"Sub": "Splash Wall", "Special": "Ultra Stamp", "Range": 135, "SpecialCost": 180}, "H-3 Nozzlenose": {"Sub": "Point Sensor", "Special": "Tenta Missiles", "Range": 170, "SpecialCost": 170}, "H-3 Nozzlenose D": {"Sub": "Suction Bomb", "Special": "Ink Armor", "Range": 170, "SpecialCost": 220}, "Cherry H-3 Nozzlenose": {"Sub": "Splash Wall", "Special": "Bubble Blower", "Range": 170, "SpecialCost": 190}, "Squeezer": {"Sub": "Splash Wall", "Special": "Sting Ray", "Range": 200, "SpecialCost": 180}, "Foil Squeezer": {"Sub": "Splat Bomb", "Special": "Bubble Blower", "Range": 200, "SpecialCost": 180}, "Carbon Roller": {"Sub": "Autobomb", "Special": "Ink Storm", "Range": 95, "SpecialCost": 160}, "Carbon Roller Deco": {"Sub": "Burst Bomb", "Special": "Autobomb Launcher", "Range": 95, "SpecialCost": 190}, "Splat Roller": {"Sub": "Curling Bomb", "Special": "Splashdown", "Range": 118, "SpecialCost": 170}, "Krak-On Splat Roller": {"Sub": "Squid Beakon", "Special": "Baller", "Range": 118, "SpecialCost": 170}, "Kensa Splat Roller": {"Sub": "Splat Bomb", "Special": "Bubble Blower", "Range": 118, "SpecialCost": 180}, "Dynamo Roller": {"Sub": "Ink Mine", "Special": "Sting Ray", "Range": 185, "SpecialCost": 180}, "Gold Dynamo Roller": {"Sub": "Splat Bomb", "Special": "Ink Armor", "Range": 185, "SpecialCost": 190}, "Kensa Dynamo Roller": {"Sub": "Sprinkler", "Special": "Booyah Bomb", "Range": 185, "SpecialCost": 180}, "Flingza Roller": {"Sub": "Splash Wall", "Special": "Splat-Bomb Launcher", "Range": 140, "SpecialCost": 180}, "Foil Flingza Roller": {"Sub": "Suction Bomb", "Special": "Tenta Missiles", "Range": 140, "SpecialCost": 180}, "Inkbrush": {"Sub": "Splat Bomb", "Special": "Splashdown", "Range": 70, "SpecialCost": 150}, "Inkbrush Nouveau": {"Sub": "Ink Mine", "Special": "Baller", "Range": 70, "SpecialCost": 160}, "Permanent Inkbrush": {"Sub": "Sprinkler", "Special": "Ink Armor", "Range": 70, "SpecialCost": 180}, "Octobrush": {"Sub": "Autobomb", "Special": "Inkjet", "Range": 105, "SpecialCost": 180}, "Octobrush Nouveau": {"Sub": "Squid Beakon", "Special": "Tenta Missiles", "Range": 105, "SpecialCost": 170}, "Kensa Octobrush": {"Sub": "Suction Bomb", "Special": "Ultra Stamp", "Range": 105, "SpecialCost": 180}, "Classic Squiffer": {"Sub": "Point Sensor", "Special": "Ink Armor", "Range": 185, "SpecialCost": 170}, "New Squiffer": {"Sub": "Autobomb", "Special": "Baller", "Range": 185, "SpecialCost": 180}, "Fresh Squiffer": {"Sub": "Suction Bomb", "Special": "Inkjet", "Range": 185, "SpecialCost": 180}, "Splat Charger": {"Sub": "Splat Bomb", "Special": "Sting Ray", "Range": 260, "SpecialCost": 220}, "Firefin Splat Charger": {"Sub": "Splash Wall", "Special": "Suction-Bomb Launcher", "Range": 260, "SpecialCost": 210}, "Kensa Charger": {"Sub": "Sprinkler", "Special": "Baller", "Range": 260, "SpecialCost": 190}, "Splatterscope": {"Sub": "Splat Bomb", "Special": "Sting Ray", "Range": 280, "SpecialCost": 220}, "Firefin Splatterscope": {"Sub": "Splash Wall", "Special": "Suction-Bomb Launcher", "Range": 280, "SpecialCost": 210}, "Kensa Splatterscope": {"Sub": "Sprinkler", "Special": "Baller", "Range": 280, "SpecialCost": 190}, "E-liter 4K": {"Sub": "Ink Mine", "Special": "Ink Storm", "Range": 310, "SpecialCost": 170}, "Custom E-liter 4K": {"Sub": "Squid Beakon", "Special": "Bubble Blower", "Range": 310, "SpecialCost": 170}, "E-liter 4K Scope": {"Sub": "Ink Mine", "Special": "Ink Storm", "Range": 330, "SpecialCost": 170}, "Custom E-liter 4K Scope": {"Sub": "Squid Beakon", "Special": "Bubble Blower", "Range": 330, "SpecialCost": 170}, "Bamboozler 14 Mk I": {"Sub": "Curling Bomb", "Special": "Tenta Missiles", "Range": 210, "SpecialCost": 180}, "Bamboozler 14 Mk II": {"Sub": "Toxic Mist", "Special": "Burst-Bomb Launcher", "Range": 210, "SpecialCost": 160}, "Bamboozler 14 Mk III": {"Sub": "Fizzy Bomb", "Special": "Bubble Blower", "Range": 210, "SpecialCost": 190}, "Goo Tuber": {"Sub": "Suction Bomb", "Special": "Splashdown", "Range": 210, "SpecialCost": 160}, "Custom Goo Tuber": {"Sub": "Curling Bomb", "Special": "Inkjet", "Range": 210, "SpecialCost": 170}, "Slosher": {"Sub": "Suction Bomb", "Special": "Tenta Missiles", "Range": 145, "SpecialCost": 190}, "Slosher Deco": {"Sub": "Sprinkler", "Special": "Baller", "Range": 145, "SpecialCost": 220}, "Soda Slosher": {"Sub": "Splat Bomb", "Special": "Burst-Bomb Launcher", "Range": 145, "SpecialCost": 200}, "Tri-Slosher": {"Sub": "Burst Bomb", "Special": "Ink Armor", "Range": 110, "SpecialCost": 190}, "Tri-Slosher Nouveau": {"Sub": "Splat Bomb", "Special": "Ink Storm", "Range": 110, "SpecialCost": 170}, "Sloshing Machine": {"Sub": "Autobomb", "Special": "Sting Ray", "Range": 147, "SpecialCost": 190}, "Sloshing Machine Neo": {"Sub": "Point Sensor", "Special": "Splat-Bomb Launcher", "Range": 147, "SpecialCost": 180}, "Kensa Sloshing Machine": {"Sub": "Fizzy Bomb", "Special": "Splashdown", "Range": 147, "SpecialCost": 190}, "Bloblobber": {"Sub": "Splash Wall", "Special": "Ink Storm", "Range": 150, "SpecialCost": 180}, "Bloblobber Deco": {"Sub": "Sprinkler", "Special": "Suction-Bomb Launcher", "Range": 150, "SpecialCost": 190}, "Explosher": {"Sub": "Sprinkler", "Special": "Bubble Blower", "Range": 207, "SpecialCost": 210}, "Custom Explosher": {"Sub": "Point Sensor", "Special": "Baller", "Range": 207, "SpecialCost": 220}, "Mini Splatling": {"Sub": "Burst Bomb", "Special": "Tenta Missiles", "Range": 150, "SpecialCost": 210}, "Zink Mini Splatling": {"Sub": "Curling Bomb", "Special": "Ink Storm", "Range": 150, "SpecialCost": 180}, "Kensa Mini Splatling": {"Sub": "Toxic Mist", "Special": "Ultra Stamp", "Range": 150, "SpecialCost": 180}, "Heavy Splatling": {"Sub": "Sprinkler", "Special": "Sting Ray", "Range": 210, "SpecialCost": 200}, "Heavy Splatling Deco": {"Sub": "Splash Wall", "Special": "Bubble Blower", "Range": 210, "SpecialCost": 180}, "Heavy Splatling Remix": {"Sub": "Point Sensor", "Special": "Booyah Bomb", "Range": 210, "SpecialCost": 190}, "Hydra Splatling": {"Sub": "Autobomb", "Special": "Splashdown", "Range": 245, "SpecialCost": 170}, "Custom Hydra Splatling": {"Sub": "Ink Mine", "Special": "Ink Armor", "Range": 245, "SpecialCost": 200}, "Ballpoint Splatling": {"Sub": "Toxic Mist", "Special": "Inkjet", "Range": 245, "SpecialCost": 200}, "Ballpoint Splatling Nouveau": {"Sub": "Squid Beakon", "Special": "Ink Storm", "Range": 245, "SpecialCost": 220}, "Nautilus 47": {"Sub": "Point Sensor", "Special": "Baller", "Range": 180, "SpecialCost": 180}, "Nautilus 79": {"Sub": "Suction Bomb", "Special": "Inkjet", "Range": 180, "SpecialCost": 180}, "Dapple Dualies": {"Sub": "Squid Beakon", "Special": "Suction-Bomb Launcher", "Range": 95, "SpecialCost": 170}, "Dapple Dualies Nouveau": {"Sub": "Toxic Mist", "Special": "Ink Storm", "Range": 95, "SpecialCost": 170}, "Clear Dapple Dualies": {"Sub": "Torpedo", "Special": "Splashdown", "Range": 95, "SpecialCost": 170}, "Splat Dualies": {"Sub": "Burst Bomb", "Special": "Tenta Missiles", "Range": 125, "SpecialCost": 180}, "Enperry Splat Dualies": {"Sub": "Curling Bomb", "Special": "Inkjet", "Range": 125, "SpecialCost": 210}, "Kensa Splat Dualies": {"Sub": "Suction Bomb", "Special": "Baller", "Range": 125, "SpecialCost": 210}, "Glooga Dualies": {"Sub": "Ink Mine", "Special": "Inkjet", "Range": 160, "SpecialCost": 180}, "Glooga Dualies Deco": {"Sub": "Splash Wall", "Special": "Baller", "Range": 160, "SpecialCost": 180}, "Kensa Glooga Dualies": {"Sub": "Fizzy Bomb", "Special": "Ink Armor", "Range": 160, "SpecialCost": 180}, "Dualie Squelchers": {"Sub": "Point Sensor", "Special": "Tenta Missiles", "Range": 170, "SpecialCost": 190}, "Custom Dualie Squelchers": {"Sub": "Splat Bomb", "Special": "Ink Storm", "Range": 170, "SpecialCost": 210}, "Dark Tetra Dualies": {"Sub": "Autobomb", "Special": "Splashdown", "Range": 140, "SpecialCost": 190}, "Light Tetra Dualies": {"Sub": "Sprinkler", "Special": "Autobomb Launcher", "Range": 140, "SpecialCost": 200}, "Splat Brella": {"Sub": "Sprinkler", "Special": "Ink Storm", "Range": 125, "SpecialCost": 200}, "Sorella Brella": {"Sub": "Autobomb", "Special": "Splat-Bomb Launcher", "Range": 125, "SpecialCost": 180}, "Tenta Brella": {"Sub": "Squid Beakon", "Special": "Bubble Blower", "Range": 150, "SpecialCost": 200}, "Tenta Sorella Brella": {"Sub": "Splash Wall", "Special": "Curling-Bomb Launcher", "Range": 150, "SpecialCost": 170}, "Tenta Camo Brella": {"Sub": "Ink Mine", "Special": "Ultra Stamp", "Range": 150, "SpecialCost": 200}, "Undercover Brella": {"Sub": "Ink Mine", "Special": "Splashdown", "Range": 118, "SpecialCost": 150}, "Undercover Sorella Brella": {"Sub": "Splat Bomb", "Special": "Baller", "Range": 118, "SpecialCost": 180}, "Kensa Undercover Brella": {"Sub": "Torpedo", "Special": "Ink Armor", "Range": 118, "SpecialCost": 200}} \ No newline at end of file +{ + "Sploosh-o-matic": { + "Sub": "Curling Bomb", + "Special": "Splashdown", + "Range": 80, + "SpecialCost": 160 + }, + "Neo Sploosh-o-matic": { + "Sub": "Squid Beakon", + "Special": "Tenta Missiles", + "Range": 80, + "SpecialCost": 170 + }, + "Sploosh-o-matic 7": { + "Sub": "Splat Bomb", + "Special": "Ultra Stamp", + "Range": 80, + "SpecialCost": 180 + }, + "Splattershot Jr.": { + "Sub": "Splat Bomb", + "Special": "Ink Armor", + "Range": 110, + "SpecialCost": 180 + }, + "Custom Splattershot Jr.": { + "Sub": "Autobomb", + "Special": "Ink Storm", + "Range": 110, + "SpecialCost": 160 + }, + "Kensa Splattershot Jr.": { + "Sub": "Torpedo", + "Special": "Bubble Blower", + "Range": 110, + "SpecialCost": 200 + }, + "Splash-o-matic": { + "Sub": "Toxic Mist", + "Special": "Inkjet", + "Range": 117, + "SpecialCost": 170 + }, + "Neo Splash-o-matic": { + "Sub": "Burst Bomb", + "Special": "Suction-Bomb Launcher", + "Range": 117, + "SpecialCost": 210 + }, + "Aerospray MG": { + "Sub": "Suction Bomb", + "Special": "Curling-Bomb Launcher", + "Range": 110, + "SpecialCost": 160 + }, + "Aerospray RG": { + "Sub": "Sprinkler", + "Special": "Baller", + "Range": 110, + "SpecialCost": 180 + }, + "Aerospray PG": { + "Sub": "Burst Bomb", + "Special": "Booyah Bomb", + "Range": 110, + "SpecialCost": 190 + }, + "Splattershot": { + "Sub": "Burst Bomb", + "Special": "Splashdown", + "Range": 125, + "SpecialCost": 170 + }, + "Tentatek Splattershot": { + "Sub": "Splat Bomb", + "Special": "Inkjet", + "Range": 125, + "SpecialCost": 210 + }, + "Kensa Splattershot": { + "Sub": "Suction Bomb", + "Special": "Tenta Missiles", + "Range": 125, + "SpecialCost": 180 + }, + ".52 Gal": { + "Sub": "Point Sensor", + "Special": "Baller", + "Range": 133, + "SpecialCost": 170 + }, + ".52 Gal Deco": { + "Sub": "Curling Bomb", + "Special": "Sting Ray", + "Range": 133, + "SpecialCost": 190 + }, + "Kensa .52 Gal": { + "Sub": "Splash Wall", + "Special": "Booyah Bomb", + "Range": 133, + "SpecialCost": 180 + }, + "N-ZAP '85": { + "Sub": "Suction Bomb", + "Special": "Ink Armor", + "Range": 125, + "SpecialCost": 200 + }, + "N-ZAP '89": { + "Sub": "Autobomb", + "Special": "Tenta Missiles", + "Range": 125, + "SpecialCost": 180 + }, + "N-ZAP '83": { + "Sub": "Sprinkler", + "Special": "Ink Storm", + "Range": 125, + "SpecialCost": 180 + }, + "Splattershot Pro": { + "Sub": "Point Sensor", + "Special": "Ink Storm", + "Range": 170, + "SpecialCost": 170 + }, + "Forge Splattershot Pro": { + "Sub": "Suction Bomb", + "Special": "Bubble Blower", + "Range": 170, + "SpecialCost": 200 + }, + "Kensa Splattershot Pro": { + "Sub": "Splat Bomb", + "Special": "Booyah Bomb", + "Range": 170, + "SpecialCost": 210 + }, + ".96 Gal": { + "Sub": "Sprinkler", + "Special": "Ink Armor", + "Range": 180, + "SpecialCost": 190 + }, + ".96 Gal Deco": { + "Sub": "Splash Wall", + "Special": "Splashdown", + "Range": 180, + "SpecialCost": 170 + }, + "Jet Squelcher": { + "Sub": "Toxic Mist", + "Special": "Tenta Missiles", + "Range": 225, + "SpecialCost": 180 + }, + "Custom Jet Squelcher": { + "Sub": "Burst Bomb", + "Special": "Sting Ray", + "Range": 225, + "SpecialCost": 180 + }, + "Luna Blaster": { + "Sub": "Splat Bomb", + "Special": "Baller", + "Range": 110, + "SpecialCost": 180 + }, + "Luna Blaster Neo": { + "Sub": "Ink Mine", + "Special": "Suction-Bomb Launcher", + "Range": 110, + "SpecialCost": 170 + }, + "Kensa Luna Blaster": { + "Sub": "Fizzy Bomb", + "Special": "Ink Storm", + "Range": 110, + "SpecialCost": 170 + }, + "Blaster": { + "Sub": "Toxic Mist", + "Special": "Splashdown", + "Range": 133, + "SpecialCost": 170 + }, + "Custom Blaster": { + "Sub": "Autobomb", + "Special": "Inkjet", + "Range": 133, + "SpecialCost": 190 + }, + "Range Blaster": { + "Sub": "Suction Bomb", + "Special": "Ink Storm", + "Range": 170, + "SpecialCost": 200 + }, + "Custom Range Blaster": { + "Sub": "Curling Bomb", + "Special": "Bubble Blower", + "Range": 170, + "SpecialCost": 180 + }, + "Grim Range Blaster": { + "Sub": "Burst Bomb", + "Special": "Tenta Missiles", + "Range": 170, + "SpecialCost": 190 + }, + "Clash Blaster": { + "Sub": "Splat Bomb", + "Special": "Sting Ray", + "Range": 110, + "SpecialCost": 180 + }, + "Clash Blaster Neo": { + "Sub": "Curling Bomb", + "Special": "Tenta Missiles", + "Range": 110, + "SpecialCost": 180 + }, + "Rapid Blaster": { + "Sub": "Ink Mine", + "Special": "Splat-Bomb Launcher", + "Range": 167, + "SpecialCost": 200 + }, + "Rapid Blaster Deco": { + "Sub": "Suction Bomb", + "Special": "Inkjet", + "Range": 167, + "SpecialCost": 190 + }, + "Kensa Rapid Blaster": { + "Sub": "Torpedo", + "Special": "Baller", + "Range": 167, + "SpecialCost": 200 + }, + "Rapid Blaster Pro": { + "Sub": "Toxic Mist", + "Special": "Ink Storm", + "Range": 192, + "SpecialCost": 180 + }, + "Rapid Blaster Pro Deco": { + "Sub": "Splash Wall", + "Special": "Ink Armor", + "Range": 192, + "SpecialCost": 180 + }, + "L-3 Nozzlenose": { + "Sub": "Curling Bomb", + "Special": "Baller", + "Range": 135, + "SpecialCost": 190 + }, + "L-3 Nozzlenose D": { + "Sub": "Burst Bomb", + "Special": "Inkjet", + "Range": 135, + "SpecialCost": 180 + }, + "Kensa L-3 Nozzlenose": { + "Sub": "Splash Wall", + "Special": "Ultra Stamp", + "Range": 135, + "SpecialCost": 180 + }, + "H-3 Nozzlenose": { + "Sub": "Point Sensor", + "Special": "Tenta Missiles", + "Range": 170, + "SpecialCost": 170 + }, + "H-3 Nozzlenose D": { + "Sub": "Suction Bomb", + "Special": "Ink Armor", + "Range": 170, + "SpecialCost": 220 + }, + "Cherry H-3 Nozzlenose": { + "Sub": "Splash Wall", + "Special": "Bubble Blower", + "Range": 170, + "SpecialCost": 190 + }, + "Squeezer": { + "Sub": "Splash Wall", + "Special": "Sting Ray", + "Range": 200, + "SpecialCost": 180 + }, + "Foil Squeezer": { + "Sub": "Splat Bomb", + "Special": "Bubble Blower", + "Range": 200, + "SpecialCost": 180 + }, + "Carbon Roller": { + "Sub": "Autobomb", + "Special": "Ink Storm", + "Range": 95, + "SpecialCost": 160 + }, + "Carbon Roller Deco": { + "Sub": "Burst Bomb", + "Special": "Autobomb Launcher", + "Range": 95, + "SpecialCost": 190 + }, + "Splat Roller": { + "Sub": "Curling Bomb", + "Special": "Splashdown", + "Range": 118, + "SpecialCost": 170 + }, + "Krak-On Splat Roller": { + "Sub": "Squid Beakon", + "Special": "Baller", + "Range": 118, + "SpecialCost": 170 + }, + "Kensa Splat Roller": { + "Sub": "Splat Bomb", + "Special": "Bubble Blower", + "Range": 118, + "SpecialCost": 180 + }, + "Dynamo Roller": { + "Sub": "Ink Mine", + "Special": "Sting Ray", + "Range": 185, + "SpecialCost": 180 + }, + "Gold Dynamo Roller": { + "Sub": "Splat Bomb", + "Special": "Ink Armor", + "Range": 185, + "SpecialCost": 190 + }, + "Kensa Dynamo Roller": { + "Sub": "Sprinkler", + "Special": "Booyah Bomb", + "Range": 185, + "SpecialCost": 180 + }, + "Flingza Roller": { + "Sub": "Splash Wall", + "Special": "Splat-Bomb Launcher", + "Range": 140, + "SpecialCost": 180 + }, + "Foil Flingza Roller": { + "Sub": "Suction Bomb", + "Special": "Tenta Missiles", + "Range": 140, + "SpecialCost": 180 + }, + "Inkbrush": { + "Sub": "Splat Bomb", + "Special": "Splashdown", + "Range": 70, + "SpecialCost": 150 + }, + "Inkbrush Nouveau": { + "Sub": "Ink Mine", + "Special": "Baller", + "Range": 70, + "SpecialCost": 160 + }, + "Permanent Inkbrush": { + "Sub": "Sprinkler", + "Special": "Ink Armor", + "Range": 70, + "SpecialCost": 180 + }, + "Octobrush": { + "Sub": "Autobomb", + "Special": "Inkjet", + "Range": 105, + "SpecialCost": 180 + }, + "Octobrush Nouveau": { + "Sub": "Squid Beakon", + "Special": "Tenta Missiles", + "Range": 105, + "SpecialCost": 170 + }, + "Kensa Octobrush": { + "Sub": "Suction Bomb", + "Special": "Ultra Stamp", + "Range": 105, + "SpecialCost": 180 + }, + "Classic Squiffer": { + "Sub": "Point Sensor", + "Special": "Ink Armor", + "Range": 185, + "SpecialCost": 170 + }, + "New Squiffer": { + "Sub": "Autobomb", + "Special": "Baller", + "Range": 185, + "SpecialCost": 180 + }, + "Fresh Squiffer": { + "Sub": "Suction Bomb", + "Special": "Inkjet", + "Range": 185, + "SpecialCost": 180 + }, + "Splat Charger": { + "Sub": "Splat Bomb", + "Special": "Sting Ray", + "Range": 260, + "SpecialCost": 220 + }, + "Firefin Splat Charger": { + "Sub": "Splash Wall", + "Special": "Suction-Bomb Launcher", + "Range": 260, + "SpecialCost": 210 + }, + "Kensa Charger": { + "Sub": "Sprinkler", + "Special": "Baller", + "Range": 260, + "SpecialCost": 190 + }, + "Splatterscope": { + "Sub": "Splat Bomb", + "Special": "Sting Ray", + "Range": 280, + "SpecialCost": 220 + }, + "Firefin Splatterscope": { + "Sub": "Splash Wall", + "Special": "Suction-Bomb Launcher", + "Range": 280, + "SpecialCost": 210 + }, + "Kensa Splatterscope": { + "Sub": "Sprinkler", + "Special": "Baller", + "Range": 280, + "SpecialCost": 190 + }, + "E-liter 4K": { + "Sub": "Ink Mine", + "Special": "Ink Storm", + "Range": 310, + "SpecialCost": 170 + }, + "Custom E-liter 4K": { + "Sub": "Squid Beakon", + "Special": "Bubble Blower", + "Range": 310, + "SpecialCost": 170 + }, + "E-liter 4K Scope": { + "Sub": "Ink Mine", + "Special": "Ink Storm", + "Range": 330, + "SpecialCost": 170 + }, + "Custom E-liter 4K Scope": { + "Sub": "Squid Beakon", + "Special": "Bubble Blower", + "Range": 330, + "SpecialCost": 170 + }, + "Bamboozler 14 Mk I": { + "Sub": "Curling Bomb", + "Special": "Tenta Missiles", + "Range": 210, + "SpecialCost": 180 + }, + "Bamboozler 14 Mk II": { + "Sub": "Toxic Mist", + "Special": "Burst-Bomb Launcher", + "Range": 210, + "SpecialCost": 160 + }, + "Bamboozler 14 Mk III": { + "Sub": "Fizzy Bomb", + "Special": "Bubble Blower", + "Range": 210, + "SpecialCost": 190 + }, + "Goo Tuber": { + "Sub": "Suction Bomb", + "Special": "Splashdown", + "Range": 210, + "SpecialCost": 160 + }, + "Custom Goo Tuber": { + "Sub": "Curling Bomb", + "Special": "Inkjet", + "Range": 210, + "SpecialCost": 170 + }, + "Slosher": { + "Sub": "Suction Bomb", + "Special": "Tenta Missiles", + "Range": 145, + "SpecialCost": 190 + }, + "Slosher Deco": { + "Sub": "Sprinkler", + "Special": "Baller", + "Range": 145, + "SpecialCost": 220 + }, + "Soda Slosher": { + "Sub": "Splat Bomb", + "Special": "Burst-Bomb Launcher", + "Range": 145, + "SpecialCost": 200 + }, + "Tri-Slosher": { + "Sub": "Burst Bomb", + "Special": "Ink Armor", + "Range": 110, + "SpecialCost": 190 + }, + "Tri-Slosher Nouveau": { + "Sub": "Splat Bomb", + "Special": "Ink Storm", + "Range": 110, + "SpecialCost": 170 + }, + "Sloshing Machine": { + "Sub": "Autobomb", + "Special": "Sting Ray", + "Range": 147, + "SpecialCost": 190 + }, + "Sloshing Machine Neo": { + "Sub": "Point Sensor", + "Special": "Splat-Bomb Launcher", + "Range": 147, + "SpecialCost": 180 + }, + "Kensa Sloshing Machine": { + "Sub": "Fizzy Bomb", + "Special": "Splashdown", + "Range": 147, + "SpecialCost": 190 + }, + "Bloblobber": { + "Sub": "Splash Wall", + "Special": "Ink Storm", + "Range": 150, + "SpecialCost": 180 + }, + "Bloblobber Deco": { + "Sub": "Sprinkler", + "Special": "Suction-Bomb Launcher", + "Range": 150, + "SpecialCost": 190 + }, + "Explosher": { + "Sub": "Sprinkler", + "Special": "Bubble Blower", + "Range": 207, + "SpecialCost": 210 + }, + "Custom Explosher": { + "Sub": "Point Sensor", + "Special": "Baller", + "Range": 207, + "SpecialCost": 220 + }, + "Mini Splatling": { + "Sub": "Burst Bomb", + "Special": "Tenta Missiles", + "Range": 150, + "SpecialCost": 210 + }, + "Zink Mini Splatling": { + "Sub": "Curling Bomb", + "Special": "Ink Storm", + "Range": 150, + "SpecialCost": 180 + }, + "Kensa Mini Splatling": { + "Sub": "Toxic Mist", + "Special": "Ultra Stamp", + "Range": 150, + "SpecialCost": 180 + }, + "Heavy Splatling": { + "Sub": "Sprinkler", + "Special": "Sting Ray", + "Range": 210, + "SpecialCost": 200 + }, + "Heavy Splatling Deco": { + "Sub": "Splash Wall", + "Special": "Bubble Blower", + "Range": 210, + "SpecialCost": 180 + }, + "Heavy Splatling Remix": { + "Sub": "Point Sensor", + "Special": "Booyah Bomb", + "Range": 210, + "SpecialCost": 190 + }, + "Hydra Splatling": { + "Sub": "Autobomb", + "Special": "Splashdown", + "Range": 245, + "SpecialCost": 170 + }, + "Custom Hydra Splatling": { + "Sub": "Ink Mine", + "Special": "Ink Armor", + "Range": 245, + "SpecialCost": 200 + }, + "Ballpoint Splatling": { + "Sub": "Toxic Mist", + "Special": "Inkjet", + "Range": 245, + "SpecialCost": 200 + }, + "Ballpoint Splatling Nouveau": { + "Sub": "Squid Beakon", + "Special": "Ink Storm", + "Range": 245, + "SpecialCost": 220 + }, + "Nautilus 47": { + "Sub": "Point Sensor", + "Special": "Baller", + "Range": 180, + "SpecialCost": 180 + }, + "Nautilus 79": { + "Sub": "Suction Bomb", + "Special": "Inkjet", + "Range": 180, + "SpecialCost": 180 + }, + "Dapple Dualies": { + "Sub": "Squid Beakon", + "Special": "Suction-Bomb Launcher", + "Range": 95, + "SpecialCost": 170 + }, + "Dapple Dualies Nouveau": { + "Sub": "Toxic Mist", + "Special": "Ink Storm", + "Range": 95, + "SpecialCost": 170 + }, + "Clear Dapple Dualies": { + "Sub": "Torpedo", + "Special": "Splashdown", + "Range": 95, + "SpecialCost": 170 + }, + "Splat Dualies": { + "Sub": "Burst Bomb", + "Special": "Tenta Missiles", + "Range": 125, + "SpecialCost": 180 + }, + "Enperry Splat Dualies": { + "Sub": "Curling Bomb", + "Special": "Inkjet", + "Range": 125, + "SpecialCost": 210 + }, + "Kensa Splat Dualies": { + "Sub": "Suction Bomb", + "Special": "Baller", + "Range": 125, + "SpecialCost": 210 + }, + "Glooga Dualies": { + "Sub": "Ink Mine", + "Special": "Inkjet", + "Range": 160, + "SpecialCost": 180 + }, + "Glooga Dualies Deco": { + "Sub": "Splash Wall", + "Special": "Baller", + "Range": 160, + "SpecialCost": 180 + }, + "Kensa Glooga Dualies": { + "Sub": "Fizzy Bomb", + "Special": "Ink Armor", + "Range": 160, + "SpecialCost": 180 + }, + "Dualie Squelchers": { + "Sub": "Point Sensor", + "Special": "Tenta Missiles", + "Range": 170, + "SpecialCost": 190 + }, + "Custom Dualie Squelchers": { + "Sub": "Splat Bomb", + "Special": "Ink Storm", + "Range": 170, + "SpecialCost": 210 + }, + "Dark Tetra Dualies": { + "Sub": "Autobomb", + "Special": "Splashdown", + "Range": 140, + "SpecialCost": 190 + }, + "Light Tetra Dualies": { + "Sub": "Sprinkler", + "Special": "Autobomb Launcher", + "Range": 140, + "SpecialCost": 200 + }, + "Splat Brella": { + "Sub": "Sprinkler", + "Special": "Ink Storm", + "Range": 125, + "SpecialCost": 200 + }, + "Sorella Brella": { + "Sub": "Autobomb", + "Special": "Splat-Bomb Launcher", + "Range": 125, + "SpecialCost": 180 + }, + "Tenta Brella": { + "Sub": "Squid Beakon", + "Special": "Bubble Blower", + "Range": 150, + "SpecialCost": 200 + }, + "Tenta Sorella Brella": { + "Sub": "Splash Wall", + "Special": "Curling-Bomb Launcher", + "Range": 150, + "SpecialCost": 170 + }, + "Tenta Camo Brella": { + "Sub": "Ink Mine", + "Special": "Ultra Stamp", + "Range": 150, + "SpecialCost": 200 + }, + "Undercover Brella": { + "Sub": "Ink Mine", + "Special": "Splashdown", + "Range": 118, + "SpecialCost": 150 + }, + "Undercover Sorella Brella": { + "Sub": "Splat Bomb", + "Special": "Baller", + "Range": 118, + "SpecialCost": 180 + }, + "Kensa Undercover Brella": { + "Sub": "Torpedo", + "Special": "Ink Armor", + "Range": 118, + "SpecialCost": 200 + } +} diff --git a/package-lock.json b/package-lock.json index e932b4166..f1a11b73c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,6 +28,7 @@ "@graphql-codegen/typescript-react-apollo": "2.0.7", "@prisma/cli": "^2.8.0", "@types/react": "^16.9.49", + "prettier": "^2.1.2", "ts-node": "^9.0.0", "typescript": "^4.0.3" } @@ -3438,7 +3439,7 @@ "version": "2.9.0", "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.9.0.tgz", "integrity": "sha512-wPk4ehyTtVM7ZarWs16MhOc6kwLV/gZFardMvUeh46rlBwrklMdKtNChzzPa3wurrUPQ5KTbuRBz5Mgf7AdD/w==", - "dev": true, + "devOptional": true, "hasInstallScript": true, "bin": { "prisma": "build/index.js", @@ -11268,6 +11269,18 @@ "node": ">=4" } }, + "node_modules/prettier": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", + "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -16722,7 +16735,8 @@ "@chakra-ui/css-reset": { "version": "1.0.0-rc.5", "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-1.0.0-rc.5.tgz", - "integrity": "sha512-9NzQnUR7Jjtb2Ixiwys6fVkii6WE7TPcBFg2FxGJTvtElweR4gKVoyc6lyGH1LRTBZd1kMT55iY3FyLPOYFfsw==" + "integrity": "sha512-9NzQnUR7Jjtb2Ixiwys6fVkii6WE7TPcBFg2FxGJTvtElweR4gKVoyc6lyGH1LRTBZd1kMT55iY3FyLPOYFfsw==", + "requires": {} }, "@chakra-ui/descendant": { "version": "1.0.0-rc.5", @@ -16819,7 +16833,8 @@ "@chakra-ui/live-region": { "version": "1.0.0-rc.5", "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-1.0.0-rc.5.tgz", - "integrity": "sha512-k90pMnoUCT73D3SahBKv4xdW0P4uhUrAQ/GW7OXC9W3hTS41DVV6g8EvGoOKVkh16LJhpbM35VbEBwS07mN/0A==" + "integrity": "sha512-k90pMnoUCT73D3SahBKv4xdW0P4uhUrAQ/GW7OXC9W3hTS41DVV6g8EvGoOKVkh16LJhpbM35VbEBwS07mN/0A==", + "requires": {} }, "@chakra-ui/media-query": { "version": "1.0.0-rc.5", @@ -17796,7 +17811,8 @@ "@graphql-typed-document-node/core": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/@graphql-typed-document-node/core/-/core-3.1.0.tgz", - "integrity": "sha512-wYn6r8zVZyQJ6rQaALBEln5B1pzxb9shV5Ef97kTvn6yVGrqyXVnDqnU24MXnFubR+rZjBY9NWuxX3FB2sTsjg==" + "integrity": "sha512-wYn6r8zVZyQJ6rQaALBEln5B1pzxb9shV5Ef97kTvn6yVGrqyXVnDqnU24MXnFubR+rZjBY9NWuxX3FB2sTsjg==", + "requires": {} }, "@hapi/accept": { "version": "5.0.1", @@ -17869,7 +17885,8 @@ "@next/react-refresh-utils": { "version": "9.5.5", "resolved": "https://registry.npmjs.org/@next/react-refresh-utils/-/react-refresh-utils-9.5.5.tgz", - "integrity": "sha512-Gz5z0+ID+KAGto6Tkgv1a340damEw3HG6ANLKwNi5/QSHqQ3JUAVxMuhz3qnL54505I777evpzL89ofWEMIWKw==" + "integrity": "sha512-Gz5z0+ID+KAGto6Tkgv1a340damEw3HG6ANLKwNi5/QSHqQ3JUAVxMuhz3qnL54505I777evpzL89ofWEMIWKw==", + "requires": {} }, "@nexus/schema": { "version": "0.16.0", @@ -17923,7 +17940,7 @@ "version": "2.9.0", "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.9.0.tgz", "integrity": "sha512-wPk4ehyTtVM7ZarWs16MhOc6kwLV/gZFardMvUeh46rlBwrklMdKtNChzzPa3wurrUPQ5KTbuRBz5Mgf7AdD/w==", - "dev": true + "devOptional": true }, "@prisma/client": { "version": "2.9.0", @@ -18108,7 +18125,8 @@ "@react-types/shared": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.2.1.tgz", - "integrity": "sha512-Yi+zB+wvIGrxomjG7JZWsOPm8/tKPBtEsJI4cS2QbSho/bQWsw6xufJ6YlXxmx4BiBcktkp5VeP43E5nWqMQ5w==" + "integrity": "sha512-Yi+zB+wvIGrxomjG7JZWsOPm8/tKPBtEsJI4cS2QbSho/bQWsw6xufJ6YlXxmx4BiBcktkp5VeP43E5nWqMQ5w==", + "requires": {} }, "@samverschueren/stream-to-observable": { "version": "0.3.1", @@ -18713,12 +18731,14 @@ "ajv-errors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "requires": {} }, "ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} }, "ally.js": { "version": "1.4.1", @@ -18882,7 +18902,8 @@ "apollo-server-errors": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/apollo-server-errors/-/apollo-server-errors-2.4.2.tgz", - "integrity": "sha512-FeGxW3Batn6sUtX3OVVUm7o56EgjxDlmgpTLNyWcLb0j6P8mw9oLNyAm3B+deHA4KNdNHO5BmHS2g1SJYjqPCQ==" + "integrity": "sha512-FeGxW3Batn6sUtX3OVVUm7o56EgjxDlmgpTLNyWcLb0j6P8mw9oLNyAm3B+deHA4KNdNHO5BmHS2g1SJYjqPCQ==", + "requires": {} }, "apollo-server-micro": { "version": "2.18.2", @@ -21470,7 +21491,8 @@ "graphql-tag": { "version": "2.11.0", "resolved": "https://registry.npmjs.org/graphql-tag/-/graphql-tag-2.11.0.tgz", - "integrity": "sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA==" + "integrity": "sha512-VmsD5pJqWJnQZMUeRwrDhfgoyqcfwEkvtpANqcoUG8/tOLkwNgU9mzub/Mc78OJMhHjx7gfAMTxzdG43VGg3bA==", + "requires": {} }, "graphql-tools": { "version": "4.0.8", @@ -24321,6 +24343,12 @@ "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", "dev": true }, + "prettier": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", + "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", + "dev": true + }, "process": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", @@ -25769,7 +25797,8 @@ "stylis-rule-sheet": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", - "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==" + "integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==", + "requires": {} }, "subscriptions-transport-ws": { "version": "0.9.18", @@ -26534,7 +26563,8 @@ "use-callback-ref": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.2.4.tgz", - "integrity": "sha512-rXpsyvOnqdScyied4Uglsp14qzag1JIemLeTWGKbwpotWht57hbP78aNT+Q4wdFKQfQibbUX4fb6Qb4y11aVOQ==" + "integrity": "sha512-rXpsyvOnqdScyied4Uglsp14qzag1JIemLeTWGKbwpotWht57hbP78aNT+Q4wdFKQfQibbUX4fb6Qb4y11aVOQ==", + "requires": {} }, "use-sidecar": { "version": "1.0.3", diff --git a/package.json b/package.json index 2d12de8ac..7029694c3 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,8 @@ "studio": "npx prisma studio", "generate:prisma": "npx prisma generate", "seed": "ts-node prisma/seed.ts", - "gen": "graphql-codegen --config codegen.yml" + "gen": "graphql-codegen --config codegen.yml", + "prettier": "prettier --write ." }, "dependencies": { "@apollo/client": "^3.2.4", @@ -34,6 +35,7 @@ "@graphql-codegen/typescript-react-apollo": "2.0.7", "@prisma/cli": "^2.8.0", "@types/react": "^16.9.49", + "prettier": "^2.1.2", "ts-node": "^9.0.0", "typescript": "^4.0.3" } diff --git a/pages/api/graphql.ts b/pages/api/graphql.ts index 7b596ced5..1c6577ba7 100644 --- a/pages/api/graphql.ts +++ b/pages/api/graphql.ts @@ -12,4 +12,4 @@ export default new ApolloServer({ schema, context: createContext, tracing: process.env.NODE_ENV === "development", -}).createHandler({ path: "/api/graphql" }); \ No newline at end of file +}).createHandler({ path: "/api/graphql" }); diff --git a/prisma/migrations/20201013141255-init/README.md b/prisma/migrations/20201013141255-init/README.md index 37ac9b7c7..427a17b15 100644 --- a/prisma/migrations/20201013141255-init/README.md +++ b/prisma/migrations/20201013141255-init/README.md @@ -24,7 +24,7 @@ CREATE TABLE "public"."Profile" ( "bio" text , "weaponPool" text [] , "customUrlPath" text , -"userId" integer NOT NULL +"userId" integer NOT NULL ) CREATE UNIQUE INDEX "User.discordId_unique" ON "public"."User"("discordId") @@ -75,5 +75,3 @@ migration ..20201013141255-init + userId Int @unique +} ``` - - diff --git a/prisma/migrations/20201013141255-init/steps.json b/prisma/migrations/20201013141255-init/steps.json index a10998746..dab245e37 100644 --- a/prisma/migrations/20201013141255-init/steps.json +++ b/prisma/migrations/20201013141255-init/steps.json @@ -252,4 +252,4 @@ } } ] -} \ No newline at end of file +} diff --git a/prisma/seed.ts b/prisma/seed.ts index 3f4e718c5..1e214fd14 100644 --- a/prisma/seed.ts +++ b/prisma/seed.ts @@ -1,6 +1,6 @@ -import { PrismaClient } from "@prisma/client" +import { PrismaClient } from "@prisma/client"; -const prisma = new PrismaClient() +const prisma = new PrismaClient(); const main = async () => { await prisma.user.create({ @@ -16,21 +16,26 @@ const main = async () => { customUrlPath: "tester", sensMotion: 45, sensStick: -20, - weaponPool: ["Tenta Brella", "Range Blaster", "Luna Blaster", "N-ZAP '89"], + weaponPool: [ + "Tenta Brella", + "Range Blaster", + "Luna Blaster", + "N-ZAP '89", + ], twitchName: "nintendo", - youtubeId: "UCAtobAxsQcACwDZCSH9uJfA" - } - } - } - }) + youtubeId: "UCAtobAxsQcACwDZCSH9uJfA", + }, + }, + }, + }); - console.log("User created") -} + console.log("User created"); +}; main() - .catch(e => console.error(e)) + .catch((e) => console.error(e)) .finally(async () => { - await prisma.$disconnect() - }) + await prisma.$disconnect(); + }); -export { } +export {}; diff --git a/schema.graphql b/schema.graphql index 6875d3a1d..4d71515ef 100644 --- a/schema.graphql +++ b/schema.graphql @@ -1,7 +1,6 @@ ### This file was generated by Nexus Schema ### Do not make changes to this file directly - type Profile { bio: String country: String diff --git a/tsconfig.json b/tsconfig.json index 10ef974e9..dd1b6fe33 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "es5", - "lib": [ - "dom", - "dom.iterable", - "esnext" - ], + "lib": ["dom", "dom.iterable", "esnext"], "allowJs": false, "skipLibCheck": true, "strict": true, @@ -24,12 +20,6 @@ "module": "commonjs" } }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx" - ], - "exclude": [ - "node_modules" - ] + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], + "exclude": ["node_modules"] }