CrepePlus 1.7

This commit is contained in:
Midrooms 2023-04-05 05:23:28 -04:00
parent 6b989e0b7f
commit 472964d6c2
345 changed files with 555236 additions and 4 deletions

Binary file not shown.

5
CrepePackage/MITM.bat Normal file
View file

@ -0,0 +1,5 @@
cd %cd%\py
@echo off
title CrepeSR mitmdump
timeout /t 3
mitmdump -s proxy.py -k

74
CrepePackage/banners.json Normal file
View file

@ -0,0 +1,74 @@
[
{
"gachaId": 1001,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
},
{
"gachaId": 2001,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
},
{
"gachaId": 2002,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
},
{
"gachaId": 3001,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
},
{
"gachaId": 3002,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
},
{
"gachaId": 4001,
"detailWebview": "",
"rateUpItems4": [
1001,
1103
],
"rateUpItems5": [
1102
],
"costItemId": 101
}
]

21
CrepePackage/config.json Normal file
View file

@ -0,0 +1,21 @@
{
"VERBOSE_LEVEL": 1,
"MONGO_URI": "mongodb://0.0.0.0:27017/crepesr",
"HTTP": {
"HTTP_HOST": "0.0.0.0",
"HTTP_PORT": 443
},
"DISPATCH": [
{
"DISPATCH_NAME": "CrepePlus",
"DISPATCH_URL": "http://localhost/query_gateway"
}
],
"GAMESERVER": {
"SERVER_IP": "127.0.0.1",
"SERVER_PORT": 22102,
"MAINTENANCE": false,
"MAINTENANCE_MSG": "Server is in maintenance mode."
},
"AUTO_ACCOUNT": true
}

3
CrepePackage/inode.bat Normal file
View file

@ -0,0 +1,3 @@
npm install
timeout /t 3
exit

2881
CrepePackage/package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

18
CrepePackage/package.json Normal file
View file

@ -0,0 +1,18 @@
{
"devDependencies": {
"ts-node-dev": "^2.0.0"
},
"scripts": {
"start": "npx ts-node-dev src/index.ts --respawn --transpile-only"
},
"dependencies": {
"@types/express": "^4.17.13",
"colorts": "^0.1.63",
"dgram": "^1.0.1",
"express": "^4.18.1",
"mongodb": "^4.8.0",
"node-kcp-token": "github:memetrollsxd/node-kcp",
"protobufjs": "^7.0.0",
"typescript": "^4.7.4"
}
}

36
CrepePackage/proxy.py Normal file
View file

@ -0,0 +1,36 @@
"""MITM script for Star Rail."""
from mitmproxy import http
from mitmproxy import ctx
from mitmproxy.proxy import layer, layers
def load(loader):
# ctx.options.web_open_browser = False
# We change the connection strategy to lazy so that next_layer happens before we actually connect upstream.
ctx.options.connection_strategy = "lazy"
ctx.options.upstream_cert = False
ctx.options.ssl_insecure = True
def next_layer(nextlayer: layer.NextLayer):
ctx.log(
f"{nextlayer.context=}\n"
f"{nextlayer.data_client()[:70]=}\n"
)
sni = nextlayer.context.client.sni
if nextlayer.context.client.tls and sni and (sni.endswith("yuanshen.com") or sni.endswith("mihoyo.com") or sni.endswith("hoyoverse.com") or sni.endswith("starrails.com") or sni.endswith("bhsr.com")):
ctx.log('sni:' + sni)
nextlayer.context.server.address = ("127.0.0.1", 443)
def request(flow: http.HTTPFlow) -> None:
# flow.request.scheme = "http"
# pretty_host takes the "Host" header of the request into account
if flow.request.pretty_url.startswith('http://log-upload-os.mihoyo.com'):
flow.response = http.Response.make(
404, # (optional) status code
b"404 not found", # (optional) content
{"Content-Type": "text/html"} # (optional) headers
)
return

Binary file not shown.

36
CrepePackage/py/proxy.py Normal file
View file

@ -0,0 +1,36 @@
"""MITM script for Star Rail."""
from mitmproxy import http
from mitmproxy import ctx
from mitmproxy.proxy import layer, layers
def load(loader):
# ctx.options.web_open_browser = False
# We change the connection strategy to lazy so that next_layer happens before we actually connect upstream.
ctx.options.connection_strategy = "lazy"
ctx.options.upstream_cert = False
ctx.options.ssl_insecure = True
def next_layer(nextlayer: layer.NextLayer):
ctx.log(
f"{nextlayer.context=}\n"
f"{nextlayer.data_client()[:70]=}\n"
)
sni = nextlayer.context.client.sni
if nextlayer.context.client.tls and sni and (sni.endswith("yuanshen.com") or sni.endswith("mihoyo.com") or sni.endswith("hoyoverse.com") or sni.endswith("starrails.com") or sni.endswith("bhsr.com")):
ctx.log('sni:' + sni)
nextlayer.context.server.address = ("127.0.0.1", 443)
def request(flow: http.HTTPFlow) -> None:
# flow.request.scheme = "http"
# pretty_host takes the "Host" header of the request into account
if flow.request.pretty_url.startswith('http://log-upload-os.mihoyo.com'):
flow.response = http.Response.make(
404, # (optional) status code
b"404 not found", # (optional) content
{"Content-Type": "text/html"} # (optional) headers
)
return

View file

@ -0,0 +1,54 @@
import { createInterface } from 'readline';
import _alias from './alias.json';
import Logger from '../util/Logger';
import Session from '../server/kcp/Session';
const c = new Logger("Command", "blue");
const alias: { [key: string]: string } = _alias;
export class Command {
public readonly name: string;
public readonly args: string[];
public constructor(public readonly full: string) {
const split = full.split(" ");
this.name = split[0];
this.args = split.slice(1);
}
}
export default class Interface {
public static readonly rl = createInterface({
input: process.stdin,
output: process.stdout
});
public static target?: Session;
private constructor() { }
public static readonly start = () => {
Interface.rl.question("", (_command) => {
if (!_command) {
Interface.start();
return;
}
const cmd = new Command(_command);
import(`./${alias[cmd.name] || cmd.name}`).then(async module => {
await module.default(cmd);
}).catch(err => {
if (err.code == "MODULE_NOT_FOUND") {
c.log(`Command ${cmd.name} not found.`);
return;
}
c.error(err);
});
Interface.start();
});
Interface.rl.on('close', () => {
console.log('Have a great day!');
process.exit(0);
});
}
}

View file

@ -0,0 +1,37 @@
import Account from "../db/Account";
import Logger from "../util/Logger";
import { Command } from "./Interface";
const c = new Logger("/account", "blue");
export default async function handle(command: Command) {
switch (command.args[0]) {
case "create":
if (!command.args[1]) {
c.log(`Usage: account create <name> [uid]`);
return;
}
try {
const acc = await Account.create(command.args[1], command.args[2]);
c.log(`Account ${acc.name} with UID ${acc.uid} created.`);
} catch (e) {
c.error(e as Error);
}
break;
case "delete":
if (!command.args[1]) {
c.log(`Usage: account delete <uid>`);
return;
}
const acc = await Account.fromUID(command.args[1]);
if (!acc) {
c.error(`Account with UID ${command.args[1]} does not exist.`);
return;
}
Account.delete(command.args[1]);
c.log(`Account ${acc.name} with UID ${acc.uid} deleted successfully.`);
break;
default:
c.log(`Usage: account create <name> [uid]`);
c.log(`Usage: account delete <uid>`);
}
}

View file

@ -0,0 +1,9 @@
{
"close": "exit",
"stop": "exit",
"t": "target",
"acc": "account",
"d": "debug",
"?": "help",
"m": "maintenance"
}

View file

@ -0,0 +1,66 @@
import Avatar from "../db/Avatar";
import AvatarExcelTable from "../data/excel/AvatarExcelTable.json";
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/avatar", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
const actionType = command.args[0];
const avatarId = Number(command.args[1]);
const uid = Interface.target.player.db._id;
const player = Interface.target.player;
switch (actionType) {
default: {
c.log(`Usage: /avatar <add|remove|giveall|removeall> <avatarId>`);
break;
}
case "add": {
if (!avatarId) {
return c.log("No avatarId specified");
}
// Check if it already exists
if (await Avatar.hasAvatar(player, avatarId)) {
return c.log(`Avatar ${avatarId} already exists`);
}
await Avatar.addAvatarToPlayer(player, avatarId).then(a => c.log(`Avatar ${avatarId} added to ${a.db.ownerUid}`));
break;
}
case "remove": {
if (!avatarId) return c.log("No avatarId specified");
await Avatar.removeAvatarFromPlayer(player, avatarId).then(() => c.log(`Avatar ${avatarId} removed from ${uid}`));
break;
}
case "giveall": {
for (const id in AvatarExcelTable) {
const avatarId = Number(id);
// Let's not brick our account.
if (avatarId>= 8000) {
continue;
}
await Avatar.addAvatarToPlayer(player, avatarId);
}
c.log(`All avatars added to ${uid}`);
break;
}
case "removeall": {
for (const id in AvatarExcelTable) {
if (Number(id) !== 1001) {
await Avatar.removeAvatarFromPlayer(player, parseInt(id));
}
}
c.log(`All avatars removed from ${uid}`);
break;
}
}
Interface.target.sync();
}

View file

@ -0,0 +1,17 @@
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/ban", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
const banStatus = Interface.target.player.db.banned;
Interface.target.player.db.banned = !banStatus;
Interface.target.player.save();
Interface.target.kick();
c.log(`${banStatus ? "Banned" : "Unbanned"} ${Interface.target.account.name}`);
}

View file

@ -0,0 +1,68 @@
import { BattleAvatar, BattleBuff, HeroPath, Item, ItemList, SceneBattleInfo, SceneMonsterWave, StartCocoonStageScRsp } from "../data/proto/StarRail";
import Avatar from "../db/Avatar";
import Inventory from "../db/Inventory";
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/battle", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
if (command.args.length == 0) {
c.log("Usage: /battle <monsterId>+");
return;
}
const player = Interface.target.player;
if (player.db.posData.planeID != 20101) {
c.log("For now, this is only confirmed to work on plane 20101, please teleport there first.");
}
const inventory = await player.getInventory();
const avatars = await Avatar.getAvatarsForLineup(player, player.db.lineup.lineups[player.db.lineup.curIndex]);
const monsters = command.args.map(arg => Number(arg));
Interface.target.send(StartCocoonStageScRsp, {
retcode: 0,
propEntityId: 0,
cocoonId: 1001,
wave: 0,
battleInfo: {
logicRandomSeed: 1,
stageId: 1022010,
monsterWaveList: [
{ monsterIdList: monsters, dropList: [{ itemList: [{ itemId: 102, num: 10 } as Item] } as ItemList] } as SceneMonsterWave
],
battleAvatarList: avatars.map((avatar, i) => {
const equipment = inventory.getEquipmentByUid(avatar.db.equipmentUniqueId);
const equipData = (equipment) ? [{
id: equipment.tid,
level: equipment.level,
promotion: equipment.promotion,
rank: equipment.rank
}] : [];
return {
avatarType: avatar.db.avatarType,
equipmentList: equipData,
hp: avatar.db.fightProps.hp,
id: avatar.db.baseAvatarId,
sp: avatar.db.fightProps.sp,
index: i,
level: avatar.db.level,
promotion: avatar.db.promotion,
rank: avatar.db.rank,
relicList: [],
skilltreeList: []
};
}),
buffList: new Array<BattleBuff>(),
battleId: 0,
heroPathList: new Array<HeroPath>(),
roundsLimit: 100
} as SceneBattleInfo
} as StartCocoonStageScRsp);
}

View file

@ -0,0 +1,20 @@
import Config from "../util/Config";
import Logger, { VerboseLevel } from "../util/Logger";
import { Command } from "./Interface";
const c = new Logger("/debug", "blue");
export default async function handle(command: Command) {
if (!command.args[0]) c.log(`VerboseLevel: ${Config.VERBOSE_LEVEL}`);
else {
let level = parseInt(command.args[0]);
if (!level) level = 0;
if (level > VerboseLevel.VERBH || level < 0) {
c.log("Invalid verbose level. Must be between 0 and 4.");
return;
}
Config.VERBOSE_LEVEL = level as VerboseLevel;
Logger.VERBOSE_LEVEL = level as VerboseLevel;
c.log(`VerboseLevel set to ${Config.VERBOSE_LEVEL} (${VerboseLevel[level]})`);
}
}

View file

@ -0,0 +1,8 @@
import Logger from "../util/Logger";
import { Command } from "./Interface";
const c = new Logger("/exit", "blue");
export default async function handle(command: Command) {
c.log("Good riddance!");
process.exit(0);
}

View file

@ -0,0 +1,16 @@
import Logger from "../util/Logger";
import { Command } from "./Interface";
import fs from 'fs';
const c = new Logger("/help", "blue");
export default async function handle(command: Command) {
const cmds = fs.readdirSync(__dirname);
c.log(`${cmds.length} commands available:`)
cmds.forEach(cmd => {
if (cmd.endsWith(".ts")) {
const cmdName = cmd.replace(/.ts/gm, "");
if (cmdName !== "Interface") c.trail(cmdName);
}
})
}

View file

@ -0,0 +1,110 @@
import { Equipment } from "../data/proto/StarRail";
import Player from "../db/Player";
import ItemExcel from "../util/excel/ItemExcel";
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/item", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
const player = Interface.target.player;
const actionType = command.args[0];
const itemId = Number(command.args[1]);
let count: number = 1;
let level: number = 1;
let rank: number = 0;
let promotion: number = 0;
for (let i = 2; i < command.args.length; i++) {
const arg = command.args[i];
const number = Number(command.args[i].substring(1));
if (arg.startsWith("x")) {
count = number;
}
else if (arg.startsWith("l")) {
level = number;
}
else if (arg.startsWith("r")) {
rank = number;
}
else if (arg.startsWith("p")) {
promotion = number;
}
}
switch (actionType) {
case "give": {
await handleGive(player, itemId, count, level, rank, promotion);
break;
}
case "giveall": {
await handleGiveAll(player);
break;
}
default: {
c.log(`Usage: /item <give|giveall> <itemId> [x<count>|l<level>|r<rank>|p<promotion>]*`);
break;
}
}
// Sync session.
await player.session.sync();
}
async function handleGive(player: Player, itemId: number, count:number, level: number, rank: number, promotion: number) {
if (!itemId) {
return c.log("No avatarId specified");
}
// Check if this item exists.
const itemData = ItemExcel.fromId(itemId);
if (!itemData) {
return c.log(`Item ID ${itemId} does not exist.`);
}
const inventory = await player.getInventory();
switch (itemData.ItemType) {
case "Material":
await inventory.addMaterial(itemId, count);
break;
case "Equipment":
for (let i = 0; i < count; i++) {
await inventory.addEquipment({
tid: itemId,
uniqueId: 0,
level: level,
rank: rank,
exp: 1,
isProtected: false,
promotion: promotion,
baseAvatarId: 0
} as Equipment);
}
break;
default:
return c.log(`Unsupported item type: ${itemData.ItemType}.`);
break;
}
c.log(`Added ${count} of item ${itemId} to player ${player.uid}`);
}
async function handleGiveAll(player: Player) {
const inventory = await player.getInventory();
for (const entry of ItemExcel.all()) {
const count =
(entry.ItemType == "Material") ? 1000 :
(entry.ItemType == "Virtual") ? 10_000_000 :
1;
await inventory.addItem(entry.ID, count);
}
c.log(`All materials added to ${player.uid}`);
}

View file

@ -0,0 +1,14 @@
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/kick", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
Interface.target.kick();
c.log(`Kicked ${Interface.target.account.name}`);
}

View file

@ -0,0 +1,23 @@
import Config from "../util/Config";
import Logger, { VerboseLevel } from "../util/Logger";
import { Command } from "./Interface";
const c = new Logger("/maintenance", "blue");
export default async function handle(command: Command) {
switch (command.args[0]) {
case "on":
Config.GAMESERVER.MAINTENANCE = true;
if (command.args[1]) Config.GAMESERVER.MAINTENANCE_MSG = command.args.slice(1).join(" ");
c.log("Maintenance mode enabled.");
break;
case "off":
Config.GAMESERVER.MAINTENANCE = false;
c.log("Maintenance mode disabled.");
break;
default:
c.log(`Maintenance mode is ${Config.GAMESERVER.MAINTENANCE ? "enabled" : "disabled"}`);
c.log(`Maintenance message: ${Config.GAMESERVER.MAINTENANCE_MSG}`);
c.log("Usage: /maintenance [on|off] [message]");
break;
}
}

View file

@ -0,0 +1,13 @@
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/pos", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
const pos = Interface.target.player.db.posData.pos;
c.log(`Current position: x=${pos.x}, y=${pos.y}, z=${pos.z}.`);
}

View file

@ -0,0 +1,50 @@
import Logger from "../util/Logger";
import { ActorEntity } from "../game/entities/Actor";
import Interface, { Command } from "./Interface";
import { GetCurSceneInfoScRsp } from "../data/proto/StarRail";
import MazePlaneExcel from "../util/excel/MazePlaneExcel";
import MapEntryExcel from "../util/excel/MapEntryExcel";
const c = new Logger("/scene", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
const planeID = MazePlaneExcel.fromPlaneId(parseInt(command.args[0]));
const entryId = MapEntryExcel.fromFloorId(planeID.StartFloorID).ID;
const posData = Interface.target.player.db.posData;
const lineup2 = await Interface.target.player.getLineup();
const curAvatarEntity = new ActorEntity(Interface.target.player.scene, lineup2.avatarList[0].id, posData.pos);
if (!planeID) return c.log("Usage: /scene <planeID>");
// Update scene information on player.
Interface.target.player.db.posData.planeID = planeID!.PlaneID;
Interface.target.player.db.posData.floorID = planeID!.StartFloorID;
await Interface.target.player.save()
//ty for tamilpp25 scene
Interface.target.send(GetCurSceneInfoScRsp, {
retcode: 0,
scene: {
planeId: planeID.PlaneID,
floorId: planeID.StartFloorID,
entityList: [
curAvatarEntity
],
entityBuffList: [],
entryId: entryId,
envBuffList: [],
gameModeType: MazePlaneExcel.getGameModeForPlaneType(planeID.PlaneType),
lightenSectionList: []
},
} as unknown as GetCurSceneInfoScRsp);
Interface.target.player.scene.spawnEntity(curAvatarEntity, true);
Interface.target.sync();
c.log(`Scene set to PlaneID: ${planeID.PlaneID}`);
}

View file

@ -0,0 +1,14 @@
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
const c = new Logger("/sync", "blue");
export default async function handle(command: Command) {
if (!Interface.target) {
c.log("No target specified");
return;
}
Interface.target.sync();
c.log(`Synced ${Interface.target.account.name}`);
}

View file

@ -0,0 +1,41 @@
import Logger from "../util/Logger";
import Interface, { Command } from "./Interface";
import findBestMatch from "../util/stringSimilarity";
import SRServer from "../server/kcp/SRServer";
import Session from "../server/kcp/Session";
const c = new Logger("/target", "blue");
export default async function handle(command: Command) {
const target = command.args[0];
const possibleTargets: {
id: string;
session: Session;
uid: number;
}[] = [];
SRServer.getInstance().sessions.forEach(client => {
possibleTargets.push({
id: `${client.ctx.address}:${client.ctx.port} (UID: ${client.account.uid})`,
uid: Number(client.account.uid),
session: client
});
});
if (!target) {
c.log("No target specified");
if (Interface.target) c.log(`Current target: ${Interface.target.account.name} (UID: ${Interface.target.account.uid})`);
c.log("Possible targets: ");
possibleTargets.forEach(x => c.trail(`${x.id} (UID: ${x.uid})`));
if (!possibleTargets[1] && possibleTargets[0]) {
c.log(`Auto targetting the only session ${possibleTargets[0].uid}`);
Interface.target = possibleTargets[0].session;
}
return;
}
const autoTarget = findBestMatch(target, possibleTargets.map(x => x.id))?.bestMatch?.target;
Interface.target = possibleTargets.find(x => x.id === autoTarget)?.session;
c.log(`Target set to ${Interface.target ? Interface.target.account.name : "none"} (UID: ${Interface.target ? Interface.target.account.uid : "none"})`);
}

View file

@ -0,0 +1,62 @@
{
"1": {
"Level": 1,
"Count": 1000,
"LevelIconPath": "",
"Reward": 113011
},
"2": {
"Level": 2,
"Count": 2000,
"LevelIconPath": "",
"Reward": 113012
},
"3": {
"Level": 3,
"Count": 4000,
"LevelIconPath": "",
"Reward": 113013
},
"4": {
"Level": 4,
"Count": 6000,
"LevelIconPath": "",
"Reward": 113014
},
"5": {
"Level": 5,
"Count": 8000,
"LevelIconPath": "",
"Reward": 113015
},
"6": {
"Level": 6,
"Count": 10000,
"LevelIconPath": "",
"Reward": 113016
},
"7": {
"Level": 7,
"Count": 12000,
"LevelIconPath": "",
"Reward": 113017
},
"8": {
"Level": 8,
"Count": 15000,
"LevelIconPath": "",
"Reward": 113018
},
"9": {
"Level": 9,
"Count": 18000,
"LevelIconPath": "",
"Reward": 113019
},
"10": {
"Level": 10,
"Count": 21000,
"LevelIconPath": "",
"Reward": 113020
}
}

View file

@ -0,0 +1,92 @@
{
"1": {
"SeriesID": 1,
"SeriesTitle": {
"hash": 1584069034
},
"MainIconPath": "SpriteOutput/Achievement/CultivateAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/CultivateAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"2": {
"SeriesID": 2,
"SeriesTitle": {
"hash": 17985093
},
"MainIconPath": "SpriteOutput/Achievement/CollectAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/CollectAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"3": {
"SeriesID": 3,
"SeriesTitle": {
"hash": -1548098848
},
"MainIconPath": "SpriteOutput/Achievement/MainLineAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/MainLineAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"4": {
"SeriesID": 4,
"SeriesTitle": {
"hash": 824554147
},
"MainIconPath": "SpriteOutput/Achievement/ExploreAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/ExploreAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"5": {
"SeriesID": 5,
"SeriesTitle": {
"hash": -741529794
},
"MainIconPath": "SpriteOutput/Achievement/ReputationAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/ReputationAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"6": {
"SeriesID": 6,
"SeriesTitle": {
"hash": 1987353561
},
"MainIconPath": "SpriteOutput/Achievement/ChallengeAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/ChallengeAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"7": {
"SeriesID": 7,
"SeriesTitle": {
"hash": 421269620
},
"MainIconPath": "SpriteOutput/Achievement/BattleAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/BattleAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"8": {
"SeriesID": 8,
"SeriesTitle": {
"hash": -788583961
},
"MainIconPath": "SpriteOutput/Achievement/TrackAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/TrackAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
},
"9": {
"SeriesID": 9,
"SeriesTitle": {
"hash": 1940299394
},
"MainIconPath": "SpriteOutput/Achievement/RougeAchievementIcon.png",
"IconPath": "SpriteOutput/Achievement/RougeAchievementIcon_s.png",
"ShowType": "Always",
"ShowParamInt1": 0
}
}

View file

@ -0,0 +1,20 @@
{
"ActionGroup_SelectMenu": {
"ActionGroupName": "ActionGroup_SelectMenu",
"ActionGroupTextmapID": {
"hash": 1463604159
},
"KeyMouseImagePath": "",
"XboxImagePath": "SpriteOutput/KeyMapIcons/XBox/UI_xbox_lbrb.png",
"PsImagePath": "SpriteOutput/KeyMapIcons/PS4/UI_ps4_l1r1.png"
},
"ActionGroup_Move": {
"ActionGroupName": "ActionGroup_Move",
"ActionGroupTextmapID": {
"hash": 1113026665
},
"KeyMouseImagePath": "SpriteOutput/KeyMapIcons/PC/IconMouseWASD.png",
"XboxImagePath": "SpriteOutput/KeyMapIcons/Com/UI_com_ls_all.png",
"PsImagePath": "SpriteOutput/KeyMapIcons/Com/UI_com_ls_all.png"
}
}

View file

@ -0,0 +1,15 @@
{
"1001": {
"ID": 1001,
"ScheduleDataID": 601001,
"RewardList": [
3000001,
3000002,
3000003,
3000004,
3000005,
3000006,
3000007
]
}
}

View file

@ -0,0 +1,249 @@
{
"10007": {
"PanelID": 10007,
"Type": 2,
"TypeParam": [
1001
],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 1,
"MaxPlayerLevel": 999,
"UnlockMission": 1000510,
"IsShowDayTime": true,
"SortWeight": 1000,
"TabName": {
"hash": 1879926528
},
"TitleName": {
"hash": 1687786083
},
"PanelDesc": {
"hash": 748469519
},
"GraphImagePath": "SpriteOutput/UI/Quest/ImgSevenDayAvatar.png",
"BGImagePath": "SpriteOutput/UI/Quest/ImgSevenDayRewardSnow.png",
"PageBGImagePath": "SpriteOutput/UI/Quest/ImgSevenDayReward.png",
"ScheduleDataID": 510007,
"TabIcon": "SpriteOutput/UI/Quest/BtnSevenDayReward.png",
"TagDesc": {
"hash": -525896193
},
"IntroDesc": {
"hash": -665985401
}
},
"10008": {
"PanelID": 10008,
"Type": 3,
"TypeParam": [
10008
],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 6,
"MaxPlayerLevel": 999,
"UnlockMission": 1010902,
"IsShowDayTime": true,
"SortWeight": 900,
"TabName": {
"hash": 1879926531
},
"TitleName": {
"hash": 1687786088
},
"PanelDesc": {
"hash": 748469534
},
"GraphImagePath": "SpriteOutput/AvatarCutinFigures/1103.png",
"BGImagePath": "SpriteOutput/AvatarCutinBg/1103.png",
"PageBGImagePath": "SpriteOutput/UI/Quest/ImgSingleTaskActivity.png",
"ScheduleDataID": 510008,
"TabIcon": "SpriteOutput/UI/Quest/BtnSingleTaskActivity.png",
"TagDesc": {
"hash": -525896180
},
"IntroDesc": {
"hash": -665985386
}
},
"10009": {
"PanelID": 10009,
"Type": 1,
"TypeParam": [
1001801,
1001802,
1001803,
1001804
],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 12,
"MaxPlayerLevel": 999,
"UnlockMission": 1010302,
"IsShowDayTime": false,
"SortWeight": 800,
"TabName": {
"hash": 1879926530
},
"TitleName": {
"hash": 1687786089
},
"PanelDesc": {
"hash": -525896179
},
"GraphImagePath": "",
"BGImagePath": "",
"PageBGImagePath": "SpriteOutput/UI/Quest/ImgQuestMissionList.png",
"ScheduleDataID": 510009,
"TabIcon": "SpriteOutput/UI/Quest/BtnQuestMissionList.png",
"TagDesc": {
"hash": -525896179
},
"IntroDesc": {
"hash": -665985387
}
},
"10010": {
"PanelID": 10010,
"Type": 1,
"TypeParam": [
1001901,
1001906,
1001902,
1001903,
1001904,
1001905,
1001907
],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 12,
"MaxPlayerLevel": 999,
"UnlockMission": 1010302,
"IsShowDayTime": false,
"SortWeight": 700,
"TabName": {
"hash": -848956832
},
"TitleName": {
"hash": -1041097275
},
"PanelDesc": {
"hash": 1040187753
},
"GraphImagePath": "",
"BGImagePath": "",
"PageBGImagePath": "SpriteOutput/UI/Quest/ImgQuestMissionTest01.png",
"ScheduleDataID": 510010,
"TabIcon": "SpriteOutput/UI/Quest/BtnQuestMissionTest01.png",
"TagDesc": {
"hash": 1040187753
},
"IntroDesc": {
"hash": 2062897961
}
},
"10011": {
"PanelID": 10011,
"Type": 1,
"TypeParam": [
1001921,
1001922,
1001923,
1001924,
1001925
],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 12,
"MaxPlayerLevel": 999,
"UnlockMission": 1010302,
"IsShowDayTime": false,
"SortWeight": 600,
"TabName": {
"hash": -848956833
},
"TitleName": {
"hash": -1041097274
},
"PanelDesc": {
"hash": -817614416
},
"GraphImagePath": "",
"BGImagePath": "",
"PageBGImagePath": "SpriteOutput/UI/Quest/ImgQuestMissionTest02.png",
"ScheduleDataID": 510011,
"TabIcon": "SpriteOutput/UI/Quest/BtnQuestMissionTest02.png",
"TagDesc": {
"hash": 371857150
},
"IntroDesc": {
"hash": 2062897960
}
},
"10012": {
"PanelID": 10012,
"Type": 4,
"TypeParam": [],
"BeginTime": "2022-05-29 10:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 1,
"MaxPlayerLevel": 999,
"UnlockMission": 1000510,
"IsShowDayTime": true,
"SortWeight": 500,
"TabName": {
"hash": -848956830
},
"TitleName": {
"hash": -1041097277
},
"PanelDesc": {
"hash": -817614417
},
"GraphImagePath": "",
"BGImagePath": "",
"PageBGImagePath": "",
"ScheduleDataID": 510012,
"TabIcon": "SpriteOutput/UI/Quest/ButtonChallengeQuest.png",
"TagDesc": {
"hash": 1040187751
},
"IntroDesc": {
"hash": 2062897959
}
},
"10013": {
"PanelID": 10013,
"Type": 5,
"TypeParam": [],
"BeginTime": "2022-04-25 04:00:00",
"EndTime": "2022-06-21 04:00:00",
"MinPlayerLevel": 1,
"MaxPlayerLevel": 24,
"UnlockMission": 1000510,
"IsShowDayTime": false,
"SortWeight": 1100,
"TabName": {
"hash": 1799250103
},
"TitleName": {
"hash": 1799250103
},
"PanelDesc": {
"hash": 371857150
},
"GraphImagePath": "",
"BGImagePath": "",
"PageBGImagePath": "",
"ScheduleDataID": 510013,
"TabIcon": "SpriteOutput/UI/Quest/BtnQuestNewbieMission.png",
"TagDesc": {
"hash": 371857150
},
"IntroDesc": {
"hash": 371857150
}
}
}

View file

@ -0,0 +1,10 @@
{
"10008": {
"ID": 10008,
"AvatarID": 1103,
"GotoID": 203,
"QuestList": [
1001269
]
}
}

View file

@ -0,0 +1,326 @@
{
"1001": {
"ID": 1001,
"AvatarID": 1001,
"PlayerName": "AvatarName_1001",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Mar_7th_00/Player_Maid_Mar_7th_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Mar_7th_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1001.png",
"MazeSkillIdList": [
100101,
100102
]
},
"1002": {
"ID": 1002,
"AvatarID": 1002,
"PlayerName": "AvatarName_1002",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/DanHeng_00/Player_Lad_DanHeng_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_DanHeng_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1002.png",
"MazeSkillIdList": [
100201,
100202
]
},
"1003": {
"ID": 1003,
"AvatarID": 1003,
"PlayerName": "AvatarName_1003",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Himeko_00/Player_Lady_Himeko_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Himeko_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1003.png",
"MazeSkillIdList": [
100301,
100302
]
},
"1004": {
"ID": 1004,
"AvatarID": 1004,
"PlayerName": "AvatarName_1004",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Welt_00/Player_Male_Welt_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Welt_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1004.png",
"MazeSkillIdList": [
100401,
100402
]
},
"1005": {
"ID": 1005,
"AvatarID": 1005,
"PlayerName": "AvatarName_1005",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Kafka_00/Player_Lady_Kafka_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Kafka_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1005.png",
"MazeSkillIdList": [
100501,
100502
]
},
"1006": {
"ID": 1006,
"AvatarID": 1006,
"PlayerName": "AvatarName_1006",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Silwolf_00/Player_Girl_Silwolf_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Silwolf_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1006.png",
"MazeSkillIdList": [
100601,
100602
]
},
"1008": {
"ID": 1008,
"AvatarID": 1008,
"PlayerName": "AvatarName_1008",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Arlan_00/Player_Boy_Arlan_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Arlan_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1008.png",
"MazeSkillIdList": [
100801,
100802
]
},
"1009": {
"ID": 1009,
"AvatarID": 1009,
"PlayerName": "AvatarName_1009",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Asta_00/Player_Maid_Asta_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Asta_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1009.png",
"MazeSkillIdList": [
100901,
100902
]
},
"1013": {
"ID": 1013,
"AvatarID": 1013,
"PlayerName": "AvatarName_1013",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Herta_00/Player_Girl_Herta_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Herta_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1013.png",
"MazeSkillIdList": [
101301,
101302
]
},
"1101": {
"ID": 1101,
"AvatarID": 1101,
"PlayerName": "AvatarName_1101",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Bronya_00/Player_Maid_Bronya_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Bronya_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1101.png",
"MazeSkillIdList": [
110101,
110102
]
},
"1102": {
"ID": 1102,
"AvatarID": 1102,
"PlayerName": "AvatarName_1102",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Seele_00/Player_Maid_Seele_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Seele_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1102.png",
"MazeSkillIdList": [
110201,
110202
]
},
"1103": {
"ID": 1103,
"AvatarID": 1103,
"PlayerName": "AvatarName_1103",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Serval_00/Player_Lady_Serval_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Serval_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1103.png",
"MazeSkillIdList": [
110301,
110302
]
},
"1104": {
"ID": 1104,
"AvatarID": 1104,
"PlayerName": "AvatarName_1104",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Gepard_00/Player_Male_Gepard_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Gepard_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1104.png",
"MazeSkillIdList": [
110401,
110402
]
},
"1105": {
"ID": 1105,
"AvatarID": 1105,
"PlayerName": "AvatarName_1105",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Natasha_00/Player_Lady_Natasha_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Natasha_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1105.png",
"MazeSkillIdList": [
110501,
110502
]
},
"1106": {
"ID": 1106,
"AvatarID": 1106,
"PlayerName": "AvatarName_1106",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Pela_00/Player_Girl_Pela_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Pela_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1106.png",
"MazeSkillIdList": [
110601,
110602
]
},
"1107": {
"ID": 1107,
"AvatarID": 1107,
"PlayerName": "AvatarName_1107",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Klara_00/Player_Girl_Klara_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Klara_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1107.png",
"MazeSkillIdList": [
110701,
110702
]
},
"1108": {
"ID": 1108,
"AvatarID": 1108,
"PlayerName": "AvatarName_1108",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Sampo_00/Player_Male_Sampo_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Sampo_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1108.png",
"MazeSkillIdList": [
110801,
110802
]
},
"1109": {
"ID": 1109,
"AvatarID": 1109,
"PlayerName": "AvatarName_1109",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Hook_00/Player_Kid_Hook_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Hook_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1109.png",
"MazeSkillIdList": [
110901,
110902
]
},
"1203": {
"ID": 1203,
"AvatarID": 1203,
"PlayerName": "AvatarName_1203",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Luocha_00/Player_Male_Luocha_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Luocha_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1203.png",
"MazeSkillIdList": [
120301,
120302
]
},
"1204": {
"ID": 1204,
"AvatarID": 1204,
"PlayerName": "AvatarName_1204",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/JingYuan_00/Player_Male_JingYuan_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_JingYuan_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1204.png",
"MazeSkillIdList": [
120401,
120402
]
},
"1205": {
"ID": 1205,
"AvatarID": 1205,
"PlayerName": "AvatarName_1205",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Ren_00/Player_Male_Ren_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Ren_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1205.png",
"MazeSkillIdList": [
120501,
120502
]
},
"1206": {
"ID": 1206,
"AvatarID": 1206,
"PlayerName": "AvatarName_1206",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Sushang_00/Player_Maid_Sushang_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_Sushang_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1206.png",
"MazeSkillIdList": [
120601,
120602
]
},
"8001": {
"ID": 8001,
"AvatarID": 8001,
"PlayerName": "AvatarName_8001",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/PlayerBoy_00/Player_Lad_PlayerBoy_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_PlayerBoy_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/8001.png",
"MazeSkillIdList": [
800101,
800102
]
},
"8002": {
"ID": 8002,
"AvatarID": 8002,
"PlayerName": "AvatarName_8002",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/PlayerGirl_00/Player_Miss_PlayerGirl_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_PlayerGirl_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/8002.png",
"MazeSkillIdList": [
800201,
800202
]
},
"8003": {
"ID": 8003,
"AvatarID": 8003,
"PlayerName": "AvatarName_8003",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/PlayerBoy_10/Player_Lad_PlayerBoy_10.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_PlayerBoy_10_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/8003.png",
"MazeSkillIdList": [
800301,
800302
]
},
"8004": {
"ID": 8004,
"AvatarID": 8004,
"PlayerName": "AvatarName_8004",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/PlayerGirl_10/Player_Miss_PlayerGirl_10.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_PlayerGirl_10_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/8004.png",
"MazeSkillIdList": [
800401,
800402
]
},
"9998": {
"ID": 9998,
"AvatarID": 9998,
"PlayerName": "AvatarName_9998",
"PlayerPrefabPath": "Characters/CharacterPrefabs/Player/Pela_00/Player_Test_00.prefab",
"PlayerJsonPath": "Config/ConfigCharacter/LocalPlayer/LocalPlayer_QA_00_Config.json",
"DefaultAvatarHeadIconPath": "SpriteOutput/AvatarIconTeam/1106.png",
"MazeSkillIdList": [
999801,
999802
]
}
}

View file

@ -0,0 +1,34 @@
{
"cn": {
"AudioLanguageKey": "cn",
"ShowString": {
"hash": 875924975
},
"AudioTrackIndex": 0,
"WwiseLanguageKey": "Chinese(PRC)"
},
"en": {
"AudioLanguageKey": "en",
"ShowString": {
"hash": -374251478
},
"AudioTrackIndex": 1,
"WwiseLanguageKey": "English"
},
"jp": {
"AudioLanguageKey": "jp",
"ShowString": {
"hash": -1391003685
},
"AudioTrackIndex": 2,
"WwiseLanguageKey": "Japanese"
},
"kr": {
"AudioLanguageKey": "kr",
"ShowString": {
"hash": -1597323374
},
"AudioTrackIndex": 3,
"WwiseLanguageKey": "Korean"
}
}

View file

@ -0,0 +1,45 @@
{
"cn:0": {
"Area": "cn",
"Type": 0,
"LanguageList": [
"cn"
],
"DefaultLanguage": "cn"
},
"os:0": {
"Area": "os",
"Type": 0,
"LanguageList": [
"cht",
"en",
"kr",
"jp",
"es",
"ru",
"th",
"vi",
"id"
],
"DefaultLanguage": "en"
},
"cn:1": {
"Area": "cn",
"Type": 1,
"LanguageList": [
"cn"
],
"DefaultLanguage": "cn"
},
"os:1": {
"Area": "os",
"Type": 1,
"LanguageList": [
"cn",
"en",
"kr",
"jp"
],
"DefaultLanguage": "en"
}
}

View file

@ -0,0 +1,142 @@
{
"cn": {
"TextLanguageKey": "cn",
"SDKkey": "zh-cn",
"LanguageType": 1,
"ShowString": {
"hash": 633642276
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/CN_Partial_20/cn_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/CN/cn_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_CN_White.png",
"LanguageCultureCode": "zh-CN"
},
"cht": {
"TextLanguageKey": "cht",
"SDKkey": "zh-tw",
"LanguageType": 2,
"ShowString": {
"hash": -2136827345
},
"Font": "SpriteOutput/UI/Fonts/RPG_TR.ttf",
"FontName": "RPG_TR",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/CHT_Partial_20/cht_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/CHT/cht_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_TC_White.png",
"LanguageCultureCode": "zh-TW"
},
"en": {
"TextLanguageKey": "en",
"SDKkey": "en",
"LanguageType": 3,
"ShowString": {
"hash": 1782768777
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/EN_Partial_20/en_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/EN/en_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "en-US"
},
"kr": {
"TextLanguageKey": "kr",
"SDKkey": "ko",
"LanguageType": 4,
"ShowString": {
"hash": -595256385
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/KR_Partial_20/kr_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/KR/kr_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_KR_White.png",
"LanguageCultureCode": "ko-KR"
},
"jp": {
"TextLanguageKey": "jp",
"SDKkey": "ja",
"LanguageType": 5,
"ShowString": {
"hash": 317185992
},
"Font": "SpriteOutput/UI/Fonts/RPG_JP.ttf",
"FontName": "RPG_JP",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/JP_Partial_20/jp_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/JP/jp_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_JP_White.png",
"LanguageCultureCode": "ja-JP"
},
"es": {
"TextLanguageKey": "es",
"SDKkey": "es",
"LanguageType": 8,
"ShowString": {
"hash": -755645786
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/ES_Partial_20/es_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/ES/es_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "es-MX"
},
"ru": {
"TextLanguageKey": "ru",
"SDKkey": "ru",
"LanguageType": 10,
"ShowString": {
"hash": 746042362
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/RU_Partial_20/ru_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/RU/ru_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "ru-RU"
},
"th": {
"TextLanguageKey": "th",
"SDKkey": "th",
"LanguageType": 11,
"ShowString": {
"hash": -363821157
},
"Font": "SpriteOutput/UI/Fonts/RPG_TH.ttf",
"FontName": "RPG_TH",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/TH_Partial_20/th_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/TH/th_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "th-TH"
},
"vi": {
"TextLanguageKey": "vi",
"SDKkey": "vi",
"LanguageType": 12,
"ShowString": {
"hash": -368945552
},
"Font": "SpriteOutput/UI/Fonts/RPG_VI.ttf",
"FontName": "RPG_VI",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/VI_Partial_20/vi_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/VI/vi_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "vi-VN"
},
"id": {
"TextLanguageKey": "id",
"SDKkey": "id",
"LanguageType": 13,
"ShowString": {
"hash": 12093101
},
"Font": "SpriteOutput/UI/Fonts/RPG_CN.ttf",
"FontName": "RPG_CN",
"SDFPath": "SpriteOutput/UI/Fonts/SDFFonts/ID_Partial_20/id_0.asset",
"PCSDFPath": "SpriteOutput/UI/Fonts/SDFFonts/PC/ID/id_0.asset",
"LogoImgPath": "SpriteOutput/UI/Login/LOGO/LogoCB1_EN_White.png",
"LanguageCultureCode": "id-ID"
}
}

View file

@ -0,0 +1,14 @@
{
"1": {
"Mode": 1,
"ActionBegin": 0,
"ActionBeginAdvantage": 1,
"ActionBeginHighThreat": 1,
"ReceiveHealing": 0,
"ReceiveBuff": 1,
"Revived": 0,
"UltraReady": 0,
"LightHit": 1,
"StandBy": 0
}
}

View file

@ -0,0 +1,122 @@
{
"Warrior": {
"ID": "Warrior",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarrior.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionWarriorSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionWarriorSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Warrior.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionWarriorSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarrior.png",
"BaseTypeText": {
"hash": 209078842
},
"BaseTypeDesc": {
"hash": -344124517
}
},
"Rogue": {
"ID": "Rogue",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsRogue.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionRogueSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionRogueSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Rouge.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionRogueSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsRogue.png",
"BaseTypeText": {
"hash": 612363369
},
"BaseTypeDesc": {
"hash": -1910208458
}
},
"Mage": {
"ID": "Mage",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsnMage.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionMageSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_IconProfessionMageSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Mage.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionMageSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsnMage.png",
"BaseTypeText": {
"hash": -953720572
},
"BaseTypeDesc": {
"hash": 818674897
}
},
"Shaman": {
"ID": "Shaman",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsShaman.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionShamanSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionShamanSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Shaman.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionShamanSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsShaman.png",
"BaseTypeText": {
"hash": -194205685
},
"BaseTypeDesc": {
"hash": -1103639404
}
},
"Warlock": {
"ID": "Warlock",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarlock.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionWarlockSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionWarLockSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Warlock.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionWarlockSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarlock.png",
"BaseTypeText": {
"hash": -1760289626
},
"BaseTypeDesc": {
"hash": 1625243951
}
},
"Knight": {
"ID": "Knight",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsKnight.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionKnightSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_IconProfessionKnightSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Knight.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionKnightSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsKnight.png",
"BaseTypeText": {
"hash": -1357005099
},
"BaseTypeDesc": {
"hash": 59160010
}
},
"Priest": {
"ID": "Priest",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsPirest.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionPirestSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionPirestSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Pirest.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionPirestSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsPirest.png",
"BaseTypeText": {
"hash": 1371878256
},
"BaseTypeDesc": {
"hash": -1506923931
}
},
"Unknown": {
"ID": "Unknown",
"BaseTypeIcon": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarrior.png",
"BaseTypeIconSmall": "SpriteOutput/ProfessionIconSmall/IconProfessionWarriorSmall.png",
"EquipmentLightMatPath": "UI/UI_Texture/System/ProfessionalLight/UI_ProfessionWarriorSmall.png",
"Equipment3DTgaPath": "UI/UI3D/LightCone/_dependencies/Textures/Professionlightcone3d/LightCore_Pirest.tga",
"BaseTypeIconPathTalk": "SpriteOutput/TalkIcon/ProfessionIcon/IconProfessionWarriorSmall.png",
"BgPath": "SpriteOutput/AvatarProfessionTattoo/Profession/BgPathsWarrior.png",
"BaseTypeText": {
"hash": 1775162783
},
"BaseTypeDesc": {
"hash": 1221959424
}
}
}

View file

@ -0,0 +1,17 @@
{
"1": {
"ID": 1,
"IconPath": "SpriteOutput/UI/Avatar/IconAvatarDetail.png",
"TabName": "AvatarPageName_Detail"
},
"2": {
"ID": 2,
"IconPath": "SpriteOutput/UI/Avatar/IconAvatarPaths.png",
"TabName": "AvatarPageName_SkillTree"
},
"3": {
"ID": 3,
"IconPath": "SpriteOutput/UI/Avatar/IconAvatarLightCone.png",
"TabName": "AvatarPageName_Equipment"
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,14 @@
{
"211": {
"ItemID": 211,
"Exp": 1000
},
"212": {
"ItemID": 212,
"Exp": 5000
},
"213": {
"ItemID": 213,
"Exp": 20000
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,733 @@
{
"MaxHP": {
"PropertyType": "MaxHP",
"PropertyName": {
"hash": -1544419067
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1544419067
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 1,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconMaxHP.png"
},
"Attack": {
"PropertyType": "Attack",
"PropertyName": {
"hash": -1194485631
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1194485631
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 2,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconAttack.png"
},
"Defence": {
"PropertyType": "Defence",
"PropertyName": {
"hash": -615378225
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -615378225
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 3,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconDefence.png"
},
"Speed": {
"PropertyType": "Speed",
"PropertyName": {
"hash": 461357812
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": 461357812
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 4,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconSpeed.png"
},
"CriticalChance": {
"PropertyType": "CriticalChance",
"PropertyName": {
"hash": 528301800
},
"PropertyNameSkillTree": {
"hash": -242785393
},
"PropertyNameRelic": {
"hash": 528301800
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 5,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconCriticalChance.png"
},
"CriticalDamage": {
"PropertyType": "CriticalDamage",
"PropertyName": {
"hash": -220753499
},
"PropertyNameSkillTree": {
"hash": 475799362
},
"PropertyNameRelic": {
"hash": -220753499
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 6,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconCriticalDamage.png"
},
"HealRatio": {
"PropertyType": "HealRatio",
"PropertyName": {
"hash": 799727458
},
"PropertyNameSkillTree": {
"hash": 1688162395
},
"PropertyNameRelic": {
"hash": 799727458
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 7,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconHealRatio.png"
},
"StanceBreakAddedRatio": {
"PropertyType": "StanceBreakAddedRatio",
"PropertyName": {
"hash": 1965107273
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": 1965107273
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 8,
"IconPath": "0"
},
"SPRatio": {
"PropertyType": "SPRatio",
"PropertyName": {
"hash": -1155541365
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1155541365
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 9,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconHealRatio.png"
},
"StatusProbability": {
"PropertyType": "StatusProbability",
"PropertyName": {
"hash": 284076746
},
"PropertyNameSkillTree": {
"hash": 747727875
},
"PropertyNameRelic": {
"hash": 284076746
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 10,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconStatusProbability.png"
},
"StatusResistance": {
"PropertyType": "StatusResistance",
"PropertyName": {
"hash": -952827954
},
"PropertyNameSkillTree": {
"hash": -613602727
},
"PropertyNameRelic": {
"hash": -952827954
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 11,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconStatusResistance.png"
},
"PhysicalAddedRatio": {
"PropertyType": "PhysicalAddedRatio",
"PropertyName": {
"hash": -950888303
},
"PropertyNameSkillTree": {
"hash": 1673644670
},
"PropertyNameRelic": {
"hash": -950888303
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 12,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconPhysicalAddedRatio.png"
},
"PhysicalResistance": {
"PropertyType": "PhysicalResistance",
"PropertyName": {
"hash": 214654939
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": 214654939
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 13,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconPhysicalResistanceDelta.png"
},
"FireAddedRatio": {
"PropertyType": "FireAddedRatio",
"PropertyName": {
"hash": 1202183228
},
"PropertyNameSkillTree": {
"hash": 1846223231
},
"PropertyNameRelic": {
"hash": 1202183228
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 14,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconFireAddedRatio.png"
},
"FireResistance": {
"PropertyType": "FireResistance",
"PropertyName": {
"hash": -757342856
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -757342856
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 15,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconFireResistanceDelta.png"
},
"IceAddedRatio": {
"PropertyType": "IceAddedRatio",
"PropertyName": {
"hash": 1448585423
},
"PropertyNameSkillTree": {
"hash": 299673192
},
"PropertyNameRelic": {
"hash": 1448585423
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 16,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconIceAddedRatio.png"
},
"IceResistance": {
"PropertyType": "IceResistance",
"PropertyName": {
"hash": -1877242639
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1877242639
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 17,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconIceResistanceDelta.png"
},
"ThunderAddedRatio": {
"PropertyType": "ThunderAddedRatio",
"PropertyName": {
"hash": 235195444
},
"PropertyNameSkillTree": {
"hash": 907095083
},
"PropertyNameRelic": {
"hash": 235195444
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 18,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconThunderAddedRatio.png"
},
"ThunderResistance": {
"PropertyType": "ThunderResistance",
"PropertyName": {
"hash": -567551348
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -567551348
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 19,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconThunderResistanceDelta.png"
},
"WindAddedRatio": {
"PropertyType": "WindAddedRatio",
"PropertyName": {
"hash": 2017136070
},
"PropertyNameSkillTree": {
"hash": -1997411121
},
"PropertyNameRelic": {
"hash": 2017136070
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 20,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconWindAddedRatio.png"
},
"WindResistance": {
"PropertyType": "WindResistance",
"PropertyName": {
"hash": -1179693530
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1179693530
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 21,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconWindResistanceDelta.png"
},
"QuantumAddedRatio": {
"PropertyType": "QuantumAddedRatio",
"PropertyName": {
"hash": 1819458027
},
"PropertyNameSkillTree": {
"hash": -1441211386
},
"PropertyNameRelic": {
"hash": 1819458027
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 22,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconQuantumAddedRatio.png"
},
"QuantumResistance": {
"PropertyType": "QuantumResistance",
"PropertyName": {
"hash": -1565797131
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": -1565797131
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 23,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconQuantumResistanceDelta.png"
},
"ImaginaryAddedRatio": {
"PropertyType": "ImaginaryAddedRatio",
"PropertyName": {
"hash": 1031064451
},
"PropertyNameSkillTree": {
"hash": -1248895778
},
"PropertyNameRelic": {
"hash": 1031064451
},
"IsRelicFilter": true,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 24,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconImaginaryAddedRatio.png"
},
"ImaginaryResistance": {
"PropertyType": "ImaginaryResistance",
"PropertyName": {
"hash": 512338013
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": 512338013
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 25,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconImaginaryResistanceDelta.png"
},
"BaseHP": {
"PropertyType": "BaseHP",
"PropertyName": {
"hash": -1633266744
},
"PropertyNameSkillTree": {
"hash": -2049337893
},
"PropertyNameRelic": {
"hash": -2049337893
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 26,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconMaxHP.png"
},
"HPDelta": {
"PropertyType": "HPDelta",
"PropertyName": {
"hash": -2062625823
},
"PropertyNameSkillTree": {
"hash": -1207493856
},
"PropertyNameRelic": {
"hash": 1661327008
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 27,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconMaxHP.png"
},
"HPAddedRatio": {
"PropertyType": "HPAddedRatio",
"PropertyName": {
"hash": -1346382812
},
"PropertyNameSkillTree": {
"hash": 831717191
},
"PropertyNameRelic": {
"hash": 1661327008
},
"IsRelicFilter": true,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 28,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconMaxHP.png"
},
"BaseAttack": {
"PropertyType": "BaseAttack",
"PropertyName": {
"hash": 481327068
},
"PropertyNameSkillTree": {
"hash": 179569395
},
"PropertyNameRelic": {
"hash": 179569395
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 29,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconAttack.png"
},
"AttackDelta": {
"PropertyType": "AttackDelta",
"PropertyName": {
"hash": -1283504019
},
"PropertyNameSkillTree": {
"hash": -1243590640
},
"PropertyNameRelic": {
"hash": 2001888886
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 30,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconAttack.png"
},
"AttackAddedRatio": {
"PropertyType": "AttackAddedRatio",
"PropertyName": {
"hash": 1352443712
},
"PropertyNameSkillTree": {
"hash": 92176903
},
"PropertyNameRelic": {
"hash": 2001888886
},
"IsRelicFilter": true,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 31,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconAttack.png"
},
"BaseDefence": {
"PropertyType": "BaseDefence",
"PropertyName": {
"hash": 488486100
},
"PropertyNameSkillTree": {
"hash": 821549929
},
"PropertyNameRelic": {
"hash": 821549929
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 32,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconDefence.png"
},
"DefenceDelta": {
"PropertyType": "DefenceDelta",
"PropertyName": {
"hash": -554844301
},
"PropertyNameSkillTree": {
"hash": 740343068
},
"PropertyNameRelic": {
"hash": -412481970
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 33,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconDefence.png"
},
"DefenceAddedRatio": {
"PropertyType": "DefenceAddedRatio",
"PropertyName": {
"hash": 949399850
},
"PropertyNameSkillTree": {
"hash": 1015286041
},
"PropertyNameRelic": {
"hash": -412481970
},
"IsRelicFilter": true,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 34,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconDefence.png"
},
"BaseSpeed": {
"PropertyType": "BaseSpeed",
"PropertyName": {
"hash": 807271375
},
"PropertyNameSkillTree": {
"hash": -1515739258
},
"PropertyNameRelic": {
"hash": 461357812
},
"IsRelicFilter": true,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 35,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconSpeed.png"
},
"HealTakenRatio": {
"PropertyType": "HealTakenRatio",
"PropertyName": {
"hash": -56670514
},
"PropertyNameSkillTree": {
"hash": 371857150
},
"PropertyNameRelic": {
"hash": 799727458
},
"IsRelicFilter": false,
"IsDisplay": false,
"isBattleDisplay": false,
"Order": 36,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconHealRatio.png"
},
"PhysicalResistanceDelta": {
"PropertyType": "PhysicalResistanceDelta",
"PropertyName": {
"hash": 214654939
},
"PropertyNameSkillTree": {
"hash": 657619096
},
"PropertyNameRelic": {
"hash": 214654939
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 37,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconPhysicalResistanceDelta.png"
},
"FireResistanceDelta": {
"PropertyType": "FireResistanceDelta",
"PropertyName": {
"hash": -757342856
},
"PropertyNameSkillTree": {
"hash": 670685577
},
"PropertyNameRelic": {
"hash": -757342856
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 38,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconFireResistanceDelta.png"
},
"IceResistanceDelta": {
"PropertyType": "IceResistanceDelta",
"PropertyName": {
"hash": -1877242639
},
"PropertyNameSkillTree": {
"hash": 1284989126
},
"PropertyNameRelic": {
"hash": -1877242639
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 39,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconIceResistanceDelta.png"
},
"ThunderResistanceDelta": {
"PropertyType": "ThunderResistanceDelta",
"PropertyName": {
"hash": -567551348
},
"PropertyNameSkillTree": {
"hash": 322345645
},
"PropertyNameRelic": {
"hash": -567551348
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 40,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconThunderResistanceDelta.png"
},
"WindResistanceDelta": {
"PropertyType": "WindResistanceDelta",
"PropertyName": {
"hash": -1179693530
},
"PropertyNameSkillTree": {
"hash": 1319137209
},
"PropertyNameRelic": {
"hash": -1179693530
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 41,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconWindResistanceDelta.png"
},
"QuantumResistanceDelta": {
"PropertyType": "QuantumResistanceDelta",
"PropertyName": {
"hash": -1565797131
},
"PropertyNameSkillTree": {
"hash": 1691079300
},
"PropertyNameRelic": {
"hash": -1565797131
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 42,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconQuantumResistanceDelta.png"
},
"ImaginaryResistanceDelta": {
"PropertyType": "ImaginaryResistanceDelta",
"PropertyName": {
"hash": 512338013
},
"PropertyNameSkillTree": {
"hash": -1527106884
},
"PropertyNameRelic": {
"hash": 512338013
},
"IsRelicFilter": false,
"IsDisplay": true,
"isBattleDisplay": true,
"Order": 43,
"IconPath": "SpriteOutput/UI/Avatar/Icon/IconImaginaryResistanceDelta.png"
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,27 @@
{
"1": {
"ID": 1,
"RarityIconPath": "SpriteOutput/AvatarIcon/UISprite/IconRarityB.png",
"RarityName": "D"
},
"2": {
"ID": 2,
"RarityIconPath": "SpriteOutput/AvatarIcon/UISprite/IconRarityB.png",
"RarityName": "C"
},
"3": {
"ID": 3,
"RarityIconPath": "SpriteOutput/AvatarIcon/UISprite/IconRarityB.png",
"RarityName": "B"
},
"4": {
"ID": 4,
"RarityIconPath": "SpriteOutput/AvatarIcon/UISprite/IconRarityA.png",
"RarityName": "A"
},
"5": {
"ID": 5,
"RarityIconPath": "SpriteOutput/AvatarIcon/UISprite/IconRarityS.png",
"RarityName": "S"
}
}

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,326 @@
{
"mar7th": {
"VOTag": "mar7th",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"danheng": {
"VOTag": "danheng",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"himeko": {
"VOTag": "himeko",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"welt": {
"VOTag": "welt",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"asta": {
"VOTag": "asta",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"bronya": {
"VOTag": "bronya",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"seele": {
"VOTag": "seele",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"gepard": {
"VOTag": "gepard",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"natasha": {
"VOTag": "natasha",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"pela": {
"VOTag": "pela",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"clara": {
"VOTag": "clara",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"sampo": {
"VOTag": "sampo",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"hook": {
"VOTag": "hook",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 0
},
"serval": {
"VOTag": "serval",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"kafka": {
"VOTag": "kafka",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"silverwolf": {
"VOTag": "silverwolf",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"arlan": {
"VOTag": "arlan",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"herta": {
"VOTag": "herta",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"playerboy": {
"VOTag": "playerboy",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 0,
"LightHit": 100,
"StandBy": 100
},
"playergirl": {
"VOTag": "playergirl",
"ActionBegin": 100,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 0,
"LightHit": 100,
"StandBy": 100
},
"playerboy2": {
"VOTag": "playerboy2",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"playergirl2": {
"VOTag": "playergirl2",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"luocha": {
"VOTag": "luocha",
"ActionBegin": 0,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 0,
"ReceiveBuff": 0,
"Revived": 0,
"UltraReady": 0,
"LightHit": 0,
"StandBy": 0
},
"jingyuan": {
"VOTag": "jingyuan",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"blade": {
"VOTag": "blade",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"sushang": {
"VOTag": "sushang",
"ActionBegin": 100,
"ActionBeginAdvantage": 100,
"ActionBeginHighThreat": 100,
"ReceiveHealing": 100,
"ReceiveBuff": 0,
"Revived": 100,
"UltraReady": 100,
"LightHit": 100,
"StandBy": 100
},
"test": {
"VOTag": "test",
"ActionBegin": 0,
"ActionBeginAdvantage": 0,
"ActionBeginHighThreat": 0,
"ReceiveHealing": 0,
"ReceiveBuff": 0,
"Revived": 0,
"UltraReady": 0,
"LightHit": 0,
"StandBy": 0
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,99 @@
{
"Default:1": {
"ContextName": "Default",
"ZoomType": 1,
"ActionNameList": [
"Menu_Confirm",
"Menu_Cancel"
]
},
"BattleGamePageContext:1": {
"ContextName": "BattleGamePageContext",
"ZoomType": 1,
"ActionNameList": [
"Battle_TriggerUltra",
"Battle_SelectTargetLeft",
"Battle_SelectTargetRight",
"Battle_SkillSelect",
"Battle_SkillRelease"
]
},
"TownMainPage:1": {
"ContextName": "TownMainPage",
"ZoomType": 1,
"ActionNameList": [
"Maze_Phone",
"Maze_MouseOperating",
"Maze_Job"
]
},
"MazeMainPage:1": {
"ContextName": "MazeMainPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_Bag",
"Maze_Map",
"Maze_MouseOperating"
]
},
"RoomMainPage:1": {
"ContextName": "RoomMainPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_Bag",
"Maze_Map",
"Maze_MouseOperating"
]
},
"TrainMainPage:1": {
"ContextName": "TrainMainPage",
"ZoomType": 1,
"ActionNameList": [
"Maze_Avatar",
"Maze_Phone",
"Maze_Team",
"Maze_MouseOperating"
]
},
"ChallengeMainPage:1": {
"ContextName": "ChallengeMainPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_MouseOperating"
]
},
"RogueMapPage:1": {
"ContextName": "RogueMapPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_MouseOperating"
]
},
"FarmRelicMainPage:1": {
"ContextName": "FarmRelicMainPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_MouseOperating"
]
},
"RaidMainPage:1": {
"ContextName": "RaidMainPage",
"ZoomType": 1,
"ActionNameList": [
"Menu_MazeEnemyDetail",
"Maze_MouseOperating"
]
},
"ClientMainPage:1": {
"ContextName": "ClientMainPage",
"ZoomType": 1,
"ActionNameList": [
"Maze_MouseOperating"
]
}
}

View file

@ -0,0 +1,86 @@
{
"5001": {
"ChallengeID": 5001,
"ScheduleDataID": 705001,
"MonsterList": [
1022020,
1023010,
8003020,
1022020
],
"ScoringGroupID": 5001,
"IconPath": "SpriteOutput/UI/Quest/Challenge/FrozenIcon.png"
},
"5002": {
"ChallengeID": 5002,
"ScheduleDataID": 705002,
"MonsterList": [
1003010,
1003010
],
"ScoringGroupID": 5002,
"IconPath": "SpriteOutput/UI/Quest/Challenge/PursuitIcon.png"
},
"5003": {
"ChallengeID": 5003,
"ScheduleDataID": 705003,
"MonsterList": [
1013020,
1013010
],
"ScoringGroupID": 5003,
"IconPath": "SpriteOutput/UI/Quest/Challenge/FinalIcon.png"
},
"5004": {
"ChallengeID": 5004,
"ScheduleDataID": 705004,
"MonsterList": [
1012010,
1014010,
1012010
],
"ScoringGroupID": 5004,
"IconPath": "SpriteOutput/UI/Quest/Challenge/ContinueDamgeIcon.png"
},
"5005": {
"ChallengeID": 5005,
"ScheduleDataID": 705005,
"MonsterList": [
8013010,
8013010
],
"ScoringGroupID": 5005,
"IconPath": "SpriteOutput/UI/Quest/Challenge/ShieldIcon.png"
},
"5006": {
"ChallengeID": 5006,
"ScheduleDataID": 705006,
"MonsterList": [
1022010,
1004010,
1022010
],
"ScoringGroupID": 5006,
"IconPath": "SpriteOutput/UI/Quest/Challenge/ContinueOperationIcon.png"
},
"5007": {
"ChallengeID": 5007,
"ScheduleDataID": 705007,
"MonsterList": [
8003010,
1023010
],
"ScoringGroupID": 5007,
"IconPath": "SpriteOutput/UI/Quest/Challenge/BackWaterIcon.png"
},
"5008": {
"ChallengeID": 5008,
"ScheduleDataID": 705008,
"MonsterList": [
8003030,
8003030
],
"ScoringGroupID": 5008,
"IconPath": "SpriteOutput/UI/Quest/Challenge/CriticalStrikeIcon.png"
}
}

View file

@ -0,0 +1,68 @@
{
"10012001": {
"ActivityRewardID": 10012001,
"RewardIconPath": "",
"Count": 8000,
"Reward": 3100001
},
"10012002": {
"ActivityRewardID": 10012002,
"RewardIconPath": "",
"Count": 16000,
"Reward": 3100002
},
"10012003": {
"ActivityRewardID": 10012003,
"RewardIconPath": "",
"Count": 24000,
"Reward": 3100003
},
"10012004": {
"ActivityRewardID": 10012004,
"RewardIconPath": "",
"Count": 32000,
"Reward": 3100004
},
"10012005": {
"ActivityRewardID": 10012005,
"RewardIconPath": "",
"Count": 40000,
"Reward": 3100005
},
"10012006": {
"ActivityRewardID": 10012006,
"RewardIconPath": "",
"Count": 48000,
"Reward": 3100006
},
"10012007": {
"ActivityRewardID": 10012007,
"RewardIconPath": "",
"Count": 56000,
"Reward": 3100007
},
"10012008": {
"ActivityRewardID": 10012008,
"RewardIconPath": "",
"Count": 64000,
"Reward": 3100008
},
"10012009": {
"ActivityRewardID": 10012009,
"RewardIconPath": "",
"Count": 72000,
"Reward": 3100009
},
"10012010": {
"ActivityRewardID": 10012010,
"RewardIconPath": "",
"Count": 80000,
"Reward": 3100010
},
"10012011": {
"ActivityRewardID": 10012011,
"RewardIconPath": "",
"Count": 88000,
"Reward": 3100011
}
}

View file

@ -0,0 +1,37 @@
{
"1": {
"NatureID": 1,
"NatureType": "NatureNone",
"SpritePath": "SpriteOutput/UI/Nature/Nature_None.png"
},
"2": {
"NatureID": 2,
"NatureType": "Biologic",
"SpritePath": "SpriteOutput/UI/Nature/IconNatureBiologic.png"
},
"3": {
"NatureID": 3,
"NatureType": "Mechanoid",
"SpritePath": "SpriteOutput/UI/Nature/IconNatureMega.png"
},
"4": {
"NatureID": 4,
"NatureType": "Psychic",
"SpritePath": "SpriteOutput/UI/Nature/IconNaturePhychic.png"
},
"5": {
"NatureID": 5,
"NatureType": "Quantum",
"SpritePath": "SpriteOutput/UI/Nature/IconNatureQuantum.png"
},
"6": {
"NatureID": 6,
"NatureType": "Imaginary",
"SpritePath": "SpriteOutput/UI/Nature/IconNatureImaginary.png"
},
"7": {
"NatureID": 7,
"NatureType": "Chaos",
"SpritePath": "SpriteOutput/UI/Nature/IconNatureChaos.png"
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,14 @@
{
"101": {
"CommonActiveSkillID": 101,
"AbilityName": "CommonActiveSkill_Fire_Single_Phase02"
},
"102": {
"CommonActiveSkillID": 102,
"AbilityName": ""
},
"103": {
"CommonActiveSkillID": 103,
"AbilityName": ""
}
}

View file

@ -0,0 +1,98 @@
{
"UseLess": {
"ConstValueName": "UseLess",
"Value": "1"
},
"CheckServerStatusInterval": {
"ConstValueName": "CheckServerStatusInterval",
"Value": "60"
},
"DisplayMaxAvatarPromotion": {
"ConstValueName": "DisplayMaxAvatarPromotion",
"Value": "5"
},
"DisplayMaxEquipmentPromotion": {
"ConstValueName": "DisplayMaxEquipmentPromotion",
"Value": "5"
},
"VTeamCreateConfirmDialog": {
"ConstValueName": "VTeamCreateConfirmDialog",
"Value": "0"
},
"VTeamDelConfirmDialog": {
"ConstValueName": "VTeamDelConfirmDialog",
"Value": "0"
},
"Update_Bounds_Frequency": {
"ConstValueName": "Update_Bounds_Frequency",
"Value": "20"
},
"Update_Bounds_Enable": {
"ConstValueName": "Update_Bounds_Enable",
"Value": "1"
},
"GachaTokenID": {
"ConstValueName": "GachaTokenID",
"Value": "252,251"
},
"GachaShopID": {
"ConstValueName": "GachaShopID",
"Value": "999"
},
"GachaResultDelayTime": {
"ConstValueName": "GachaResultDelayTime",
"Value": "0.15"
},
"GachaConnectDelay": {
"ConstValueName": "GachaConnectDelay",
"Value": "3"
},
"Recharge_Enable": {
"ConstValueName": "Recharge_Enable",
"Value": "0"
},
"Prestige_Reward_LockedLevelLater": {
"ConstValueName": "Prestige_Reward_LockedLevelLater",
"Value": "999999"
},
"SkillMaxLevel": {
"ConstValueName": "SkillMaxLevel",
"Value": "6,10,10,10"
},
"HeroPath_Enable": {
"ConstValueName": "HeroPath_Enable",
"Value": "0"
},
"NPC_Billboard_Fix_Size_Factor": {
"ConstValueName": "NPC_Billboard_Fix_Size_Factor",
"Value": "0.003"
},
"NPC_Billboard_Height_Min": {
"ConstValueName": "NPC_Billboard_Height_Min",
"Value": "-0.15"
},
"NPC_Billboard_Height_Max": {
"ConstValueName": "NPC_Billboard_Height_Max",
"Value": "0.3"
},
"NPC_Billboard_IconContainer_Scale": {
"ConstValueName": "NPC_Billboard_IconContainer_Scale",
"Value": "0.5"
},
"Rank_Shadow_Enable": {
"ConstValueName": "Rank_Shadow_Enable",
"Value": "0"
},
"GachaSkipBegin": {
"ConstValueName": "GachaSkipBegin",
"Value": "1"
},
"GachaSkipEnd": {
"ConstValueName": "GachaSkipEnd",
"Value": "7"
},
"MappingInfo_Track_RangeMin": {
"ConstValueName": "MappingInfo_Track_RangeMin",
"Value": "10"
}
}

View file

@ -0,0 +1,306 @@
{
"Equipment_Exp_Recyle_Ratio": {
"ConstValueName": "Equipment_Exp_Recyle_Ratio",
"Value": "80"
},
"Equipment_Material_Select_Limit": {
"ConstValueName": "Equipment_Material_Select_Limit",
"Value": "4"
},
"Exp_SoftCoin_Cost": {
"ConstValueName": "Exp_SoftCoin_Cost",
"Value": "10"
},
"SimpleTalk_Text_IntervalTime": {
"ConstValueName": "SimpleTalk_Text_IntervalTime",
"Value": "1.5"
},
"SimpleTalk_Voice_IntervalTime": {
"ConstValueName": "SimpleTalk_Voice_IntervalTime",
"Value": "1"
},
"SimpleTalk_ProtectTime": {
"ConstValueName": "SimpleTalk_ProtectTime",
"Value": "15"
},
"Dialogue_Button_CD": {
"ConstValueName": "Dialogue_Button_CD",
"Value": "2"
},
"Prop_Button_CD": {
"ConstValueName": "Prop_Button_CD",
"Value": "1"
},
"FrameItemRarityPath": {
"ConstValueName": "FrameItemRarityPath",
"Value": "SpriteOutput/ItemIcon/Rarity/FrameItemRarity0#1.png"
},
"Equipment_Maximum_Num": {
"ConstValueName": "Equipment_Maximum_Num",
"Value": "2000"
},
"PlayerName_Max": {
"ConstValueName": "PlayerName_Max",
"Value": "14"
},
"Stamina_Auto_Recover_Interval": {
"ConstValueName": "Stamina_Auto_Recover_Interval",
"Value": "360"
},
"Maze_MP_Max": {
"ConstValueName": "Maze_MP_Max",
"Value": "4"
},
"Maze_MP_Init": {
"ConstValueName": "Maze_MP_Init",
"Value": "4"
},
"Maze_MP_Count": {
"ConstValueName": "Maze_MP_Count",
"Value": "4"
},
"Maze_Refresh_CD": {
"ConstValueName": "Maze_Refresh_CD",
"Value": "4"
},
"Maze_Recover_Refresh_CD": {
"ConstValueName": "Maze_Recover_Refresh_CD",
"Value": "600"
},
"Maze_Recover_Refresh_Times": {
"ConstValueName": "Maze_Recover_Refresh_Times",
"Value": "5"
},
"Maze_Recover_Refresh_InitialTimes": {
"ConstValueName": "Maze_Recover_Refresh_InitialTimes",
"Value": "5"
},
"Maze_FastRunRatio": {
"ConstValueName": "Maze_FastRunRatio",
"Value": "1.3"
},
"FrameAvatarDamageTypePath": {
"ConstValueName": "FrameAvatarDamageTypePath",
"Value": "SpriteOutput/ItemIcon/ItemType/FrameItem0%s.png"
},
"FrameAvatarRarityPath": {
"ConstValueName": "FrameAvatarRarityPath",
"Value": "SpriteOutput/ItemIcon/Rarity/FrameIconRarity0%s.png"
},
"Food_SatietyValue_Limit": {
"ConstValueName": "Food_SatietyValue_Limit",
"Value": "5"
},
"Food_SatietyValue_Reduce_PerBattle": {
"ConstValueName": "Food_SatietyValue_Reduce_PerBattle",
"Value": "1"
},
"Food_SatietyValue_Reduce_Interval": {
"ConstValueName": "Food_SatietyValue_Reduce_Interval",
"Value": "300"
},
"Maze_MonsterAlert_DisplayRange": {
"ConstValueName": "Maze_MonsterAlert_DisplayRange",
"Value": "40"
},
"UI_SortMomory_Open": {
"ConstValueName": "UI_SortMomory_Open",
"Value": "1"
},
"TeamName_Max": {
"ConstValueName": "TeamName_Max",
"Value": "14"
},
"TextID_TeamDefaltName": {
"ConstValueName": "TextID_TeamDefaltName",
"Value": "Team_Default_Name_0%d"
},
"Maze_FPS_Upload_Time_Interval": {
"ConstValueName": "Maze_FPS_Upload_Time_Interval",
"Value": "60"
},
"Battle_FPS_Upload_Time_Interval": {
"ConstValueName": "Battle_FPS_Upload_Time_Interval",
"Value": "5"
},
"Story_Skip_Close": {
"ConstValueName": "Story_Skip_Close",
"Value": "1"
},
"Text_Format_Symbol": {
"ConstValueName": "Text_Format_Symbol",
"Value": ",。;:?!’” >》)」』】〕}%…@#$&^*-+•"
},
"HangUpConstTime": {
"ConstValueName": "HangUpConstTime",
"Value": "180"
},
"Combat_Power_Avatar_Base": {
"ConstValueName": "Combat_Power_Avatar_Base",
"Value": "138"
},
"Combat_Power_Avatar_PerLevel": {
"ConstValueName": "Combat_Power_Avatar_PerLevel",
"Value": "12"
},
"Combat_Power_Avatar_PerPromotion": {
"ConstValueName": "Combat_Power_Avatar_PerPromotion",
"Value": "120"
},
"Combat_Power_Avatar_Rarity4": {
"ConstValueName": "Combat_Power_Avatar_Rarity4",
"Value": "1"
},
"Combat_Power_Avatar_Rarity5": {
"ConstValueName": "Combat_Power_Avatar_Rarity5",
"Value": "1.1"
},
"Combat_Power_Avatar_Rank": {
"ConstValueName": "Combat_Power_Avatar_Rank",
"Value": "58"
},
"Combat_Power_PerSkillTree_Level": {
"ConstValueName": "Combat_Power_PerSkillTree_Level",
"Value": "20"
},
"Combat_Power_LightCone_Base": {
"ConstValueName": "Combat_Power_LightCone_Base",
"Value": "38"
},
"Combat_Power_LightCone_PerLevel": {
"ConstValueName": "Combat_Power_LightCone_PerLevel",
"Value": "12"
},
"Combat_Power_LightCone_PerPromotion": {
"ConstValueName": "Combat_Power_LightCone_PerPromotion",
"Value": "140"
},
"Combat_Power_LightCone_Rarity3": {
"ConstValueName": "Combat_Power_LightCone_Rarity3",
"Value": "0.642857"
},
"Combat_Power_LightCone_Rarity4": {
"ConstValueName": "Combat_Power_LightCone_Rarity4",
"Value": "0.821429"
},
"Combat_Power_LightCone_Rarity5": {
"ConstValueName": "Combat_Power_LightCone_Rarity5",
"Value": "1"
},
"Combat_Power_LightCone_SkillPerRank": {
"ConstValueName": "Combat_Power_LightCone_SkillPerRank",
"Value": "0.25"
},
"Combat_Power_LightCone_SkillRarity3": {
"ConstValueName": "Combat_Power_LightCone_SkillRarity3",
"Value": "77.333333"
},
"Combat_Power_LightCone_SkillRarity4": {
"ConstValueName": "Combat_Power_LightCone_SkillRarity4",
"Value": "135.333333"
},
"Combat_Power_LightCone_SkillRarity5": {
"ConstValueName": "Combat_Power_LightCone_SkillRarity5",
"Value": "193.333333"
},
"Combat_Power_Relic_Base": {
"ConstValueName": "Combat_Power_Relic_Base",
"Value": "78.069841"
},
"Combat_Power_Relic_PerLevel": {
"ConstValueName": "Combat_Power_Relic_PerLevel",
"Value": "13.01164"
},
"Combat_Power_Relic_Rarity1": {
"ConstValueName": "Combat_Power_Relic_Rarity1",
"Value": "0.2"
},
"Combat_Power_Relic_Rarity2": {
"ConstValueName": "Combat_Power_Relic_Rarity2",
"Value": "0.4"
},
"Combat_Power_Relic_Rarity3": {
"ConstValueName": "Combat_Power_Relic_Rarity3",
"Value": "0.6"
},
"Combat_Power_Relic_Rarity4": {
"ConstValueName": "Combat_Power_Relic_Rarity4",
"Value": "0.8"
},
"Combat_Power_Relic_Rarity5": {
"ConstValueName": "Combat_Power_Relic_Rarity5",
"Value": "1"
},
"Combat_Power_Relic_SkillSet2": {
"ConstValueName": "Combat_Power_Relic_SkillSet2",
"Value": "78"
},
"Combat_Power_Relic_SkillSet4": {
"ConstValueName": "Combat_Power_Relic_SkillSet4",
"Value": "156"
},
"Combat_Power_Relic_SkillSet5": {
"ConstValueName": "Combat_Power_Relic_SkillSet5",
"Value": "78"
},
"Relic_Bonus_Level": {
"ConstValueName": "Relic_Bonus_Level",
"Value": "3,6,9,12,15"
},
"Relic_Max_SubAffix": {
"ConstValueName": "Relic_Max_SubAffix",
"Value": "4"
},
"Relic_Max_Count": {
"ConstValueName": "Relic_Max_Count",
"Value": "2000"
},
"Relic_Exp_ConversionRate": {
"ConstValueName": "Relic_Exp_ConversionRate",
"Value": "70"
},
"Relic_ReturnItemID": {
"ConstValueName": "Relic_ReturnItemID",
"Value": "232,231"
},
"MissonTalk_ProtectTime": {
"ConstValueName": "MissonTalk_ProtectTime",
"Value": "2"
},
"Item_Sell_Max_Count": {
"ConstValueName": "Item_Sell_Max_Count",
"Value": "100"
},
"LuaDataTickSpan": {
"ConstValueName": "LuaDataTickSpan",
"Value": "300"
},
"Cocoon_Weekly_Limit_Times": {
"ConstValueName": "Cocoon_Weekly_Limit_Times",
"Value": "3"
},
"Newbie_Gacha_Num": {
"ConstValueName": "Newbie_Gacha_Num",
"Value": "50"
},
"Newbie_Gacha_Discount_Num": {
"ConstValueName": "Newbie_Gacha_Discount_Num",
"Value": "8"
},
"Activity_Day_Time_Offset": {
"ConstValueName": "Activity_Day_Time_Offset",
"Value": "14400"
},
"Player_Max_Level": {
"ConstValueName": "Player_Max_Level",
"Value": "70"
},
"Login_Ready_Delay": {
"ConstValueName": "Login_Ready_Delay",
"Value": "2.3"
},
"Login_Start_Delay": {
"ConstValueName": "Login_Start_Delay",
"Value": "0"
}
}

View file

@ -0,0 +1,178 @@
{
"Rogue_Entrance_Cost": {
"ConstRogueName": "Rogue_Entrance_Cost",
"ConstValue": ""
},
"Roll_Buff_Cost": {
"ConstRogueName": "Roll_Buff_Cost",
"ConstValue": "[31:30],[31:50],[31:100]"
},
"Random_Buff_Cost": {
"ConstRogueName": "Random_Buff_Cost",
"ConstValue": "50"
},
"Random_Buff_Max_Times": {
"ConstRogueName": "Random_Buff_Max_Times",
"ConstValue": "1"
},
"Rogue_Start_Avatar_ID": {
"ConstRogueName": "Rogue_Start_Avatar_ID",
"ConstValue": "8001"
},
"Rogue_Stamina_Start": {
"ConstRogueName": "Rogue_Stamina_Start",
"ConstValue": "0"
},
"Rogue_Stamina_Max": {
"ConstRogueName": "Rogue_Stamina_Max",
"ConstValue": "100"
},
"Rogue_Recover_Times": {
"ConstRogueName": "Rogue_Recover_Times",
"ConstValue": "3"
},
"Rogue_Recover_Cost": {
"ConstRogueName": "Rogue_Recover_Cost",
"ConstValue": "3,5,8"
},
"Rogue_Recover_Effect": {
"ConstRogueName": "Rogue_Recover_Effect",
"ConstValue": "0.3"
},
"Rogue_Recover_ItemCost": {
"ConstRogueName": "Rogue_Recover_ItemCost",
"ConstValue": "[31:30],[31:50],[31:80]"
},
"Rogue_Heal_Stamina": {
"ConstRogueName": "Rogue_Heal_Stamina",
"ConstValue": "2"
},
"Rogue_Heal_Stamina_Cost": {
"ConstRogueName": "Rogue_Heal_Stamina_Cost",
"ConstValue": "0,80,200"
},
"Rogue_Heal_Stamina_Times": {
"ConstRogueName": "Rogue_Heal_Stamina_Times",
"ConstValue": "3"
},
"Rogue_Battle_Stamina_Cost": {
"ConstRogueName": "Rogue_Battle_Stamina_Cost",
"ConstValue": "0"
},
"Recommend_Nature": {
"ConstRogueName": "Recommend_Nature",
"ConstValue": "Physical,Ice,Wind"
},
"Rogue_Challenge_Normal": {
"ConstRogueName": "Rogue_Challenge_Normal",
"ConstValue": "1,2,3,4,5,6"
},
"Rogue_StanceLevelEffect": {
"ConstRogueName": "Rogue_StanceLevelEffect",
"ConstValue": "1"
},
"Rogue_Default_Buff": {
"ConstRogueName": "Rogue_Default_Buff",
"ConstValue": "[600000:1]"
},
"Rogue_Leave_Map_Entrance": {
"ConstRogueName": "Rogue_Leave_Map_Entrance",
"ConstValue": "9999812"
},
"Rogue_Start_Avatar_Number": {
"ConstRogueName": "Rogue_Start_Avatar_Number",
"ConstValue": "3"
},
"Rogue_Stamina_Room_Cost": {
"ConstRogueName": "Rogue_Stamina_Room_Cost",
"ConstValue": "0"
},
"Rogue_Stamina_Offset": {
"ConstRogueName": "Rogue_Stamina_Offset",
"ConstValue": "0"
},
"Rogue_First_Explore_Season": {
"ConstRogueName": "Rogue_First_Explore_Season",
"ConstValue": "100"
},
"Rogue_First_Explore_Level_List": {
"ConstRogueName": "Rogue_First_Explore_Level_List",
"ConstValue": "2001,2002,2003,2004,2005,2006,2007,2008,2009,2010"
},
"Rogue_First_Explore_Reward_List": {
"ConstRogueName": "Rogue_First_Explore_Reward_List",
"ConstValue": ""
},
"Rogue_Bless_Max_Level": {
"ConstRogueName": "Rogue_Bless_Max_Level",
"ConstValue": "5"
},
"Rogue_Record_Max_Number": {
"ConstRogueName": "Rogue_Record_Max_Number",
"ConstValue": "3"
},
"Rogue_Hall_Plane_ID": {
"ConstRogueName": "Rogue_Hall_Plane_ID",
"ConstValue": "80112"
},
"Rogue_Hall_Floor_ID": {
"ConstRogueName": "Rogue_Hall_Floor_ID",
"ConstValue": "80112001"
},
"Rogue_Hall_Refresh_Level": {
"ConstRogueName": "Rogue_Hall_Refresh_Level",
"ConstValue": "1"
},
"Rogue_Hall_Refresh_Weight": {
"ConstRogueName": "Rogue_Hall_Refresh_Weight",
"ConstValue": "0:10"
},
"Rogue_Appraisal_Max_Number": {
"ConstRogueName": "Rogue_Appraisal_Max_Number",
"ConstValue": "3"
},
"Rogue_Recommend_Level_First": {
"ConstRogueName": "Rogue_Recommend_Level_First",
"ConstValue": "3"
},
"Rogue_Recommend_Level": {
"ConstRogueName": "Rogue_Recommend_Level",
"ConstValue": "[0:15],[1:34],[2:46],[3:56],[4:66],[5:76],[6:80]"
},
"Rogue_Season_Clean_Item_List": {
"ConstRogueName": "Rogue_Season_Clean_Item_List",
"ConstValue": "502"
},
"Rogue_Gacha_Item_ID": {
"ConstRogueName": "Rogue_Gacha_Item_ID",
"ConstValue": "502"
},
"Rogue_Max_Gacha_OneTime": {
"ConstRogueName": "Rogue_Max_Gacha_OneTime",
"ConstValue": "100"
},
"Rogue_Season_Change_Mail_ID": {
"ConstRogueName": "Rogue_Season_Change_Mail_ID",
"ConstValue": "102"
},
"Rogue_Stone_Default_Perfect_Buff_Group": {
"ConstRogueName": "Rogue_Stone_Default_Perfect_Buff_Group",
"ConstValue": "100920"
},
"Rogue_Stone_Default_Normal_Buff_Group": {
"ConstRogueName": "Rogue_Stone_Default_Normal_Buff_Group",
"ConstValue": "100910"
},
"Rogue_Event_Default_Buff_Group": {
"ConstRogueName": "Rogue_Event_Default_Buff_Group",
"ConstValue": "100004"
},
"Rogue_Bless_Default_Level": {
"ConstRogueName": "Rogue_Bless_Default_Level",
"ConstValue": "1"
},
"Rogue_Reward_Item_List": {
"ConstRogueName": "Rogue_Reward_Item_List",
"ConstValue": "1,501,502,22"
}
}

View file

@ -0,0 +1,58 @@
{
"1": {
"CurrencyID": 1,
"GotoID": 0
},
"2": {
"CurrencyID": 2,
"GotoID": 0
},
"3": {
"CurrencyID": 3,
"GotoID": 0
},
"11": {
"CurrencyID": 11,
"GotoID": 1700
},
"900001": {
"CurrencyID": 900001,
"GotoID": 0
},
"120001": {
"CurrencyID": 120001,
"GotoID": 0
},
"120002": {
"CurrencyID": 120002,
"GotoID": 0
},
"101": {
"CurrencyID": 101,
"GotoID": 0
},
"102": {
"CurrencyID": 102,
"GotoID": 0
},
"31": {
"CurrencyID": 31,
"GotoID": 0
},
"32": {
"CurrencyID": 32,
"GotoID": 0
},
"33": {
"CurrencyID": 33,
"GotoID": 0
},
"251": {
"CurrencyID": 251,
"GotoID": 0
},
"252": {
"CurrencyID": 252,
"GotoID": 0
}
}

View file

@ -0,0 +1,362 @@
{
"3010201": {
"ID": 3010201,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010202": {
"ID": 3010202,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010203": {
"ID": 3010203,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010204": {
"ID": 3010204,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010205": {
"ID": 3010205,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010206": {
"ID": 3010206,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010207": {
"ID": 3010207,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010208": {
"ID": 3010208,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010209": {
"ID": 3010209,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010210": {
"ID": 3010210,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010211": {
"ID": 3010211,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010212": {
"ID": 3010212,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010213": {
"ID": 3010213,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010214": {
"ID": 3010214,
"DailyMissionType": 3,
"GroupID": 30102,
"UnlockMainMission": 1010201,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000101": {
"ID": 3000101,
"DailyMissionType": 1,
"GroupID": 30103,
"UnlockMainMission": 1010302,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000201": {
"ID": 3000201,
"DailyMissionType": 1,
"GroupID": 30103,
"UnlockMainMission": 1010302,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010301": {
"ID": 3010301,
"DailyMissionType": 1,
"GroupID": 30104,
"UnlockMainMission": 1010302,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010901": {
"ID": 3010901,
"DailyMissionType": 1,
"GroupID": 30104,
"UnlockMainMission": 1010902,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011301": {
"ID": 3011301,
"DailyMissionType": 1,
"GroupID": 30104,
"UnlockMainMission": 1011301,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010102": {
"ID": 3010102,
"DailyMissionType": 2,
"GroupID": 30109,
"UnlockMainMission": 1010101,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000521": {
"ID": 3000521,
"DailyMissionType": 2,
"GroupID": 30107,
"UnlockMainMission": 2000105,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000522": {
"ID": 3000522,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000523": {
"ID": 3000523,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000524": {
"ID": 3000524,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000525": {
"ID": 3000525,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000526": {
"ID": 3000526,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3000527": {
"ID": 3000527,
"DailyMissionType": 2,
"GroupID": 30108,
"UnlockMainMission": 2000113,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010421": {
"ID": 3010421,
"DailyMissionType": 2,
"GroupID": 30105,
"UnlockMainMission": 1010902,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010422": {
"ID": 3010422,
"DailyMissionType": 2,
"GroupID": 30105,
"UnlockMainMission": 1010902,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3010423": {
"ID": 3010423,
"DailyMissionType": 2,
"GroupID": 30105,
"UnlockMainMission": 2010501,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011011": {
"ID": 3011011,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 2010501,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011012": {
"ID": 3011012,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 2010501,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011013": {
"ID": 3011013,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 2010501,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011111": {
"ID": 3011111,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 1011403,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011112": {
"ID": 3011112,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 1011403,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
},
"3011113": {
"ID": 3011113,
"DailyMissionType": 3,
"GroupID": 30106,
"UnlockMainMission": 1011403,
"UnlockPrestigeID": 101,
"PrestigeLevelMin": 1,
"PrestigeLevelMax": 999,
"IconPath": "SpriteOutput/TabIcon/Quest/QuestDailyIcon.png"
}
}

View file

@ -0,0 +1,128 @@
{
"0:1": {
"WorldLevel": 0,
"FinishCount": 1,
"RewardID": 102000,
"ExtraRewardID": 0
},
"0:2": {
"WorldLevel": 0,
"FinishCount": 2,
"RewardID": 102000,
"ExtraRewardID": 0
},
"0:3": {
"WorldLevel": 0,
"FinishCount": 3,
"RewardID": 102000,
"ExtraRewardID": 102100
},
"1:1": {
"WorldLevel": 1,
"FinishCount": 1,
"RewardID": 102001,
"ExtraRewardID": 0
},
"1:2": {
"WorldLevel": 1,
"FinishCount": 2,
"RewardID": 102001,
"ExtraRewardID": 0
},
"1:3": {
"WorldLevel": 1,
"FinishCount": 3,
"RewardID": 102001,
"ExtraRewardID": 102101
},
"2:1": {
"WorldLevel": 2,
"FinishCount": 1,
"RewardID": 102002,
"ExtraRewardID": 0
},
"2:2": {
"WorldLevel": 2,
"FinishCount": 2,
"RewardID": 102002,
"ExtraRewardID": 0
},
"2:3": {
"WorldLevel": 2,
"FinishCount": 3,
"RewardID": 102002,
"ExtraRewardID": 102102
},
"3:1": {
"WorldLevel": 3,
"FinishCount": 1,
"RewardID": 102003,
"ExtraRewardID": 0
},
"3:2": {
"WorldLevel": 3,
"FinishCount": 2,
"RewardID": 102003,
"ExtraRewardID": 0
},
"3:3": {
"WorldLevel": 3,
"FinishCount": 3,
"RewardID": 102003,
"ExtraRewardID": 102103
},
"4:1": {
"WorldLevel": 4,
"FinishCount": 1,
"RewardID": 102004,
"ExtraRewardID": 0
},
"4:2": {
"WorldLevel": 4,
"FinishCount": 2,
"RewardID": 102004,
"ExtraRewardID": 0
},
"4:3": {
"WorldLevel": 4,
"FinishCount": 3,
"RewardID": 102004,
"ExtraRewardID": 102104
},
"5:1": {
"WorldLevel": 5,
"FinishCount": 1,
"RewardID": 102005,
"ExtraRewardID": 0
},
"5:2": {
"WorldLevel": 5,
"FinishCount": 2,
"RewardID": 102005,
"ExtraRewardID": 0
},
"5:3": {
"WorldLevel": 5,
"FinishCount": 3,
"RewardID": 102005,
"ExtraRewardID": 102105
},
"6:1": {
"WorldLevel": 6,
"FinishCount": 1,
"RewardID": 102006,
"ExtraRewardID": 0
},
"6:2": {
"WorldLevel": 6,
"FinishCount": 2,
"RewardID": 102006,
"ExtraRewardID": 0
},
"6:3": {
"WorldLevel": 6,
"FinishCount": 3,
"RewardID": 102006,
"ExtraRewardID": 102106
}
}

View file

@ -0,0 +1,30 @@
{
"Physical": {
"Type": "Physical",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconPhysicalResistanceDelta.png"
},
"Fire": {
"Type": "Fire",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconFireResistanceDelta.png"
},
"Ice": {
"Type": "Ice",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconIceResistanceDelta.png"
},
"Thunder": {
"Type": "Thunder",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconThunderResistanceDelta.png"
},
"Wind": {
"Type": "Wind",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconWindResistanceDelta.png"
},
"Quantum": {
"Type": "Quantum",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconQuantumResistanceDelta.png"
},
"Imaginary": {
"Type": "Imaginary",
"Icon": "SpriteOutput/UI/Avatar/Icon/IconImaginaryResistanceDelta.png"
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,58 @@
{
"ChatMissionIcon": {
"Type": "ChatMissionIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatMissionIcon.png"
},
"ChatLoopIcon": {
"Type": "ChatLoopIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatIcon.png"
},
"ChatContinueIcon": {
"Type": "ChatContinueIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatContinueIcon.png"
},
"ChatBackIcon": {
"Type": "ChatBackIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatBackIcon.png"
},
"ChatOutIcon": {
"Type": "ChatOutIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatOutIcon.png"
},
"ShopIcon": {
"Type": "ShopIcon",
"IconPath": "SpriteOutput/TalkIcon/ShopIcon.png"
},
"BoxIcon": {
"Type": "BoxIcon",
"IconPath": "SpriteOutput/TalkIcon/BoxIcon.png"
},
"CheckIcon": {
"Type": "CheckIcon",
"IconPath": "SpriteOutput/TalkIcon/CheckIcon.png"
},
"HealHPIcon": {
"Type": "HealHPIcon",
"IconPath": "SpriteOutput/TalkIcon/HealHPIcon.png"
},
"LevelIcon": {
"Type": "LevelIcon",
"IconPath": "SpriteOutput/TalkIcon/LevelIcon.png"
},
"ChatIcon": {
"Type": "ChatIcon",
"IconPath": "SpriteOutput/TalkIcon/ChatIcon.png"
},
"SpecialChatIcon": {
"Type": "SpecialChatIcon",
"IconPath": "SpriteOutput/TalkIcon/SpecialChatIcon.png"
},
"Synthesis": {
"Type": "Synthesis",
"IconPath": "SpriteOutput/TalkIcon/Synthesis.png"
},
"TriggerProp": {
"Type": "TriggerProp",
"IconPath": "SpriteOutput/TalkIcon/TriggerProp.png"
}
}

View file

@ -0,0 +1,13 @@
{
"101": {
"DailyID": 101,
"QuestList": [
1001231,
1001230,
1001229
],
"PanelDesc": {
"hash": 237061531
}
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,12 @@
{
"221": {
"ItemID": 221,
"ExpProvide": 1000,
"CoinCost": 500
},
"222": {
"ItemID": 222,
"ExpProvide": 5000,
"CoinCost": 2500
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,44 @@
{
"900003": {
"ID": 900003,
"LimitTime": 60,
"IsBeginPrepare": true,
"IsCancellable": true
},
"900004": {
"ID": 900004,
"LimitTime": 10,
"IsBeginPrepare": false,
"IsCancellable": true
},
"900005": {
"ID": 900005,
"LimitTime": 60,
"IsBeginPrepare": false,
"IsCancellable": true
},
"900008": {
"ID": 900008,
"LimitTime": 30,
"IsBeginPrepare": false,
"IsCancellable": true
},
"900011": {
"ID": 900011,
"LimitTime": 0,
"IsBeginPrepare": false,
"IsCancellable": false
},
"900012": {
"ID": 900012,
"LimitTime": 0,
"IsBeginPrepare": false,
"IsCancellable": false
},
"900015": {
"ID": 900015,
"LimitTime": 0,
"IsBeginPrepare": false,
"IsCancellable": false
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,37 @@
{
"1": {
"GroupID": 1,
"Name": {
"hash": 822723971
},
"IconPath": "SpriteOutput/ItemIcon/110111.png"
},
"2": {
"GroupID": 2,
"Name": {
"hash": 822723970
},
"IconPath": "SpriteOutput/ItemIcon/213.png"
},
"3": {
"GroupID": 3,
"Name": {
"hash": 822723969
},
"IconPath": "SpriteOutput/ItemIcon/222.png"
},
"4": {
"GroupID": 4,
"Name": {
"hash": 822723976
},
"IconPath": "SpriteOutput/ItemIcon/2.png"
},
"5": {
"GroupID": 5,
"Name": {
"hash": 822723975
},
"IconPath": "SpriteOutput/ItemIcon/180002.png"
}
}

View file

@ -0,0 +1,562 @@
{
"1001:4:1": {
"ExpeditionID": 1001,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114111,
"ExtraRewardID": 0
},
"1001:4:2": {
"ExpeditionID": 1001,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114111,
"ExtraRewardID": 115111
},
"1001:8:1": {
"ExpeditionID": 1001,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114112,
"ExtraRewardID": 0
},
"1001:8:2": {
"ExpeditionID": 1001,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114112,
"ExtraRewardID": 115112
},
"1001:12:1": {
"ExpeditionID": 1001,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114113,
"ExtraRewardID": 0
},
"1001:12:2": {
"ExpeditionID": 1001,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114113,
"ExtraRewardID": 115113
},
"1001:20:1": {
"ExpeditionID": 1001,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114115,
"ExtraRewardID": 0
},
"1001:20:2": {
"ExpeditionID": 1001,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114115,
"ExtraRewardID": 115115
},
"1002:4:1": {
"ExpeditionID": 1002,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114121,
"ExtraRewardID": 0
},
"1002:4:2": {
"ExpeditionID": 1002,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114121,
"ExtraRewardID": 115121
},
"1002:8:1": {
"ExpeditionID": 1002,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114122,
"ExtraRewardID": 0
},
"1002:8:2": {
"ExpeditionID": 1002,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114122,
"ExtraRewardID": 115122
},
"1002:12:1": {
"ExpeditionID": 1002,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114123,
"ExtraRewardID": 0
},
"1002:12:2": {
"ExpeditionID": 1002,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114123,
"ExtraRewardID": 115123
},
"1002:20:1": {
"ExpeditionID": 1002,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114125,
"ExtraRewardID": 0
},
"1002:20:2": {
"ExpeditionID": 1002,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114125,
"ExtraRewardID": 115125
},
"1003:4:1": {
"ExpeditionID": 1003,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114131,
"ExtraRewardID": 0
},
"1003:4:2": {
"ExpeditionID": 1003,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114131,
"ExtraRewardID": 115131
},
"1003:8:1": {
"ExpeditionID": 1003,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114132,
"ExtraRewardID": 0
},
"1003:8:2": {
"ExpeditionID": 1003,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114132,
"ExtraRewardID": 115132
},
"1003:12:1": {
"ExpeditionID": 1003,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114133,
"ExtraRewardID": 0
},
"1003:12:2": {
"ExpeditionID": 1003,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114133,
"ExtraRewardID": 115133
},
"1003:20:1": {
"ExpeditionID": 1003,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114135,
"ExtraRewardID": 0
},
"1003:20:2": {
"ExpeditionID": 1003,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114135,
"ExtraRewardID": 115135
},
"1004:4:1": {
"ExpeditionID": 1004,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114141,
"ExtraRewardID": 0
},
"1004:4:2": {
"ExpeditionID": 1004,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114141,
"ExtraRewardID": 115141
},
"1004:8:1": {
"ExpeditionID": 1004,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114142,
"ExtraRewardID": 0
},
"1004:8:2": {
"ExpeditionID": 1004,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114142,
"ExtraRewardID": 115142
},
"1004:12:1": {
"ExpeditionID": 1004,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114143,
"ExtraRewardID": 0
},
"1004:12:2": {
"ExpeditionID": 1004,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114143,
"ExtraRewardID": 115143
},
"1004:20:1": {
"ExpeditionID": 1004,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114145,
"ExtraRewardID": 0
},
"1004:20:2": {
"ExpeditionID": 1004,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114145,
"ExtraRewardID": 115145
},
"2001:4:1": {
"ExpeditionID": 2001,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114211,
"ExtraRewardID": 0
},
"2001:4:2": {
"ExpeditionID": 2001,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114211,
"ExtraRewardID": 115211
},
"2001:8:1": {
"ExpeditionID": 2001,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114212,
"ExtraRewardID": 0
},
"2001:8:2": {
"ExpeditionID": 2001,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114212,
"ExtraRewardID": 115212
},
"2001:12:1": {
"ExpeditionID": 2001,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114213,
"ExtraRewardID": 0
},
"2001:12:2": {
"ExpeditionID": 2001,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114213,
"ExtraRewardID": 115213
},
"2001:20:1": {
"ExpeditionID": 2001,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114215,
"ExtraRewardID": 0
},
"2001:20:2": {
"ExpeditionID": 2001,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114215,
"ExtraRewardID": 115215
},
"3001:4:1": {
"ExpeditionID": 3001,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114311,
"ExtraRewardID": 0
},
"3001:4:2": {
"ExpeditionID": 3001,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114311,
"ExtraRewardID": 115311
},
"3001:8:1": {
"ExpeditionID": 3001,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114312,
"ExtraRewardID": 0
},
"3001:8:2": {
"ExpeditionID": 3001,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114312,
"ExtraRewardID": 115312
},
"3001:12:1": {
"ExpeditionID": 3001,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114313,
"ExtraRewardID": 0
},
"3001:12:2": {
"ExpeditionID": 3001,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114313,
"ExtraRewardID": 115313
},
"3001:20:1": {
"ExpeditionID": 3001,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114315,
"ExtraRewardID": 0
},
"3001:20:2": {
"ExpeditionID": 3001,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114315,
"ExtraRewardID": 115315
},
"4001:4:1": {
"ExpeditionID": 4001,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114411,
"ExtraRewardID": 0
},
"4001:4:2": {
"ExpeditionID": 4001,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114411,
"ExtraRewardID": 115411
},
"4001:8:1": {
"ExpeditionID": 4001,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114412,
"ExtraRewardID": 0
},
"4001:8:2": {
"ExpeditionID": 4001,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114412,
"ExtraRewardID": 115412
},
"4001:12:1": {
"ExpeditionID": 4001,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114413,
"ExtraRewardID": 0
},
"4001:12:2": {
"ExpeditionID": 4001,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114413,
"ExtraRewardID": 115413
},
"4001:20:1": {
"ExpeditionID": 4001,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114415,
"ExtraRewardID": 0
},
"4001:20:2": {
"ExpeditionID": 4001,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114415,
"ExtraRewardID": 115415
},
"5001:4:1": {
"ExpeditionID": 5001,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114511,
"ExtraRewardID": 0
},
"5001:4:2": {
"ExpeditionID": 5001,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114511,
"ExtraRewardID": 115511
},
"5001:8:1": {
"ExpeditionID": 5001,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114512,
"ExtraRewardID": 0
},
"5001:8:2": {
"ExpeditionID": 5001,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114512,
"ExtraRewardID": 115512
},
"5001:12:1": {
"ExpeditionID": 5001,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114513,
"ExtraRewardID": 0
},
"5001:12:2": {
"ExpeditionID": 5001,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114513,
"ExtraRewardID": 115513
},
"5001:20:1": {
"ExpeditionID": 5001,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114515,
"ExtraRewardID": 0
},
"5001:20:2": {
"ExpeditionID": 5001,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114515,
"ExtraRewardID": 115515
},
"5002:4:1": {
"ExpeditionID": 5002,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114521,
"ExtraRewardID": 0
},
"5002:4:2": {
"ExpeditionID": 5002,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114521,
"ExtraRewardID": 115521
},
"5002:8:1": {
"ExpeditionID": 5002,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114522,
"ExtraRewardID": 0
},
"5002:8:2": {
"ExpeditionID": 5002,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114522,
"ExtraRewardID": 115522
},
"5002:12:1": {
"ExpeditionID": 5002,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114523,
"ExtraRewardID": 0
},
"5002:12:2": {
"ExpeditionID": 5002,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114523,
"ExtraRewardID": 115523
},
"5002:20:1": {
"ExpeditionID": 5002,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114525,
"ExtraRewardID": 0
},
"5002:20:2": {
"ExpeditionID": 5002,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114525,
"ExtraRewardID": 115525
},
"5003:4:1": {
"ExpeditionID": 5003,
"Duration": 4,
"AvatarNum": 1,
"RewardID": 114531,
"ExtraRewardID": 0
},
"5003:4:2": {
"ExpeditionID": 5003,
"Duration": 4,
"AvatarNum": 2,
"RewardID": 114531,
"ExtraRewardID": 115531
},
"5003:8:1": {
"ExpeditionID": 5003,
"Duration": 8,
"AvatarNum": 1,
"RewardID": 114532,
"ExtraRewardID": 0
},
"5003:8:2": {
"ExpeditionID": 5003,
"Duration": 8,
"AvatarNum": 2,
"RewardID": 114532,
"ExtraRewardID": 115532
},
"5003:12:1": {
"ExpeditionID": 5003,
"Duration": 12,
"AvatarNum": 1,
"RewardID": 114533,
"ExtraRewardID": 0
},
"5003:12:2": {
"ExpeditionID": 5003,
"Duration": 12,
"AvatarNum": 2,
"RewardID": 114533,
"ExtraRewardID": 115533
},
"5003:20:1": {
"ExpeditionID": 5003,
"Duration": 20,
"AvatarNum": 1,
"RewardID": 114535,
"ExtraRewardID": 0
},
"5003:20:2": {
"ExpeditionID": 5003,
"Duration": 20,
"AvatarNum": 2,
"RewardID": 114535,
"ExtraRewardID": 115535
}
}

View file

@ -0,0 +1,200 @@
{
"10002030": {
"ExtraEffectID": 10002030,
"ExtraEffectName": {
"hash": -941417595
},
"ExtraEffectDesc": {
"hash": 2099804807
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconDeBuffDefenceDown.png",
"ExtraEffectType": 2
},
"10002070": {
"ExtraEffectID": 10002070,
"ExtraEffectName": {
"hash": -941417599
},
"ExtraEffectDesc": {
"hash": 2099804803
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffAttackUp.png",
"ExtraEffectType": 1
},
"10002080": {
"ExtraEffectID": 10002080,
"ExtraEffectName": {
"hash": -941417588
},
"ExtraEffectDesc": {
"hash": 2099804818
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconDeBuffDefenceDown.png",
"ExtraEffectType": 2
},
"40010201": {
"ExtraEffectID": 40010201,
"ExtraEffectName": {
"hash": 423301719
},
"ExtraEffectDesc": {
"hash": -830443303
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010202": {
"ExtraEffectID": 40010202,
"ExtraEffectName": {
"hash": 1989385660
},
"ExtraEffectDesc": {
"hash": 735640638
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010301": {
"ExtraEffectID": 40010301,
"ExtraEffectName": {
"hash": -1122579246
},
"ExtraEffectDesc": {
"hash": 1918643028
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"40010302": {
"ExtraEffectID": 40010302,
"ExtraEffectName": {
"hash": -719294719
},
"ExtraEffectDesc": {
"hash": -1973039741
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"40010401": {
"ExtraEffectID": 40010401,
"ExtraEffectName": {
"hash": 1270276725
},
"ExtraEffectDesc": {
"hash": -1112768305
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"40010501": {
"ExtraEffectID": 40010501,
"ExtraEffectName": {
"hash": -275604240
},
"ExtraEffectDesc": {
"hash": 1636318026
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010502": {
"ExtraEffectID": 40010502,
"ExtraEffectName": {
"hash": -1841688181
},
"ExtraEffectDesc": {
"hash": 70234085
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010503": {
"ExtraEffectID": 40010503,
"ExtraEffectName": {
"hash": 887195174
},
"ExtraEffectDesc": {
"hash": -1495849856
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010601": {
"ExtraEffectID": 40010601,
"ExtraEffectName": {
"hash": 987951723
},
"ExtraEffectDesc": {
"hash": -1395093307
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010602": {
"ExtraEffectID": 40010602,
"ExtraEffectName": {
"hash": -1740931632
},
"ExtraEffectDesc": {
"hash": 170990634
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 2
},
"40010701": {
"ExtraEffectID": 40010701,
"ExtraEffectName": {
"hash": -557929242
},
"ExtraEffectDesc": {
"hash": 1353993024
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"40010801": {
"ExtraEffectID": 40010801,
"ExtraEffectName": {
"hash": 1834926729
},
"ExtraEffectDesc": {
"hash": 581181707
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 3
},
"50000101": {
"ExtraEffectID": 50000101,
"ExtraEffectName": {
"hash": 1928484578
},
"ExtraEffectDesc": {
"hash": 674739556
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"50000102": {
"ExtraEffectID": 50000102,
"ExtraEffectName": {
"hash": 1525200051
},
"ExtraEffectDesc": {
"hash": 271455029
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 1
},
"30001010": {
"ExtraEffectID": 30001010,
"ExtraEffectName": {
"hash": -941489372
},
"ExtraEffectDesc": {
"hash": 2099876650
},
"ExtraEffectIconPath": "SpriteOutput/BuffIcon/Inlevel/IconBuffCommon.png",
"ExtraEffectType": 3
}
}

View file

@ -0,0 +1,725 @@
{
"2001:0": {
"ID": 2001,
"WorldLevel": 0,
"MappingInfoID": 2001,
"DropList": [
1000899,
1000339,
2003015,
2003103
],
"StaminaCost": 30
},
"2001:1": {
"ID": 2001,
"WorldLevel": 1,
"MappingInfoID": 2001,
"DropList": [
1000899,
1000389,
2003111
],
"StaminaCost": 30
},
"2001:2": {
"ID": 2001,
"WorldLevel": 2,
"MappingInfoID": 2001,
"DropList": [
1000899,
1000404,
2003116
],
"StaminaCost": 30
},
"2001:3": {
"ID": 2001,
"WorldLevel": 3,
"MappingInfoID": 2001,
"DropList": [
1000899,
1000409,
1001020,
2003204
],
"StaminaCost": 30
},
"2001:4": {
"ID": 2001,
"WorldLevel": 4,
"MappingInfoID": 2001,
"DropList": [
1000899,
1000409,
1001020,
2003204
],
"StaminaCost": 30
},
"1101:0": {
"ID": 1101,
"WorldLevel": 0,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000403,
980000,
1004210,
910051
],
"StaminaCost": 30
},
"1101:1": {
"ID": 1101,
"WorldLevel": 1,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000405,
980001,
1004210,
910052
],
"StaminaCost": 30
},
"1101:2": {
"ID": 1101,
"WorldLevel": 2,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000407,
980000,
980001,
1004211,
910053
],
"StaminaCost": 30
},
"1101:3": {
"ID": 1101,
"WorldLevel": 3,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000409,
980002,
1004212,
910054
],
"StaminaCost": 30
},
"1101:4": {
"ID": 1101,
"WorldLevel": 4,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000411,
980000,
980002,
1004212,
910055
],
"StaminaCost": 30
},
"1101:5": {
"ID": 1101,
"WorldLevel": 5,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000413,
980001,
980002,
1004213,
910056
],
"StaminaCost": 30
},
"1101:6": {
"ID": 1101,
"WorldLevel": 6,
"MappingInfoID": 1101,
"DropList": [
1000909,
1000415,
980002,
980002,
1004213,
910057
],
"StaminaCost": 30
},
"1102:0": {
"ID": 1102,
"WorldLevel": 0,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000403,
980000,
1004200,
910041
],
"StaminaCost": 30
},
"1102:1": {
"ID": 1102,
"WorldLevel": 1,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000405,
980001,
1004200,
910042
],
"StaminaCost": 30
},
"1102:2": {
"ID": 1102,
"WorldLevel": 2,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000407,
980000,
980001,
1004201,
910043
],
"StaminaCost": 30
},
"1102:3": {
"ID": 1102,
"WorldLevel": 3,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000409,
980002,
1004202,
910044
],
"StaminaCost": 30
},
"1102:4": {
"ID": 1102,
"WorldLevel": 4,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000411,
980000,
980002,
1004202,
910045
],
"StaminaCost": 30
},
"1102:5": {
"ID": 1102,
"WorldLevel": 5,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000413,
980001,
980002,
1004203,
910046
],
"StaminaCost": 30
},
"1102:6": {
"ID": 1102,
"WorldLevel": 6,
"MappingInfoID": 1102,
"DropList": [
1000909,
1000415,
980002,
980002,
1004203,
910047
],
"StaminaCost": 30
},
"1103:0": {
"ID": 1103,
"WorldLevel": 0,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000403,
980000,
1004190,
910031
],
"StaminaCost": 30
},
"1103:1": {
"ID": 1103,
"WorldLevel": 1,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000405,
980001,
1004190,
910032
],
"StaminaCost": 30
},
"1103:2": {
"ID": 1103,
"WorldLevel": 2,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000407,
980000,
980001,
1004191,
910033
],
"StaminaCost": 30
},
"1103:3": {
"ID": 1103,
"WorldLevel": 3,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000409,
980002,
1004192,
910034
],
"StaminaCost": 30
},
"1103:4": {
"ID": 1103,
"WorldLevel": 4,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000411,
980000,
980002,
1004192,
910035
],
"StaminaCost": 30
},
"1103:5": {
"ID": 1103,
"WorldLevel": 5,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000413,
980001,
980002,
1004193,
910036
],
"StaminaCost": 30
},
"1103:6": {
"ID": 1103,
"WorldLevel": 6,
"MappingInfoID": 1103,
"DropList": [
1000909,
1000415,
980002,
980002,
1004193,
910037
],
"StaminaCost": 30
},
"1104:0": {
"ID": 1104,
"WorldLevel": 0,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000403,
980000,
1004170,
910011
],
"StaminaCost": 30
},
"1104:1": {
"ID": 1104,
"WorldLevel": 1,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000405,
980001,
1004170,
910012
],
"StaminaCost": 30
},
"1104:2": {
"ID": 1104,
"WorldLevel": 2,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000407,
980000,
980001,
1004171,
910013
],
"StaminaCost": 30
},
"1104:3": {
"ID": 1104,
"WorldLevel": 3,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000409,
980002,
1004172,
910014
],
"StaminaCost": 30
},
"1104:4": {
"ID": 1104,
"WorldLevel": 4,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000411,
980000,
980002,
1004172,
910015
],
"StaminaCost": 30
},
"1104:5": {
"ID": 1104,
"WorldLevel": 5,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000413,
980001,
980002,
1004173,
910016
],
"StaminaCost": 30
},
"1104:6": {
"ID": 1104,
"WorldLevel": 6,
"MappingInfoID": 1104,
"DropList": [
1000909,
1000415,
980002,
980002,
1004173,
910017
],
"StaminaCost": 30
},
"1105:0": {
"ID": 1105,
"WorldLevel": 0,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000403,
980000,
1004160,
910001
],
"StaminaCost": 30
},
"1105:1": {
"ID": 1105,
"WorldLevel": 1,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000405,
980001,
1004160,
910002
],
"StaminaCost": 30
},
"1105:2": {
"ID": 1105,
"WorldLevel": 2,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000407,
980000,
980001,
1004161,
910003
],
"StaminaCost": 30
},
"1105:3": {
"ID": 1105,
"WorldLevel": 3,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000409,
980002,
1004162,
910004
],
"StaminaCost": 30
},
"1105:4": {
"ID": 1105,
"WorldLevel": 4,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000411,
980000,
980002,
1004162,
910005
],
"StaminaCost": 30
},
"1105:5": {
"ID": 1105,
"WorldLevel": 5,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000413,
980001,
980002,
1004163,
910006
],
"StaminaCost": 30
},
"1105:6": {
"ID": 1105,
"WorldLevel": 6,
"MappingInfoID": 1105,
"DropList": [
1000909,
1000415,
980002,
980002,
1004163,
910007
],
"StaminaCost": 30
},
"1106:0": {
"ID": 1106,
"WorldLevel": 0,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000403,
980000,
1004180,
910021
],
"StaminaCost": 30
},
"1106:1": {
"ID": 1106,
"WorldLevel": 1,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000405,
980001,
1004180,
910022
],
"StaminaCost": 30
},
"1106:2": {
"ID": 1106,
"WorldLevel": 2,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000407,
980000,
980001,
1004181,
910023
],
"StaminaCost": 30
},
"1106:3": {
"ID": 1106,
"WorldLevel": 3,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000409,
980002,
1004182,
910024
],
"StaminaCost": 30
},
"1106:4": {
"ID": 1106,
"WorldLevel": 4,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000411,
980000,
980002,
1004182,
910025
],
"StaminaCost": 30
},
"1106:5": {
"ID": 1106,
"WorldLevel": 5,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000413,
980001,
980002,
1004183,
910026
],
"StaminaCost": 30
},
"1106:6": {
"ID": 1106,
"WorldLevel": 6,
"MappingInfoID": 1106,
"DropList": [
1000909,
1000415,
980002,
980002,
1004183,
910027
],
"StaminaCost": 30
},
"1107:0": {
"ID": 1107,
"WorldLevel": 0,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000403,
980000,
1004220,
910061
],
"StaminaCost": 30
},
"1107:1": {
"ID": 1107,
"WorldLevel": 1,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000405,
980001,
1004220,
910062
],
"StaminaCost": 30
},
"1107:2": {
"ID": 1107,
"WorldLevel": 2,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000407,
980000,
980001,
1004221,
910063
],
"StaminaCost": 30
},
"1107:3": {
"ID": 1107,
"WorldLevel": 3,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000409,
980002,
1004222,
910064
],
"StaminaCost": 30
},
"1107:4": {
"ID": 1107,
"WorldLevel": 4,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000411,
980000,
980002,
1004222,
910065
],
"StaminaCost": 30
},
"1107:5": {
"ID": 1107,
"WorldLevel": 5,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000413,
980001,
980002,
1004223,
910066
],
"StaminaCost": 30
},
"1107:6": {
"ID": 1107,
"WorldLevel": 6,
"MappingInfoID": 1107,
"DropList": [
1000909,
1000415,
980002,
980002,
1004223,
910067
],
"StaminaCost": 30
}
}

View file

@ -0,0 +1,39 @@
{
"COCOON": {
"FarmType": "COCOON",
"WorldLevelList": [
0,
1,
2,
3,
4
]
},
"COCOON2": {
"FarmType": "COCOON2",
"WorldLevelList": [
1,
2,
3,
4
]
},
"ELEMENT": {
"FarmType": "ELEMENT",
"WorldLevelList": [
1,
2,
3,
4
]
},
"RELIC": {
"FarmType": "RELIC",
"WorldLevelList": [
1,
2,
3,
4
]
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,652 @@
{
"2": {
"ID": 2,
"FuncName": {
"hash": 1405076994
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/MapIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/MapIcon.png",
"GotoID": 200,
"ChannelRegion": [],
"UnlockMainMission": 1010301,
"UnlockID": 200,
"UnlockDesc": {
"hash": -693209280
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"3": {
"ID": 3,
"FuncName": {
"hash": -592780657
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"GotoID": 300,
"ChannelRegion": [],
"UnlockMainMission": 1010401,
"UnlockID": 300,
"UnlockDesc": {
"hash": 2035674075
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"4": {
"ID": 4,
"FuncName": {
"hash": -676993900
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/AvatarIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/AvatarIcon.png",
"GotoID": 400,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 400,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "Avatar",
"UnlockPrompt": false
},
"5": {
"ID": 5,
"FuncName": {
"hash": 888911468
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/InventoryIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/InventoryIcon.png",
"GotoID": 500,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 500,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": false
},
"6": {
"ID": 6,
"FuncName": {
"hash": -1868259488
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/ShopIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/ShopIcon.png",
"GotoID": 600,
"ChannelRegion": [],
"UnlockMainMission": 1010401,
"UnlockID": 600,
"UnlockDesc": {
"hash": 1632389548
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": false
},
"7": {
"ID": 7,
"FuncName": {
"hash": -1034393270
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/QuestIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/QuestIcon.png",
"GotoID": 700,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"8": {
"ID": 8,
"FuncName": {
"hash": -1927936373
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/ActivityIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/ActivityIcon.png",
"GotoID": 800,
"ChannelRegion": [],
"UnlockMainMission": 1010503,
"UnlockID": 800,
"UnlockDesc": {
"hash": -1499778334
},
"RedDot": "ActivityQuest_All",
"RedDotHud": "ActivityQuest_All",
"UnlockPrompt": true
},
"9": {
"ID": 9,
"FuncName": {
"hash": -617741829
},
"FuncIconPath": "SpriteOutput/UI/MobilePhone/EnvelopeIcon.png",
"FuncHudIconPath": "SpriteOutput/UI/MobilePhone/EnvelopeIcon.png",
"GotoID": 900,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "Mail",
"RedDotHud": "",
"UnlockPrompt": true
},
"10": {
"ID": 10,
"FuncName": {
"hash": 2050919576
},
"FuncIconPath": "SpriteOutput/UI/MobilePhone/NoticeIcon.png",
"FuncHudIconPath": "SpriteOutput/UI/MobilePhone/NoticeIcon.png",
"GotoID": 1000,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "Notice",
"RedDotHud": "",
"UnlockPrompt": true
},
"11": {
"ID": 11,
"FuncName": {
"hash": -1818257148
},
"FuncIconPath": "SpriteOutput/UI/MobilePhone/SetIcon.png",
"FuncHudIconPath": "SpriteOutput/UI/MobilePhone/SetIcon.png",
"GotoID": 1100,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"12": {
"ID": 12,
"FuncName": {
"hash": 1523911446
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/FeedbackIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/FeedbackIcon.png",
"GotoID": 1200,
"ChannelRegion": [
"HoyoDome"
],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"13": {
"ID": 13,
"FuncName": {
"hash": 1835464452
},
"FuncIconPath": "SpriteOutput/UI/MobilePhone/ShutdownIcon.png",
"FuncHudIconPath": "SpriteOutput/UI/MobilePhone/ShutdownIcon.png",
"GotoID": 1300,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"14": {
"ID": 14,
"FuncName": {
"hash": 1734708759
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/BookIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/BookIcon.png",
"GotoID": 1400,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"15": {
"ID": 15,
"FuncName": {
"hash": -2133251693
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"GotoID": 1500,
"ChannelRegion": [],
"UnlockMainMission": 1010503,
"UnlockID": 1500,
"UnlockDesc": {
"hash": 1306839696
},
"RedDot": "Activity",
"RedDotHud": "Activity",
"UnlockPrompt": true
},
"16": {
"ID": 16,
"FuncName": {
"hash": -37685941
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/ActivityIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/ActivityIcon.png",
"GotoID": 1600,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"21": {
"ID": 21,
"FuncName": {
"hash": 1263402164
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/DeveStrategyIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/DeveStrategyIcon.png",
"GotoID": 2100,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 2100,
"UnlockDesc": {
"hash": -259244241
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": false
},
"23": {
"ID": 23,
"FuncName": {
"hash": 891994066
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/DrawcardIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/DrawcardIcon.png",
"GotoID": 2300,
"ChannelRegion": [],
"UnlockMainMission": 1010503,
"UnlockID": 2300,
"UnlockDesc": {
"hash": -259244243
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"24": {
"ID": 24,
"FuncName": {
"hash": 363422225
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/PrestigeIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/PrestigeIcon.png",
"GotoID": 2400,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 2400,
"UnlockDesc": {
"hash": -259244244
},
"RedDot": "Prestige",
"RedDotHud": "",
"UnlockPrompt": true
},
"25": {
"ID": 25,
"FuncName": {
"hash": 963639618
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/TeachIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/TeachIcon.png",
"GotoID": 2500,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 2500,
"UnlockDesc": {
"hash": -259244245
},
"RedDot": "TutorialOverview",
"RedDotHud": "TutorialOverview",
"UnlockPrompt": true
},
"301": {
"ID": 301,
"FuncName": {
"hash": 1485179821
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"GotoID": 301,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"302": {
"ID": 302,
"FuncName": {
"hash": 1741094670
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/TeamIcon.png",
"GotoID": 302,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"505": {
"ID": 505,
"FuncName": {
"hash": 406917470
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/InventoryIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/InventoryIcon.png",
"GotoID": 505,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9901": {
"ID": 9901,
"FuncName": {
"hash": -1318200081
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"GotoID": 9901,
"ChannelRegion": [],
"UnlockMainMission": 1010503,
"UnlockID": 9901,
"UnlockDesc": {
"hash": -240802427
},
"RedDot": "",
"RedDotHud": "Activity",
"UnlockPrompt": true
},
"9903": {
"ID": 9903,
"FuncName": {
"hash": -1318200079
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/DailyQuestIcon.png",
"GotoID": 9903,
"ChannelRegion": [],
"UnlockMainMission": 1010503,
"UnlockID": 9903,
"UnlockDesc": {
"hash": -240802429
},
"RedDot": "",
"RedDotHud": "Activity",
"UnlockPrompt": false
},
"26": {
"ID": 26,
"FuncName": {
"hash": -4577460
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/FeedbackIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/FeedbackIcon.png",
"GotoID": 2600,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "CustomerIM",
"RedDotHud": "",
"UnlockPrompt": true
},
"27": {
"ID": 27,
"FuncName": {
"hash": 1405076994
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/MapIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/MapIcon.png",
"GotoID": 2700,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 0,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": false
},
"28": {
"ID": 28,
"FuncName": {
"hash": 911331385
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/AchievementIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/AchievementIcon.png",
"GotoID": 2900,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 2800,
"UnlockDesc": {
"hash": 371857150
},
"RedDot": "AchievementEnter",
"RedDotHud": "Activity",
"UnlockPrompt": false
},
"29": {
"ID": 29,
"FuncName": {
"hash": -1219150119
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/MessagesIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/MessagesIcon.png",
"GotoID": 3000,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 2900,
"UnlockDesc": {
"hash": -259244249
},
"RedDot": "PhoneMessageEntrance",
"RedDotHud": "PhoneMessageEntrance",
"UnlockPrompt": true
},
"9913": {
"ID": 9913,
"FuncName": {
"hash": -335552697
},
"FuncIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"FuncHudIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"GotoID": 9913,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9913,
"UnlockDesc": {
"hash": 1325281512
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9914": {
"ID": 9914,
"FuncName": {
"hash": 1230531244
},
"FuncIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"FuncHudIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"GotoID": 9914,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9914,
"UnlockDesc": {
"hash": 1325281509
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9915": {
"ID": 9915,
"FuncName": {
"hash": -1024586405
},
"FuncIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"FuncHudIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"GotoID": 9915,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9915,
"UnlockDesc": {
"hash": 1325281510
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9916": {
"ID": 9916,
"FuncName": {
"hash": -1387144342
},
"FuncIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"FuncHudIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"GotoID": 9916,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9916,
"UnlockDesc": {
"hash": 1325281507
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9917": {
"ID": 9917,
"FuncName": {
"hash": -1498352111
},
"FuncIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"FuncHudIconPath": "SpriteOutput/TabIcon/DailyQuest/DailyQuestExploreIcon.png",
"GotoID": 9917,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9917,
"UnlockDesc": {
"hash": 1325281508
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": false
},
"30": {
"ID": 30,
"FuncName": {
"hash": -507333037
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/AssignmentIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/AssignmentIcon.png",
"GotoID": 3100,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 3100,
"UnlockDesc": {
"hash": -1825328181
},
"RedDot": "ExpeditionGroup_All",
"RedDotHud": "",
"UnlockPrompt": true
},
"9918": {
"ID": 9918,
"FuncName": {
"hash": -964140281
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/Novice/NoviceRogueIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/Novice/NoviceRogueIcon.png",
"GotoID": 9918,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9918,
"UnlockDesc": {
"hash": 1325281521
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
},
"9919": {
"ID": 9919,
"FuncName": {
"hash": -654035323
},
"FuncIconPath": "SpriteOutput/PhoneAPPIcon/Novice/NoviceCapsuleShopIcon.png",
"FuncHudIconPath": "SpriteOutput/PhoneAPPIcon/Novice/NoviceCapsuleShopIcon.png",
"GotoID": 9919,
"ChannelRegion": [],
"UnlockMainMission": 0,
"UnlockID": 9919,
"UnlockDesc": {
"hash": 1325281522
},
"RedDot": "",
"RedDotHud": "",
"UnlockPrompt": true
}
}

View file

@ -0,0 +1,423 @@
{
"1": {
"GameModeType": 1,
"FuncEntranceIDList": [
29,
24,
2,
7,
3,
4,
5,
25,
23,
28,
6,
14,
15,
8,
12,
26,
30
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
8,
23,
15,
6,
5,
3,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
3,
2,
7,
4,
5,
6,
8,
11,
14,
15,
12,
20,
18,
23,
22,
19,
9,
10,
11,
24,
25,
17,
27,
28,
29,
30
]
},
"2": {
"GameModeType": 2,
"FuncEntranceIDList": [
29,
24,
2,
7,
3,
4,
5,
25,
23,
28,
6,
14,
15,
8,
12,
26,
30
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
8,
23,
15,
6,
5,
3,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
3,
2,
7,
4,
5,
6,
8,
11,
14,
15,
12,
20,
18,
23,
22,
19,
9,
10,
11,
24,
25,
17,
27,
28,
29,
30
]
},
"3": {
"GameModeType": 3,
"FuncEntranceIDList": [
29,
24,
2,
7,
3,
4,
5,
25,
23,
28,
6,
14,
15,
8,
12,
26,
30
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
8,
23,
15,
6,
5,
3,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
3,
2,
7,
4,
5,
6,
8,
11,
14,
15,
12,
20,
18,
23,
22,
19,
9,
10,
11,
24,
25,
17,
27,
28,
29,
30
]
},
"4": {
"GameModeType": 4,
"FuncEntranceIDList": [],
"BottomFuncEntranceIDList": [],
"HudFuncEntranceIDList": [],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
25
]
},
"5": {
"GameModeType": 5,
"FuncEntranceIDList": [],
"BottomFuncEntranceIDList": [],
"HudFuncEntranceIDList": [
301,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
4,
3,
25,
26,
27
]
},
"6": {
"GameModeType": 6,
"FuncEntranceIDList": [],
"BottomFuncEntranceIDList": [],
"HudFuncEntranceIDList": [
302,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
4,
3,
25,
27
]
},
"7": {
"GameModeType": 7,
"FuncEntranceIDList": [
29,
24,
2,
7,
3,
4,
5,
25,
23,
28,
6,
14,
15,
8,
12,
26,
30
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
8,
23,
15,
6,
5,
3,
4
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
3,
2,
7,
4,
5,
6,
8,
11,
14,
15,
12,
20,
18,
23,
22,
9,
10,
11,
19,
24,
25,
17,
27,
28,
29,
30
]
},
"8": {
"GameModeType": 8,
"FuncEntranceIDList": [
7,
4,
5,
23,
6,
28,
12
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
4,
5,
6,
23
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
4,
5,
6,
7,
12,
23,
25,
9,
10,
11,
17,
28,
29,
30
]
},
"9": {
"GameModeType": 9,
"FuncEntranceIDList": [
7,
4,
5,
23,
6,
28,
12
],
"BottomFuncEntranceIDList": [
9,
10,
11
],
"HudFuncEntranceIDList": [
4,
5,
6,
23
],
"LeftHudFuncEntranceIDList": [
25
],
"UnlockGotoTypeList": [
4,
5,
6,
7,
12,
23,
9,
25,
10,
11,
17,
28,
29,
30
]
},
"10": {
"GameModeType": 10,
"FuncEntranceIDList": [],
"BottomFuncEntranceIDList": [],
"HudFuncEntranceIDList": [],
"LeftHudFuncEntranceIDList": [],
"UnlockGotoTypeList": []
},
"11": {
"GameModeType": 11,
"FuncEntranceIDList": [],
"BottomFuncEntranceIDList": [],
"HudFuncEntranceIDList": [
4
],
"LeftHudFuncEntranceIDList": [],
"UnlockGotoTypeList": [
4
]
}
}

View file

@ -0,0 +1,384 @@
{
"1001": {
"ID": 1001,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_03.png",
"TabIconPath": "SpriteOutput/TabIcon/Shop/ShopMaterialsIcon.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2010101,
"UnlockMission": [
1010202
],
"TabID": 1001,
"FarmType": "FarmCocoon",
"FarmID": 1001
},
"1002": {
"ID": 1002,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_03.png",
"TabIconPath": "SpriteOutput/TabIcon/Shop/ShopMaterialsIcon.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2011101,
"UnlockMission": [
1010302
],
"TabID": 1001,
"FarmType": "FarmCocoon",
"FarmID": 1002
},
"1003": {
"ID": 1003,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_03.png",
"TabIconPath": "SpriteOutput/TabIcon/Shop/ShopMaterialsIcon.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012101,
"UnlockMission": [
1010501
],
"TabID": 1001,
"FarmType": "FarmCocoon",
"FarmID": 1003
},
"1004": {
"ID": 1004,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionWarriorSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000101,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1004
},
"1005": {
"ID": 1005,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionKnightSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000301,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1005
},
"1006": {
"ID": 1006,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionRogueSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2010101,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1006
},
"1007": {
"ID": 1007,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionPirestSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2011101,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1007
},
"1008": {
"ID": 1008,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionMageSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012201,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1008
},
"1009": {
"ID": 1009,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionShamanSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012301,
"UnlockMission": [
1010902
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1009
},
"1010": {
"ID": 1010,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_04.png",
"TabIconPath": "SpriteOutput/ProfessionIconSmall/IconProfessionWarlockSmall.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013101,
"UnlockMission": [
1011102
],
"TabID": 1002,
"FarmType": "FarmCocoon",
"FarmID": 1010
},
"1101": {
"ID": 1101,
"IconPath": "SpriteOutput/MosterIcon/Monster_8013010.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorQuantum.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000201,
"UnlockMission": [
4010101,
1000201
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1101
},
"1102": {
"ID": 1102,
"IconPath": "SpriteOutput/MosterIcon/Monster_8003050.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorWind.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000301,
"UnlockMission": [
4010101,
1000401
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1102
},
"1103": {
"ID": 1103,
"IconPath": "SpriteOutput/MosterIcon/Monster_8003030.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorThunder.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2011101,
"UnlockMission": [
4010101,
1010302
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1103
},
"1104": {
"ID": 1104,
"IconPath": "SpriteOutput/MosterIcon/Monster_8003020.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorFire.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000101,
"UnlockMission": [
4010101,
1000101
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1104
},
"1105": {
"ID": 1105,
"IconPath": "SpriteOutput/MosterIcon/Monster_1013020.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNaturePhysical.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012101,
"UnlockMission": [
4010101,
1010501
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1105
},
"1106": {
"ID": 1106,
"IconPath": "SpriteOutput/MosterIcon/Monster_1023020.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorIce.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012301,
"UnlockMission": [
4010101,
1010902
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1106
},
"1107": {
"ID": 1107,
"IconPath": "SpriteOutput/MosterIcon/Monster_8003010.png",
"TabIconPath": "SpriteOutput/UI/Nature/IconNatureColorImaginary.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013201,
"UnlockMission": [
1011301,
4010101
],
"TabID": 1003,
"FarmType": "FarmElement",
"FarmID": 1107
},
"1201": {
"ID": 1201,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000201,
"UnlockMission": [
1011102
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1201
},
"1202": {
"ID": 1202,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012101,
"UnlockMission": [
1011102
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1202
},
"1203": {
"ID": 1203,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2012201,
"UnlockMission": [
1011102
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1203
},
"1204": {
"ID": 1204,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013101,
"UnlockMission": [
1011102
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1204
},
"1205": {
"ID": 1205,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013201,
"UnlockMission": [
1011301
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1205
},
"1206": {
"ID": 1206,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_01.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarRelic.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013401,
"UnlockMission": [
1011403
],
"TabID": 1004,
"FarmType": "FarmRelic",
"FarmID": 1206
},
"1301": {
"ID": 1301,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_02.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarPaths.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2000301,
"UnlockMission": [
1011403
],
"TabID": 1005,
"FarmType": "FarmCocoon",
"FarmID": 1301
},
"1302": {
"ID": 1302,
"IconPath": "SpriteOutput/AdventureEnterIcon/Adventure_02.png",
"TabIconPath": "SpriteOutput/UI/Avatar/IconAvatarPaths.png",
"Desc": {
"hash": 371857150
},
"MapEntranceID": 2013401,
"UnlockMission": [
1011403
],
"TabID": 1005,
"FarmType": "FarmCocoon",
"FarmID": 1302
}
}

View file

@ -0,0 +1,37 @@
{
"1001": {
"ID": 1001,
"Name": {
"hash": -1126160188
},
"IconPath": "SpriteOutput/ItemIcon/2.png"
},
"1002": {
"ID": 1002,
"Name": {
"hash": -1126160189
},
"IconPath": "SpriteOutput/ItemIcon/110111.png"
},
"1003": {
"ID": 1003,
"Name": {
"hash": -1126160190
},
"IconPath": "SpriteOutput/ItemIcon/110002.png"
},
"1004": {
"ID": 1004,
"Name": {
"hash": -1126160183
},
"IconPath": "SpriteOutput/ItemIcon/RelicIcons/IconRelic_110_1.png"
},
"1005": {
"ID": 1005,
"Name": {
"hash": -1126160184
},
"IconPath": "SpriteOutput/ItemIcon/110501.png"
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,22 @@
{
"1": {
"ID": 1,
"PrefabPath": "UI/Guide/GuideArrow.prefab"
},
"2": {
"ID": 2,
"PrefabPath": "UI/Guide/GuideMessage.prefab"
},
"3": {
"ID": 3,
"PrefabPath": "UI/Guide/GuideTips.prefab"
},
"4": {
"ID": 4,
"PrefabPath": "UI/Guide/GuideArrowTips.prefab"
},
"5": {
"ID": 5,
"PrefabPath": "UI/Guide/GuideMessageNoIcon.prefab"
}
}

View file

@ -0,0 +1,20 @@
{
"1": {
"ID": 1,
"Max": 0.3,
"Color": "#e23977ff",
"IsDanger": true
},
"2": {
"ID": 2,
"Max": 0.7,
"Color": "#d6e5fcff",
"IsDanger": false
},
"3": {
"ID": 3,
"Max": 1.0,
"Color": "#d6e5fcff",
"IsDanger": false
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,22 @@
{
"8001": {
"HeroAvatarID": 8001,
"Gender": "GENDER_MAN",
"UnlockMissionID": 0
},
"8002": {
"HeroAvatarID": 8002,
"Gender": "GENDER_WOMAN",
"UnlockMissionID": 0
},
"8003": {
"HeroAvatarID": 8003,
"Gender": "GENDER_MAN",
"UnlockMissionID": 1011403
},
"8004": {
"HeroAvatarID": 8004,
"Gender": "GENDER_WOMAN",
"UnlockMissionID": 1011403
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,688 @@
{
"A": {
"key": "A",
"isSettingKey": true,
"keyString": {
"hash": -216179283
}
},
"B": {
"key": "B",
"isSettingKey": true,
"keyString": {
"hash": 1349904658
}
},
"C": {
"key": "C",
"isSettingKey": true,
"keyString": {
"hash": -1378978697
}
},
"D": {
"key": "D",
"isSettingKey": true,
"keyString": {
"hash": 187105244
}
},
"E": {
"key": "E",
"isSettingKey": true,
"keyString": {
"hash": 1753189185
}
},
"F": {
"key": "F",
"isSettingKey": true,
"keyString": {
"hash": -975694170
}
},
"G": {
"key": "G",
"isSettingKey": true,
"keyString": {
"hash": 590389771
}
},
"H": {
"key": "H",
"isSettingKey": true,
"keyString": {
"hash": -1426032864
}
},
"I": {
"key": "I",
"isSettingKey": true,
"keyString": {
"hash": 140051077
}
},
"J": {
"key": "J",
"isSettingKey": true,
"keyString": {
"hash": 1706135018
}
},
"K": {
"key": "K",
"isSettingKey": true,
"keyString": {
"hash": -1022748337
}
},
"L": {
"key": "L",
"isSettingKey": true,
"keyString": {
"hash": 543335604
}
},
"M": {
"key": "M",
"isSettingKey": true,
"keyString": {
"hash": 2109419545
}
},
"N": {
"key": "N",
"isSettingKey": true,
"keyString": {
"hash": -619463810
}
},
"O": {
"key": "O",
"isSettingKey": true,
"keyString": {
"hash": 946620131
}
},
"P": {
"key": "P",
"isSettingKey": true,
"keyString": {
"hash": -1069802504
}
},
"Q": {
"key": "Q",
"isSettingKey": true,
"keyString": {
"hash": 496281437
}
},
"R": {
"key": "R",
"isSettingKey": true,
"keyString": {
"hash": 2062365378
}
},
"S": {
"key": "S",
"isSettingKey": true,
"keyString": {
"hash": -666517977
}
},
"T": {
"key": "T",
"isSettingKey": true,
"keyString": {
"hash": 899565964
}
},
"U": {
"key": "U",
"isSettingKey": true,
"keyString": {
"hash": -1829317391
}
},
"V": {
"key": "V",
"isSettingKey": true,
"keyString": {
"hash": -263233450
}
},
"W": {
"key": "W",
"isSettingKey": true,
"keyString": {
"hash": 1302850491
}
},
"X": {
"key": "X",
"isSettingKey": true,
"keyString": {
"hash": -713572144
}
},
"Y": {
"key": "Y",
"isSettingKey": true,
"keyString": {
"hash": 852511797
}
},
"Z": {
"key": "Z",
"isSettingKey": true,
"keyString": {
"hash": -1876371558
}
},
"F1": {
"key": "F1",
"isSettingKey": true,
"keyString": {
"hash": -128097161
}
},
"F2": {
"key": "F2",
"isSettingKey": true,
"keyString": {
"hash": -128097160
}
},
"F3": {
"key": "F3",
"isSettingKey": true,
"keyString": {
"hash": -128097159
}
},
"F4": {
"key": "F4",
"isSettingKey": true,
"keyString": {
"hash": -128097158
}
},
"F5": {
"key": "F5",
"isSettingKey": true,
"keyString": {
"hash": -128097157
}
},
"F6": {
"key": "F6",
"isSettingKey": true,
"keyString": {
"hash": -128097156
}
},
"F7": {
"key": "F7",
"isSettingKey": true,
"keyString": {
"hash": -128097155
}
},
"F8": {
"key": "F8",
"isSettingKey": true,
"keyString": {
"hash": -128097154
}
},
"F9": {
"key": "F9",
"isSettingKey": true,
"keyString": {
"hash": -128097153
}
},
"F10": {
"key": "F10",
"isSettingKey": true,
"keyString": {
"hash": 4245575
}
},
"F11": {
"key": "F11",
"isSettingKey": true,
"keyString": {
"hash": 1570329516
}
},
"F12": {
"key": "F12",
"isSettingKey": true,
"keyString": {
"hash": 1167044989
}
},
"Key0": {
"key": "Key0",
"isSettingKey": true,
"keyString": {
"hash": -1269960169
}
},
"Key1": {
"key": "Key1",
"isSettingKey": true,
"keyString": {
"hash": -1269960170
}
},
"Key2": {
"key": "Key2",
"isSettingKey": true,
"keyString": {
"hash": -1269960167
}
},
"Key3": {
"key": "Key3",
"isSettingKey": true,
"keyString": {
"hash": -1269960168
}
},
"Key4": {
"key": "Key4",
"isSettingKey": true,
"keyString": {
"hash": -1269960173
}
},
"Key5": {
"key": "Key5",
"isSettingKey": true,
"keyString": {
"hash": -1269960174
}
},
"Key6": {
"key": "Key6",
"isSettingKey": true,
"keyString": {
"hash": -1269960171
}
},
"Key7": {
"key": "Key7",
"isSettingKey": true,
"keyString": {
"hash": -1269960172
}
},
"Key8": {
"key": "Key8",
"isSettingKey": true,
"keyString": {
"hash": -1269960161
}
},
"Key9": {
"key": "Key9",
"isSettingKey": true,
"keyString": {
"hash": -1269960162
}
},
"Space": {
"key": "Space",
"isSettingKey": true,
"keyString": {
"hash": -1131720626
}
},
"Minus": {
"key": "Minus",
"isSettingKey": true,
"keyString": {
"hash": -1696818156
}
},
"Equals": {
"key": "Equals",
"isSettingKey": true,
"keyString": {
"hash": 1880330055
}
},
"Backspace": {
"key": "Backspace",
"isSettingKey": true,
"keyString": {
"hash": 984837679
}
},
"LeftBracket": {
"key": "LeftBracket",
"isSettingKey": true,
"keyString": {
"hash": -776142149
}
},
"RightBracket": {
"key": "RightBracket",
"isSettingKey": true,
"keyString": {
"hash": 1890043086
}
},
"Semicolon": {
"key": "Semicolon",
"isSettingKey": true,
"keyString": {
"hash": -761882945
}
},
"Quote": {
"key": "Quote",
"isSettingKey": true,
"keyString": {
"hash": 1994574144
}
},
"Backslash": {
"key": "Backslash",
"isSettingKey": true,
"keyString": {
"hash": 937783892
}
},
"Comma": {
"key": "Comma",
"isSettingKey": true,
"keyString": {
"hash": -2146381787
}
},
"Period": {
"key": "Period",
"isSettingKey": true,
"keyString": {
"hash": -1699966303
}
},
"Slash": {
"key": "Slash",
"isSettingKey": true,
"keyString": {
"hash": -15974471
}
},
"LeftArrow": {
"key": "LeftArrow",
"isSettingKey": true,
"keyString": {
"hash": -996784758
}
},
"RightArrow": {
"key": "RightArrow",
"isSettingKey": true,
"keyString": {
"hash": 2102402249
}
},
"UpArrow": {
"key": "UpArrow",
"isSettingKey": true,
"keyString": {
"hash": -515204886
}
},
"DownArrow": {
"key": "DownArrow",
"isSettingKey": true,
"keyString": {
"hash": 1222525463
}
},
"Backquote": {
"key": "Backquote",
"isSettingKey": true,
"keyString": {
"hash": -1669365211
}
},
"Return": {
"key": "Return",
"isSettingKey": true,
"keyString": {
"hash": -90894006
}
},
"Shift": {
"key": "Shift",
"isSettingKey": false,
"keyString": {
"hash": -244597204
}
},
"Alt": {
"key": "Alt",
"isSettingKey": false,
"keyString": {
"hash": -136916963
}
},
"Control": {
"key": "Control",
"isSettingKey": false,
"keyString": {
"hash": 2137048891
}
},
"Escape": {
"key": "Escape",
"isSettingKey": false,
"keyString": {
"hash": 1968046445
}
},
"None": {
"key": "None",
"isSettingKey": false,
"keyString": {
"hash": 645706194
}
},
"Home": {
"key": "Home",
"isSettingKey": false,
"keyString": {
"hash": 1250503819
}
},
"Pad0": {
"key": "Pad0",
"isSettingKey": true,
"keyString": {
"hash": -1088650179
}
},
"Pad1": {
"key": "Pad1",
"isSettingKey": true,
"keyString": {
"hash": -1088650180
}
},
"Pad2": {
"key": "Pad2",
"isSettingKey": true,
"keyString": {
"hash": -1088650177
}
},
"Pad3": {
"key": "Pad3",
"isSettingKey": true,
"keyString": {
"hash": -1088650178
}
},
"Pad4": {
"key": "Pad4",
"isSettingKey": true,
"keyString": {
"hash": -1088650175
}
},
"Pad5": {
"key": "Pad5",
"isSettingKey": true,
"keyString": {
"hash": -1088650176
}
},
"Pad6": {
"key": "Pad6",
"isSettingKey": true,
"keyString": {
"hash": -1088650173
}
},
"Pad7": {
"key": "Pad7",
"isSettingKey": true,
"keyString": {
"hash": -1088650174
}
},
"Pad8": {
"key": "Pad8",
"isSettingKey": true,
"keyString": {
"hash": -1088650171
}
},
"Pad9": {
"key": "Pad9",
"isSettingKey": true,
"keyString": {
"hash": -1088650172
}
},
"PadDivide": {
"key": "PadDivide",
"isSettingKey": true,
"keyString": {
"hash": 1768225204
}
},
"PadMultiply": {
"key": "PadMultiply",
"isSettingKey": true,
"keyString": {
"hash": -1526617239
}
},
"PadMinus": {
"key": "PadMinus",
"isSettingKey": true,
"keyString": {
"hash": -383122991
}
},
"PadPlus": {
"key": "PadPlus",
"isSettingKey": true,
"keyString": {
"hash": -1669675917
}
},
"PadEnter": {
"key": "PadEnter",
"isSettingKey": true,
"keyString": {
"hash": 1236654453
}
},
"PadPeriod": {
"key": "PadPeriod",
"isSettingKey": true,
"keyString": {
"hash": -959128752
}
},
"CapsLock": {
"key": "CapsLock",
"isSettingKey": true,
"keyString": {
"hash": 1242648122
}
},
"LeftShift": {
"key": "LeftShift",
"isSettingKey": true,
"keyString": {
"hash": -1836146821
}
},
"LeftAlt": {
"key": "LeftAlt",
"isSettingKey": true,
"keyString": {
"hash": 2035502928
}
},
"LeftCommand": {
"key": "LeftCommand",
"isSettingKey": false,
"keyString": {
"hash": 657870442
}
},
"LeftControl": {
"key": "LeftControl",
"isSettingKey": true,
"keyString": {
"hash": -1578459398
}
},
"RightShift": {
"key": "RightShift",
"isSettingKey": true,
"keyString": {
"hash": -1056635726
}
},
"RightAlt": {
"key": "RightAlt",
"isSettingKey": true,
"keyString": {
"hash": -1079941555
}
},
"RightCommand": {
"key": "RightCommand",
"isSettingKey": false,
"keyString": {
"hash": -1176066781
}
},
"RightControl": {
"key": "RightControl",
"isSettingKey": true,
"keyString": {
"hash": 1888588323
}
},
"Tab": {
"key": "Tab",
"isSettingKey": false,
"keyString": {
"hash": -1562096745
}
}
}

View file

@ -0,0 +1,77 @@
{
"LeftButton": {
"controlType": "LeftButton",
"isSettingMouseType": false,
"iconForMouse": "SpriteOutput/KeyMapIcons/PC/IconMouseLeftKey.png"
},
"RightButton": {
"controlType": "RightButton",
"isSettingMouseType": false,
"iconForMouse": "SpriteOutput/KeyMapIcons/PC/IconMouseRightKey.png"
},
"MiddleButton": {
"controlType": "MiddleButton",
"isSettingMouseType": false,
"iconForMouse": ""
},
"NegativeX": {
"controlType": "NegativeX",
"isSettingMouseType": false,
"iconForMouse": ""
},
"PositiveX": {
"controlType": "PositiveX",
"isSettingMouseType": false,
"iconForMouse": ""
},
"NegativeY": {
"controlType": "NegativeY",
"isSettingMouseType": false,
"iconForMouse": ""
},
"PositiveY": {
"controlType": "PositiveY",
"isSettingMouseType": false,
"iconForMouse": ""
},
"PositiveScrollWheel": {
"controlType": "PositiveScrollWheel",
"isSettingMouseType": false,
"iconForMouse": "SpriteOutput/KeyMapIcons/PC/IconMouseCenterKeyScroll.png"
},
"NegativeScrollWheel": {
"controlType": "NegativeScrollWheel",
"isSettingMouseType": false,
"iconForMouse": "SpriteOutput/KeyMapIcons/PC/IconMouseCenterKeyScroll.png"
},
"Button4": {
"controlType": "Button4",
"isSettingMouseType": false,
"iconForMouse": ""
},
"Button5": {
"controlType": "Button5",
"isSettingMouseType": false,
"iconForMouse": ""
},
"Button6": {
"controlType": "Button6",
"isSettingMouseType": false,
"iconForMouse": ""
},
"Button7": {
"controlType": "Button7",
"isSettingMouseType": false,
"iconForMouse": ""
},
"Button8": {
"controlType": "Button8",
"isSettingMouseType": false,
"iconForMouse": ""
},
"Button9": {
"controlType": "Button9",
"isSettingMouseType": false,
"iconForMouse": ""
}
}

View file

@ -0,0 +1,678 @@
{
"1010": {
"InteractID": 1010,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1011": {
"InteractID": 1011,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": true,
"InteractDesc": {
"hash": 371857150
}
},
"1020": {
"InteractID": 1020,
"SrcState": "Closed",
"TargetState": "Locked",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1030": {
"InteractID": 1030,
"SrcState": "Closed",
"TargetState": "BridgeState1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1040": {
"InteractID": 1040,
"SrcState": "Closed",
"TargetState": "BridgeState2",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1050": {
"InteractID": 1050,
"SrcState": "Closed",
"TargetState": "BridgeState3",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1060": {
"InteractID": 1060,
"SrcState": "Closed",
"TargetState": "BridgeState4",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1090": {
"InteractID": 1090,
"SrcState": "Closed",
"TargetState": "TriggerDisable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1100": {
"InteractID": 1100,
"SrcState": "Open",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1120": {
"InteractID": 1120,
"SrcState": "Open",
"TargetState": "Locked",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1190": {
"InteractID": 1190,
"SrcState": "Open",
"TargetState": "TriggerDisable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1200": {
"InteractID": 1200,
"SrcState": "Locked",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1210": {
"InteractID": 1210,
"SrcState": "Locked",
"TargetState": "Open",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1230": {
"InteractID": 1230,
"SrcState": "Locked",
"TargetState": "BridgeState1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1300": {
"InteractID": 1300,
"SrcState": "BridgeState1",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1340": {
"InteractID": 1340,
"SrcState": "BridgeState1",
"TargetState": "BridgeState2",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1350": {
"InteractID": 1350,
"SrcState": "BridgeState1",
"TargetState": "BridgeState3",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1360": {
"InteractID": 1360,
"SrcState": "BridgeState1",
"TargetState": "BridgeState4",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1400": {
"InteractID": 1400,
"SrcState": "BridgeState2",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1430": {
"InteractID": 1430,
"SrcState": "BridgeState2",
"TargetState": "BridgeState1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1450": {
"InteractID": 1450,
"SrcState": "BridgeState2",
"TargetState": "BridgeState3",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1500": {
"InteractID": 1500,
"SrcState": "BridgeState3",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1530": {
"InteractID": 1530,
"SrcState": "BridgeState3",
"TargetState": "BridgeState1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1540": {
"InteractID": 1540,
"SrcState": "BridgeState3",
"TargetState": "BridgeState2",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1560": {
"InteractID": 1560,
"SrcState": "BridgeState3",
"TargetState": "BridgeState4",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1600": {
"InteractID": 1600,
"SrcState": "BridgeState4",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1610": {
"InteractID": 1610,
"SrcState": "BridgeState4",
"TargetState": "Open",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1630": {
"InteractID": 1630,
"SrcState": "BridgeState4",
"TargetState": "BridgeState1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"1650": {
"InteractID": 1650,
"SrcState": "BridgeState4",
"TargetState": "BridgeState3",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"3010": {
"InteractID": 3010,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CostItem",
"ItemCostList": [
{
"ItemID": 149992,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267716
}
},
"3011": {
"InteractID": 3011,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 140037,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267717
}
},
"3012": {
"InteractID": 3012,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 140037,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267714
}
},
"3013": {
"InteractID": 3013,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 140037,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267715
}
},
"3014": {
"InteractID": 3014,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CostItem",
"ItemCostList": [
{
"ItemID": 140026,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267712
}
},
"3015": {
"InteractID": 3015,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CostItem",
"ItemCostList": [
{
"ItemID": 140036,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267713
}
},
"3016": {
"InteractID": 3016,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 140037,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267710
}
},
"3017": {
"InteractID": 3017,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CostItem",
"ItemCostList": [
{
"ItemID": 140046,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": -1897267711
}
},
"3200": {
"InteractID": 3200,
"SrcState": "Locked",
"TargetState": "Closed",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 140037,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": 831615705
}
},
"3801": {
"InteractID": 3801,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CostItem",
"ItemCostList": [
{
"ItemID": 32,
"ItemNum": 2
}
],
"IsEvent": false,
"InteractDesc": {
"hash": 831615902
}
},
"10100": {
"InteractID": 10100,
"SrcState": "Closed",
"TargetState": "TriggerEnable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"11000": {
"InteractID": 11000,
"SrcState": "TriggerEnable",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"11010": {
"InteractID": 11010,
"SrcState": "TriggerEnable",
"TargetState": "Open",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"11090": {
"InteractID": 11090,
"SrcState": "TriggerEnable",
"TargetState": "TriggerDisable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"11100": {
"InteractID": 11100,
"SrcState": "Open",
"TargetState": "TriggerEnable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"11700": {
"InteractID": 11700,
"SrcState": "WaitActive",
"TargetState": "Closed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"12140": {
"InteractID": 12140,
"SrcState": "Locked",
"TargetState": "Elevator1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"19100": {
"InteractID": 19100,
"SrcState": "TriggerDisable",
"TargetState": "TriggerEnable",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"111120": {
"InteractID": 111120,
"SrcState": "ChestLocked",
"TargetState": "ChestClosed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"112110": {
"InteractID": 112110,
"SrcState": "ChestClosed",
"TargetState": "ChestLocked",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"112131": {
"InteractID": 112131,
"SrcState": "ChestClosed",
"TargetState": "ChestUsed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": true,
"InteractDesc": {
"hash": 371857150
}
},
"114150": {
"InteractID": 114150,
"SrcState": "Elevator1",
"TargetState": "Elevator2",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"115140": {
"InteractID": 115140,
"SrcState": "Elevator2",
"TargetState": "Elevator1",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"118191": {
"InteractID": 118191,
"SrcState": "EventClose",
"TargetState": "EventOpen",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": true,
"InteractDesc": {
"hash": 371857150
}
},
"120120": {
"InteractID": 120120,
"SrcState": "Hidden",
"TargetState": "ChestClosed",
"InteractCostType": "None",
"ItemCostList": [],
"IsEvent": false,
"InteractDesc": {
"hash": 371857150
}
},
"301180": {
"InteractID": 301180,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 180,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": 1458444403
}
},
"301181": {
"InteractID": 301181,
"SrcState": "Closed",
"TargetState": "Open",
"InteractCostType": "CheckItem",
"ItemCostList": [
{
"ItemID": 181,
"ItemNum": 1
}
],
"IsEvent": false,
"InteractDesc": {
"hash": 1458444404
}
}
}

View file

@ -0,0 +1,137 @@
{
"1": {
"ID": 1,
"Title": "InfoText_WorldLevel_Title",
"Desc": "InfoText_WorldLevel_Text"
},
"2": {
"ID": 2,
"Title": "InfoText_ChallengeMaze_Title",
"Desc": "InfoText_ChallengeMaze_Text"
},
"3": {
"ID": 3,
"Title": "InfoText_ItemCompose_Title",
"Desc": "InfoText_ItemCompose_Text"
},
"4": {
"ID": 4,
"Title": "InfoText_Character_Title",
"Desc": "InfoText_Character_Text"
},
"5": {
"ID": 5,
"Title": "InfoText_SkillTree_Title",
"Desc": "InfoText_SkillTree_Text"
},
"6": {
"ID": 6,
"Title": "InfoText_LightCone_Title",
"Desc": "InfoText_LightCone_Text"
},
"7": {
"ID": 7,
"Title": "InfoText_DailyRecord_Title",
"Desc": "InfoText_DailyRecord_Text"
},
"8": {
"ID": 8,
"Title": "InfoText_Mission_Title",
"Desc": "InfoText_Mission_Text"
},
"9": {
"ID": 9,
"Title": "InfoText_Map_Title",
"Desc": "InfoText_Map_Text"
},
"10": {
"ID": 10,
"Title": "InfoText_Cocoon_Title",
"Desc": "InfoText_Cocoon_Text"
},
"11": {
"ID": 11,
"Title": "InfoText_Mail_Title",
"Desc": "InfoText_Mail_Text"
},
"12": {
"ID": 12,
"Title": "InfoText_Rogue_Title",
"Desc": "InfoText_Rogue_Text1"
},
"13": {
"ID": 13,
"Title": "InfoText_HeroPaths_Title",
"Desc": "InfoText_HeroPaths_Text"
},
"14": {
"ID": 14,
"Title": "InfoText_Prestige_Title",
"Desc": "InfoText_Prestige_Text"
},
"15": {
"ID": 15,
"Title": "InfoText_Cocoon2_Title",
"Desc": "InfoText_Cocoon2_Text"
},
"16": {
"ID": 16,
"Title": "InfoText_FarmElement_Title",
"Desc": "InfoText_FarmElement_Text"
},
"17": {
"ID": 17,
"Title": "InfoText_FarmRelic_Title",
"Desc": "InfoText_FarmRelic_Text"
},
"18": {
"ID": 18,
"Title": "InfoText_HealPool_Title",
"Desc": "InfoText_HealPool_Text"
},
"19": {
"ID": 19,
"Title": "InfoText_RogueGacha_Title",
"Desc": "InfoText_RogueGacha_Text"
},
"20": {
"ID": 20,
"Title": "InfoText_ChallengeMaze_Theme1_Title",
"Desc": "InfoText_ChallengeMaze_Theme1_Text"
},
"21": {
"ID": 21,
"Title": "InfoText_Rogue_Title",
"Desc": "InfoText_Rogue_Text1"
},
"22": {
"ID": 22,
"Title": "InfoText_Rogue_Title",
"Desc": "InfoText_Rogue_Text1"
},
"23": {
"ID": 23,
"Title": "InfoText_RogueAppraisal_Title",
"Desc": "InfoText_RogueAppraisal_Text"
},
"24": {
"ID": 24,
"Title": "InfoText_Achievement_Title",
"Desc": "InfoText_Achievement_Text"
},
"25": {
"ID": 25,
"Title": "InfoText_Expedition_Title",
"Desc": "InfoText_Expedition_Text"
},
"26": {
"ID": 26,
"Title": "InfoText_PhoneMessage_Title",
"Desc": "InfoText_PhoneMessage_Text"
},
"27": {
"ID": 27,
"Title": "InfoText_PhoneNotifications_Title",
"Desc": "InfoText_PhoneNotifications_Text"
}
}

View file

@ -0,0 +1,116 @@
{
"Count": {
"SortType": "Count",
"SortTypeName": {
"hash": 842389391
}
},
"Rarity": {
"SortType": "Rarity",
"SortTypeName": {
"hash": 439104864
}
},
"Level": {
"SortType": "Level",
"SortTypeName": {
"hash": 2005188805
}
},
"AvatarBaseType": {
"SortType": "AvatarBaseType",
"SortTypeName": {
"hash": 1601904278
}
},
"Attack": {
"SortType": "Attack",
"SortTypeName": {
"hash": -1126979077
}
},
"Defence": {
"SortType": "Defence",
"SortTypeName": {
"hash": -1530263604
}
},
"HP": {
"SortType": "HP",
"SortTypeName": {
"hash": 35820337
}
},
"ObtainTime": {
"SortType": "ObtainTime",
"SortTypeName": {
"hash": -1079924910
}
},
"HPAddedRatio": {
"SortType": "HPAddedRatio",
"SortTypeName": {
"hash": 486159031
}
},
"HPDelta": {
"SortType": "HPDelta",
"SortTypeName": {
"hash": -1265111329
}
},
"AttackAddedRatio": {
"SortType": "AttackAddedRatio",
"SortTypeName": {
"hash": -1265111328
}
},
"AttackDelta": {
"SortType": "AttackDelta",
"SortTypeName": {
"hash": -1265111327
}
},
"DefenceAddedRatio": {
"SortType": "DefenceAddedRatio",
"SortTypeName": {
"hash": -1265111326
}
},
"DefenceDelta": {
"SortType": "DefenceDelta",
"SortTypeName": {
"hash": -1265111333
}
},
"SpeedBase": {
"SortType": "SpeedBase",
"SortTypeName": {
"hash": -1265111332
}
},
"CriticalChance": {
"SortType": "CriticalChance",
"SortTypeName": {
"hash": -1265111331
}
},
"CriticalDamage": {
"SortType": "CriticalDamage",
"SortTypeName": {
"hash": -1265111330
}
},
"StatusProbability": {
"SortType": "StatusProbability",
"SortTypeName": {
"hash": -1265111337
}
},
"StatusResistance": {
"SortType": "StatusResistance",
"SortTypeName": {
"hash": -1265111336
}
}
}

View file

@ -0,0 +1,168 @@
{
"101": {
"ID": 101,
"TabName": {
"hash": -136005327
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryMaterialsIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Virtual",
"Placeholder",
"Material"
],
"TabSortWeight": 10,
"ItemSortTypeList": [
"Count",
"Rarity"
],
"DisplayCapacityLimit": 0
},
"102": {
"ID": 102,
"TabName": {
"hash": -1702089268
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryLightConeIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Equipment"
],
"TabSortWeight": 9,
"ItemSortTypeList": [
"Rarity",
"Level",
"AvatarBaseType",
"Attack",
"Defence",
"HP",
"ObtainTime"
],
"DisplayCapacityLimit": 2000
},
"103": {
"ID": 103,
"TabName": {
"hash": 1026794087
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryQuestIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Mission"
],
"TabSortWeight": 6,
"ItemSortTypeList": [
"Rarity"
],
"DisplayCapacityLimit": 0
},
"104": {
"ID": 104,
"TabName": {
"hash": -895520214
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryConsumablesIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Food"
],
"TabSortWeight": 7,
"ItemSortTypeList": [
"Rarity"
],
"DisplayCapacityLimit": 0
},
"105": {
"ID": 105,
"TabName": {
"hash": 1833363141
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryOtherIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Gift"
],
"TabSortWeight": 5,
"ItemSortTypeList": [
"Rarity"
],
"DisplayCapacityLimit": 0
},
"106": {
"ID": 106,
"TabName": {
"hash": 267279200
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryIcon.png",
"DisplayInventoryType": "Normal",
"DisplayItemType": [
"Relic"
],
"TabSortWeight": 8,
"ItemSortTypeList": [
"Rarity",
"Level",
"ObtainTime",
"HPAddedRatio",
"HPDelta",
"AttackAddedRatio",
"AttackDelta",
"DefenceAddedRatio",
"DefenceDelta",
"SpeedBase",
"CriticalChance",
"CriticalDamage",
"StatusProbability"
],
"DisplayCapacityLimit": 2000
},
"107": {
"ID": 107,
"TabName": {
"hash": -1298804741
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryConsumablesIcon.png",
"DisplayInventoryType": "Rogue",
"DisplayItemType": [
"RogueFood"
],
"TabSortWeight": 1,
"ItemSortTypeList": [
"Rarity"
],
"DisplayCapacityLimit": 0
},
"108": {
"ID": 108,
"TabName": {
"hash": 1786308974
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryLightConeIcon.png",
"DisplayInventoryType": "Rogue",
"DisplayItemType": [
"RogueMiracle"
],
"TabSortWeight": 2,
"ItemSortTypeList": [
"Rarity"
],
"DisplayCapacityLimit": 0
},
"109": {
"ID": 109,
"TabName": {
"hash": 220225033
},
"IconImagePath": "SpriteOutput/TabIcon/Inventory/InventoryMaterialsIcon.png",
"DisplayInventoryType": "Rogue",
"DisplayItemType": [
"RogueStone"
],
"TabSortWeight": 3,
"ItemSortTypeList": [
"Count",
"Rarity"
],
"DisplayCapacityLimit": 0
}
}

Some files were not shown because too many files have changed in this diff Show more